Link to home
Start Free TrialLog in
Avatar of dbeachy1
dbeachy1

asked on

Disabling .trc files in Oracle

I have an Oracle 10g development instance running on my Linux box here and I just discovered 12 GB of .trc files in the $ORACLE_HOME/admin/MYINSTANCENAME directory.  I deleted the logs, but now I am trying to figure out how to *disable* trc logging altogether to improve performance and prevent the system from wasting disk space.  I was Googling around the net and I found this command:

    alter system set sql_trace=false;

However, after logging in as 'system' and running that command the trc files are still created!  How do I prevent Oracle trc files from being created?  I feel like I am missing something obvious here.  :)  
ASKER CERTIFIED SOLUTION
Avatar of Sujith
Sujith
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of dbeachy1
dbeachy1

ASKER

Worked like a charm!  Thanks.