一、问题描述:
二、解决办法:
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:UsersAdministrator>sqlplus scott/tiger
SQL*Plus: Release 11.2.0.3.0 Production on 星期三 11月 20 11:16:52 2013
Copyright (c) 1982, 2011, Oracle.
连接到:
Personal Oracle Database 11g Release 11.2.0.3.0 - 64bit
Production
With the Partitioning, OLAP, Data Mining and Real Application
Testing options
SQL> set autotrace on;
SQL> select * from emp;
三、分析:
在网搜解决方法时,发现即使在sql*plus中也有可能出现这个问题,虽然没有遇到,但是将这种情况下的解决方法先记下来备用:
1.首先必须采用用Oracle的sqlplus登陆sys账号
sqlplus
2.然后执行如下脚本:
(1)plustrce.sql
-------------------
set echo on
drop role plustrace;
create role plustrace;
grant select on v_$sesstat to plustrace;
grant select on v_$statname to plustrace;
grant select on v_$mystat to plustrace;
grant plustrace to dba with admin option;
set echo off
-------------------
(2)utlxplan.sql
--------------------
create table PLAN_TABLE (