码迷,mamicode.com
首页 >  
搜索关键字:sequence impdp    ( 6610个结果
数据库停机迁移oracle10g 实例
3.1 按照版本导出 [oracle@host2 ~]$ expdp system/oracle tablespaces=u1 dumpfile='u1_version.dump' directory=dump_dir version=10.2.0.1.0 [oracle@host2 oracle]$ impdp system/oracle tablespaces=u1 directory=dump dumpfile='u1_version.dump' version=10.2.0.1.0 3.2 ...
分类:数据库   时间:2014-09-04 14:56:09    阅读次数:306
Oracle中创建自增字段(序列sequence)方法
oracle没有ORACLE自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。下面给大家讲个例子:1、在Oracle中创建一个表:1、创建一个表create table t_client (id number(4) primary key,pid number(...
分类:数据库   时间:2014-09-04 14:51:49    阅读次数:242
The count-and-say sequence 实现
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one 1"or11.11is read off as"tw...
分类:其他好文   时间:2014-09-04 14:46:49    阅读次数:174
Oracle中创建自增字段方法
oracle没有ORACLE自增字段这样的功能,但是通过触发器(trigger)和序列(sequence)可以实现。下面给大家讲个例子:1、在Oracle中创建一个表:1、创建一个表create table t_client (id number(4) primary key,pid number(...
分类:数据库   时间:2014-09-04 14:31:59    阅读次数:221
poj 2299 Ultra-QuickSort(树状数组)
DescriptionIn this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping ...
分类:其他好文   时间:2014-09-04 13:08:20    阅读次数:185
Oracle expdp/impdp 工具的使用
Oracle数据泵 注:高版本ORACLE向低版本的数据迁移还得加上VERSION 一、数据泵的作用: ??????? 1.实现逻辑备份和逻辑恢复 ??????? 2.在数据库用户之间移动对象 ??????? 3.在数据库之间移动...
分类:数据库   时间:2014-09-04 10:41:19    阅读次数:325
HDU4908BestCoder Sequence(组合数学)
题目:HDU4908BestCoder Sequence(组合数学) 题目大意:给出一串数字,要求找妻子...
分类:其他好文   时间:2014-09-03 14:58:46    阅读次数:223
POJ 2081 Recaman's Sequence(水题)
【题意简述】:这个题目描述很短,也很简单。不再赘述。 【分析】:只需再加一个判别这个数是否出现的数组即可,注意这个数组的范围! // 3388K 0Ms #include using namespace std; #define Max 500001 int a[Max]; bool b[10000000] = {false}; // b的数据范围是可以试出来的… void i...
分类:其他好文   时间:2014-09-03 13:06:06    阅读次数:132
PHP解码unicode编码中文字符代码
1 function replace_unicode_escape_sequence($match) { 2 return mb_convert_encoding(pack('H*', $match[1]), 'UTF-8', 'UCS-2BE'); 3 } 4 $name = '\u65b0\u....
分类:Web程序   时间:2014-09-03 11:03:36    阅读次数:230
Count and Say
The count-and-say sequence is the sequence of integers beginning as follows:1, 11, 21, 1211, 111221, ...1 is read off as "one 1" or 11.11 is read off ...
分类:其他好文   时间:2014-09-02 17:28:14    阅读次数:208
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!