1. EXPDP/IMPDP方式
SQL> create user zlm identified by zlm;
User created.
SQL> grant connect,resource to zlm;
Grant succeeded.
SQL> create tablespace ts_zlm datafile '/u01/app/or...
分类:
其他好文 时间:
2014-08-31 17:18:01
阅读次数:
248
题意 给你一个环形串 输出它以某一位为起点顺时针得到串的最小字典序
直接模拟 每次后移一位比较字典序即可 注意不能用strcpy(s+1,s)这样后移 strcpy复制地址不能有重叠部分
#include
#include
using namespace std;
const int N = 150;
char s[N], ans[N], ...
分类:
其他好文 时间:
2014-08-31 10:33:51
阅读次数:
508
Problem Description:
The set [1,2,3,…,n] contains a total
of n! unique permutations.
By listing and labeling all of the permutations in order,
We get the following sequence (ie, for n = 3):...
分类:
其他好文 时间:
2014-08-30 17:49:39
阅读次数:
171
import java.util.concurrent.locks.Lock;import java.util.concurrent.locks.ReentrantLock;public class sequence { private static final long ONE_STEP =...
分类:
数据库 时间:
2014-08-30 11:04:09
阅读次数:
359
Problem DescriptionUnlike single maze, double maze requires a common sequence of commands to solve both mazes. See the figure below for a quick unders...
分类:
其他好文 时间:
2014-08-30 01:14:48
阅读次数:
329
导师布置了一作业:主要目的是学习数据库最基本的操作:创建用户、创建库表,和用程序访问数据库的相关技能(编码、编译等)1,交易流水表(包含但不限于以下字段):交易日期、交易流水(用sequence实现)、交易机构、交易柜员、交易时间、交易渠道、交易金额、用户账号、用户号、交易状态(0-成功1-失败)、...
分类:
数据库 时间:
2014-08-29 17:40:08
阅读次数:
300
前段时间在做一个SSH的项目,使用Oracle中的sequence作为对象表的主键生成策略,在数据库中已经配置好了sequence的步长为1,可是在运行测试时,发现主键ID每次增加的步长是50。 奇怪之余Google一下,找到如下的解决方案,在对实体类的ID进行注解时,加上一句"allocat...
分类:
数据库 时间:
2014-08-29 15:53:28
阅读次数:
198
Oracle数据泵expdp,impdp导出远程数据库到本地数据库中...
分类:
数据库 时间:
2014-08-29 00:09:16
阅读次数:
366
The set [1,2,3,…,n] contains a total of n!
unique permutations.
By listing and labeling all of the permutations in order,
We get the following sequence (ie, for n = 3):
"123""132""213""231""3...
分类:
其他好文 时间:
2014-08-28 21:15:29
阅读次数:
232
从下面这一有规律的串中,查找第i(1 ≤ i ≤ 2147483647)个为的数是什么?
11212312341234512345612345671234567812345678912345678910123456789101112345678910......
二分
#include
#include
#include
#include
#include
using namespa...
分类:
其他好文 时间:
2014-08-28 11:30:49
阅读次数:
176