
oracle
lvzi98
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
oracle 中not in 效率不高的问题
oracle 中not in 效率不高的问题 在oracle 中如果数据量大了。。使用not in会很慢因为会全表扫描 如下所示 select a1.mobile from atest a1 where a1.mobile NOT in (select trim(a2.mobile2) from atest2 a2) ) 如果 atest 中的数据大的时候 会变原创 2012-11-30 10:25:39 · 4325 阅读 · 0 评论 -
oracle创建表空间,创建用户(转)
oracle创建表空间,创建用户(转) 关键字: oracle 表空间 用户 //创建临时表空间 create temporary tablespace test_temp tempfile 'E:/oracle/product/10.2.0/oradata/testserver/test_temp01.dbf' size 32m autoextend on next 3转载 2012-12-07 11:29:01 · 785 阅读 · 0 评论