Sounds like you've got SQL_TRACE set to TRUE at the database level. Check by using SHOW PARAMETER SQL_TRACE in SQLPlus. If its TRUE set it to FALSE
Code:SQL> sho parameter sql_trace NAME TYPE VALUE ------------------------------------ ----------- ------------------------------ sql_trace boolean TRUE SQL> alter system set sql_trace = false; System altered.




Reply With Quote