sa_procedure_profile System Procedure

Reports information about the execution time for each line within procedures, functions, events, or triggers that have been executed in a database.

Syntax

sa_procedure_profile(
    [ filename   
    [, save_to_file ] ] )

Parameters

Result Set

Column Name Data Type Description
object_type CHAR(1) The type of object. See the Remarks section below for a list of possible object types.
object_name CHAR(128) The name of the stored procedure, function, event, or trigger. If the object_type is C or D, then this is the name of the foreign key for which the system trigger was defined.
owner_name CHAR(128) The object's owner.
table_name CHAR(128) The table associated with a trigger (the value is NULL for other object types).
line_num UNSIGNED INTEGER The line number within the procedure.
executions UNSIGNED INTEGER The number of times the line has been executed.
millisecs UNSIGNED INTEGER The time to execute the line, in milliseconds.
percentage DOUBLE The percentage of the total execution time required for the specific line.
foreign_owner CHAR(128) The database user who owns the foreign table for a system trigger.
foreign_table CHAR(128) The name of the foreign table for a system trigger.

Remarks

You can use this procedure to:
  • Return detailed procedure profiling information – To do this, you can simply call the procedure without specifying any arguments.
  • Save detailed procedure profiling information to file – To do this, you must include the filename argument and specify 1 for the save_to_file argument.
  • Load detailed procedure profiling information from a previously saved file – To do this, you must include the filename argument and specify 0 for the save_to_file argument. When using the procedure in this way, the loaded file must have been created by the same database as the one from which you are running the procedure; otherwise, the results may be unusable.

Since the result set includes information about the execution times for individual lines within procedures, triggers, functions, and events, and what percentage of the total procedure execution time those lines use, you can use this profiling information to fine-tune slower procedures that may decrease performance.

Before you can profile your database, you must enable profiling.

The object_type column of the result set can be:
  • P – stored procedure
  • F – function
  • E – event
  • T – trigger
  • C – ON UPDATE system trigger
  • D – ON DELETE system trigger

If you want summary information instead of line by line details for each execution, use the sa_procedure_profile_summary procedure instead.

Privileges

You must have EXECUTE privilege on the system procedure, as well as the the MONITOR or MANAGE PROFILING system privilege.

You must also have the following privileges:
  • SELECT ANY TABLE (when filename is not NULL and save_to_file is 1)
  • LOAD ANY TABLE (when filename is not NULL and save_to_file is 0)

Example

The following statement returns the execution time for each line of every procedure, function, event, or trigger that has been executed in the database:

CALL sa_procedure_profile( ); 

The following statement returns the same detailed procedure profiling information as the example above, and saves it to a file called detailedinfo.txt:

CALL sa_procedure_profile( 'detailedinfo.txt', 1 );

Either of the following statements can be used to load detailed procedure profiling information from a file called detailedinfo.txt:

CALL sa_procedure_profile( 'detailedinfo.txt', 0 );
CALL sa_procedure_profile( 'detailedinfo.txt' );