发布时间:2013-08-01 10:04:45
原帖:http://dba.sky-mobi.com/?p=370 和 http://tomszrp.itpub.net/post/11835/264965当我们在建立一个大表,或往表里面插入大量数据时,如果中途因为表空间剩余空间不足并且没有开启自动扩展的话,会报 OUT-OF-SPACE错误,这是非常痛苦的事情,重头再来又耗时间又要挨骂。这种情况往往出现在我们还无法预估将要插入.........【阅读全文】
发布时间:2013-07-31 22:03:48
insert into table1(columns1,columns2) select columns1,columns2 from table2; 从table2中查询的结果插入到table1中,前提是table1和table2已经存在; oracle中不支持 select columns1 into table2 from table1; 其语法为 create. as..select,.........【阅读全文】