Oracle8i Supplied Packages Reference
Release 8.1.5

A68001-01

Library

Product

Contents

Index

Prev Next

24
DBMS_ORACLE_TRACE_AGENT

The DBMS_ORACLE_TRACE_AGENT package provides some system level utilities.

Security

This package is only accessible to user SYS by default. You can control access to these routines by only granting execute to privileged users.


Note:

This package should only be granted to DBA or the Oracle TRACE collection agent.  


Summary of Subprograms

This package contains only one subprogram: SET_ORACLE_TRACE_IN_SESSION.

SET_ORACLE_TRACE_IN_SESSION procedure

This procedure collects Oracle Trace data for a database session other than your own. It enables Oracle TRACE in the session identified by (sid, serial#). These value are taken from v$session.

Syntax

DBMS_ORACLE_TRACE_AGENT.SET_ORACLE_TRACE_IN_SESSION ( 
   sid                NUMBER   DEFAULT 0,
   serial#            NUMBER   DEFAULT 0,
   on_off IN          BOOLEAN  DEFAULT false,
   collection_name IN VARCHAR2 DEFAULT '',
   facility_name   IN VARCHAR2 DEFAULT '');

Parameters

Table 24-1 SET_ORACLE_TRACE_IN_SESSION Procedure Parameters
Parameter  Description 
sid
 

Session ID.  

serial#
 

Session serial number.  

on_off
 

TRUE or FALSE. Turns tracing on or off.  

collection_name
 

The Oracle TRACE collection name to be used.  

facility_name
 

The Oracle TRACE facility name to be used.  

Usage Notes

If the collection does not occur, then check the following:

Example

EXECUTE DBMS_ORACLE_TRACE_AGENT.SET_ORACLE_TRACE_IN_SESSION 
(8,12,TRUE,'NEWCOLL','oracled'); 



Prev

Next
Oracle
Copyright © 1999 Oracle Corporation.

All Rights Reserved.

Library

Product

Contents

Index