|
Sybernet / Supplied Procedures Reference
Release 3.00 Oct 14, 2002 |
|
This procedure is used to audit the initial invocation of a stored procedure. It will create a row in the HTTP.HTTP_AUDITFILE containing the name of your procedure, the date and time the row was created, the user who invoked it, and their IP address.
Procedure SP_AUDIT
(
PROCNAME VARCHAR2
, UDEF1 VARCHAR2
, UDEF2 VARCHAR2
, UDEF3 VARCHAR2
, UDEF4 VARCHAR2
, UDEF5 VARCHAR2
) ;
| Parameter | Description |
|---|---|
procname |
The fully qualified name of your procedure. |
udef1 |
optional audit text. |
udef2 |
optional audit text. |
udef3 |
optional audit text. |
udef4 |
optional audit text. |
udef5 |
optional audit text. |
The following example illustrates how to call sp_audit:
http.sp_audit('HTTP.SP_HTML_ISQL');