2024年5月6日发(作者:充以欣)
用plsql安装oracleexplainplan(执行计划)-电脑资料
2、运行脚本文件utlxplan,路径为%oracle_home%/rdms/admin,例如
D:Oraclerdbmsadmin
注意下面要选择所有文件类型
然后运行,
运行代码:sql>createpublicsynonymplan_tableforplan_table;
sql>grantallonplan_tabletopublic;
接下来按照上面的方法运行第二个脚本
是%oracle_home%/sqlplus/admin
然后执行SQL>grantplustracetopublic;
即完成了安装过程
autotrace功能只能在SQL*PLUS里使用,因此需要打开sql*plus
sql>setautotraceon
例:
,路径,
sql>selectcount(*)fromtest;
count(*)
-------------
4
Executionplan
----------------------------
0selectstatementptimitzer=choose(cost=3card=1)
10sort(aggregate)
21partitionrange(all)
32tableaccess(full)of't_test'(cost=3card=900)
摘自wudiisss的专栏
2024年5月6日发(作者:充以欣)
用plsql安装oracleexplainplan(执行计划)-电脑资料
2、运行脚本文件utlxplan,路径为%oracle_home%/rdms/admin,例如
D:Oraclerdbmsadmin
注意下面要选择所有文件类型
然后运行,
运行代码:sql>createpublicsynonymplan_tableforplan_table;
sql>grantallonplan_tabletopublic;
接下来按照上面的方法运行第二个脚本
是%oracle_home%/sqlplus/admin
然后执行SQL>grantplustracetopublic;
即完成了安装过程
autotrace功能只能在SQL*PLUS里使用,因此需要打开sql*plus
sql>setautotraceon
例:
,路径,
sql>selectcount(*)fromtest;
count(*)
-------------
4
Executionplan
----------------------------
0selectstatementptimitzer=choose(cost=3card=1)
10sort(aggregate)
21partitionrange(all)
32tableaccess(full)of't_test'(cost=3card=900)
摘自wudiisss的专栏