一、问题原因: 11G中有个新特性,当表无数据时,不分配segment,以节省空间 1、insert一行,再rollback就产生segment了。 该方法是在在空表中插入数据,再删除,则产生segment。导出时则可导出空表。 2、设置deferred_segment_creation 参数 sh...
分类:
数据库 时间:
2014-07-09 21:04:40
阅读次数:
285
@Column(name = 可选,列名(默认值为属性名)。unique = 可选,是否在该列上设置唯一约束(默认false)。nullable = 可选,是否设置该列的值可以为空(默认true)。insertable = 可选,该列是否作为生成的insert语句中的一列(默认true)。updat...
分类:
其他好文 时间:
2014-07-06 22:52:07
阅读次数:
261
一:字符串函数: 1.concat(); concat(S1,S2,S3,......Sn); 把传入参数链接成一个字符串; 2.insert(); insert(str,x,y,insert); st r: 传入的字符串, x : 从第几个开始 y ...
分类:
数据库 时间:
2014-07-06 16:53:24
阅读次数:
299
/************事务处理*****************/public static void main(String[] args) {String sql1 = "insert into stuInfo values(123910,'小建',23,'男','普宁')";String ...
分类:
其他好文 时间:
2014-07-06 16:45:37
阅读次数:
168
Nubia Z5S在某种异常或者按组合按键的情况下会进入QHSUSB_BULK模式, 此种模式的现象是, 如果在windows(比如win7)下连上数据线, 则会在电脑出现n多分区挂载,甚至会提示要格式化某些分区(这里要强调的是千万不要格式化任何分区,否则可能会变成真砖只有返厂了)
关于这个模式可以参考我之前发的一篇文章: http://blog.csdn.net/syhost/arti...
Result学习笔记(二) - 动态结果集
动态结果 一定不要忘了为动态结果的保存值设置set get方法
第一部分:代码
//前端
Insert title here
返回success
返回error
//web.xml
${r}
/...
分类:
Web程序 时间:
2014-07-06 09:29:19
阅读次数:
243
insert Vodafone sim card,open the mms read report,when receive the read report,cann't download the message
Test steps:
1.insert Vodafone sim card
2.open the mms read report
3.send the mms successf...
分类:
其他好文 时间:
2014-07-06 08:36:10
阅读次数:
292
Result学习笔记(三)带参数的结果集
第一部分:代码
//前端
Insert title here
传参数
//web.xml
/user_success.jsp?t=${type}
//类包
package com.struts2.user.act...
分类:
Web程序 时间:
2014-07-06 08:26:27
阅读次数:
222
Given a set ofnon-overlappingintervals, insert a new interval into the intervals (merge if necessary).You may assume that the intervals were initially...
分类:
其他好文 时间:
2014-07-05 21:45:00
阅读次数:
202
思路一:1、准备表结构及对应的表数据a、表结构:create table TB_TREE(CID NUMBER not null,CNAME VARCHAR2(50),PID NUMBER //父节点)b、表数据:insert into tb_tree (CID, CNAME, PID) value...
分类:
编程语言 时间:
2014-07-05 20:54:07
阅读次数:
396