Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在下面的sql语句上执行非常慢,env:oracle 9。请告知原因或提示进行调试。非常感谢 。
INSERT INTO tmp_table (col1,col2,col3,col4,col5,col6,col7,col8,col9) select * from my_view where col1 = 1;
我测试了多远:执行 select 子语句需要 3 秒才能在无限执行时返回 1 条记录,但在执行整个语句时没有返回结果集,比如挂起。
当查询看起来执行得很快时,从某种意义上说最后一行被快速返回,而不仅仅是第一行,但在插入语句中使用时它运行缓慢,通常的怀疑是: