You can disable procedure profiling and clear existing data from Interactive SQL using the sa_server_option system procedure.
Prerequisites
DBA or PROFILE authority.
Context and remarks
Once you are finished with the profiling information, you can either disable profiling or you can clear profiling. If you disable profiling, the database stops collecting profiling information and the information that it has collected to that point remains on the Profile tab in Sybase Central. If you clear profiling, the database turns profiling off and clears all the profiling data from the Profile tab in Sybase Central.
Call the sa_server_option system procedure, setting the ProcedureProfiling option to OFF.
For example, enter:
CALL sa_server_option( 'ProcedureProfiling' , 'OFF' ); |
Call the sa_server_option system procedure, setting the ProcedureProfiling option to CLEAR.
For example, enter:
CALL sa_server_option( 'ProcedureProfiling' , 'CLEAR' ); |
Discuss this page in DocCommentXchange.
|
Copyright © 2012, iAnywhere Solutions, Inc. - SQL Anywhere 12.0.1 |