摘要:
处理oracle sql 语句in子句中(where id in (1, 2, ..., 1000, 1001)),如果子句中超过1000项就会报错。这主要是oracle考虑性能问题做的限制。如果要解决次问题,可以用 where id (1, 2, ..., 1000) or id (1001, ...) 阅读全文
摘要:
drop user xxx cascade;drop tablespace xxx including contents and datafiles;create tablespace xxx datafile 'E:\oracle\product\10.2.0\oradata\ts\xxx.dbf... 阅读全文