ITPUB个人空间 »
liujinwei633的个人空间
欢迎访问 liujinwei633 的个人空间
我的论坛主题
-
2008-05-07 10:29:35 / 站务管理
为什么老收到重复的通知邮件
查看(89)
评论(0)
-
2008-04-25 11:28:33 / Oracle数据库管理
将dba_tables表中的数据多次插入到一张test表中,然后在test表的owner列table_name上分别建立indexselect count(owner) from test;select count(*) from test where owner='***';select count(table_name) from test;select count(table_name) from test where owner='***';等语句的执行计划都用到了上面建立的index。而select owner,table_name from test where owner='***'则是全表扫描》感觉有点奇怪,为什么不用index呢???然后又建立新的index:create index ind_test_two on test(owner,table_name);则刚才
查看(140)
评论(6)