|
Sybernet / Supplied Procedures Reference
Release 3.00 Mar 03, 2005 |
|
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 varchar(92)
)
| Parameter | Description |
|---|---|
procname |
The fully qualified name of your procedure. |
The following example illustrates how to call sp_audit:
exec http.sp_audit 'HTTP.SP_HTML_ISQL'