Autotrace from SYS - Some things appear to work but don't really
We use autotrace to get the Execution Plan and Statistics. It appear to work but don't really from SYS user. We see that.SQL> create table t ( num number(2), name varchar2(10));Table created.SQL> insert into t values(1,'A');1 row created.SQL> insert into t values(2,'A');1 row created.SQL> select * from t;NUM NAME---------- ----------1 A2 ASQL> set autotrace on;SQL> select * from t;NUM NAME---------- ----------1 A2 AExecution Plan----------------------------------------------------------0...