Oracle 9i中查看plan_table:
|
sys@DG1> select * from v$version; BANNER sys@DG1> set autotrace on explain; no rows selected
|
Oracle 10g中查看plan_table:
|
SQL> select * from v$version; BANNER SQL> set autotrace on explain no rows selected
---------------------------------------------------------- | Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Time ---------------------------------------------------------- | 0 | SELECT STATEMENT | | 1 | 11081 | 2 (0)| 00:00:01 | 1 | TABLE ACCESS FULL| PLAN_TABLE$ | 1 | 11081 | 2 (0)| 00:00:01 -----------------------------------------------------------
|
结论:
Oracle 10g中不再需要创建plan_table表,因为它会自动创建一个数据字典表PLAN_TABLE$.查看 http://www.qqread.com/oracle/2008/02/b399276.html
相关专题
- Oracle 10g基础应用 (4470篇文章)
- 教你正确的理解什么是数据库恢复 (14次浏览)
- Oracle数据库系统使用的几条经验分享 (5次浏览)
- JDBC连接Oracle数据库的十个技巧 (4次浏览)
- Oracle数据库三种标准的备份方法 (4次浏览)
- Oracle数据库的四种启动方式 (3次浏览)
- 在TransactionScope中优先使用Oracle的.NET驱 (2次浏览)
- Eclipse连接Oracle数据库的具体步骤 (2次浏览)
- 如何手工创建Oracle数据库 (1次浏览)
- 提高Oracle数据库系统Import的性能 (0次浏览)
- Oracle 9i在AIX上的性能调整 (0次浏览)



