A script-enabled browser is required for this page to function properly.

ORA_PROF.DESTROY_TIMER built-in procedure

This procedure destroys the named timer. All memory associated with the timer is freed at that time. Any references to the named timer after this service is used will raise an error.

Syntax


PROCEDURE ORA_PROF.DESTROY_TIMER
(timer VARCHAR2);

Parameters

Parameter

Description

timer

The name of the timer.

Example


 /*
  **Destroy the timer ‘LOOPTIME’.
 */
   ORA_PROF.DESTROY_TIMER('LOOPTIME');

See also

About the ORA_PROF built-in package

ORA_PROF built-in package