最近使用oraclede impdp工具全库导入数据库时,在数据库里面使用出现如下情况。SQL
state [null]; error code [17081]; 批处理中出现错误: ORA-00001: 违反唯一约束条件
(GDXAORCL.SYS_C0055359); nested except...
分类:
数据库 时间:
2014-05-27 00:46:55
阅读次数:
715
InnoDBRecord, Gap, and Next-Key
Locks考虑到翻译准确性,对于某些特殊名称不做翻译,以免误导;InnoDBhas several types of record-level locks
including record locks, gap locks, and n...
分类:
数据库 时间:
2014-05-23 23:19:29
阅读次数:
683
问题:对文件夹下所有文件进行批量读取,跳过文件头部分,读取每个文件数据部分的7,8,9列,保存到变量并且输出到文件。数据:文件夹11m\单个文件格式:DAV1
MARKER NAME66010M001 MARKER NUMBER 7 PR TD HR WS WD RI HI # / TYPES OF...
分类:
其他好文 时间:
2014-05-23 11:57:28
阅读次数:
446
There are four types of interrupts on the CPU.
? Reset
? Maskable
? Nonmaskable
? Exception(异常也可视为中断)
These first three types are differentiated by their
priorities. The
reset interrupt has t...
分类:
其他好文 时间:
2014-05-22 13:14:59
阅读次数:
245
本文内容来自《pointers on C》栈的接口/* Interface for a stack
module */#define STACK_TYPE intvoid push(STACK_TYPE value);void
pop(void);STACK_TYPE top(void);in...
分类:
其他好文 时间:
2014-05-18 20:37:48
阅读次数:
509
org.apache.ibatis.exceptions.PersistenceException:
### Error querying database. Cause: org.springframework.jdbc.CannotGetJdbcConnectionException: Could not get JDBC Connection; nested exception is o...
分类:
数据库 时间:
2014-05-18 06:19:21
阅读次数:
547
oracle表连接之嵌套循环(Nested Loops Join)...
分类:
数据库 时间:
2014-05-15 18:38:23
阅读次数:
539
NESTED LOOPS(嵌套循环连接)
在嵌套循环连接中,oracle从第一个行源中读取第一行,然后和第二个行源中的数据进行对比。
所有匹配的记录放在结果集中,然后Oracle将读取第一个行源中的下一行。按这种方式直至第一个数据源中的所在行都经过处理。
第一个记录源通常称为外部表,或者驱动表,相应...
分类:
其他好文 时间:
2014-05-15 16:55:31
阅读次数:
381
5高阶基本技术(Tricky Basics)本章涵盖实际编程之中层次较高的一些
template基本知识,包括关键词 typename的另一种用途、将member functio(n 成员函数)和 nested clas(s
嵌套类别)定为templates、奇特的 template templat...
分类:
其他好文 时间:
2014-05-12 01:11:03
阅读次数:
589
如果在内部类里面用this就是指这个内部类的实例,而OuterClassName.this就是它外面的那个类的实例
ClassName.this这个用法多用于在nested class(内部类)中,当inner class(内部类)必顺使用到outer class(外部类)的this instance(实例)时,就用OuterClassName.this
android中常...
分类:
移动开发 时间:
2014-05-11 15:06:09
阅读次数:
333