2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

27
vdh/tracetrg.sql Normal file
View File

@@ -0,0 +1,27 @@
/**********************************************************************
* File: tracetrg.sql
* Type: SQL*Plus script
* Author: Tim Gorman (Evergreen Database Technologies, Inc.)
* Date: 01Dec01
*
* Description:
* SQL*Plus script containing the DDL to create a database-level
* AFTER LOGON event trigger to enable SQL Trace for a specific
* user account only. Very useful diagnostic tool...
*
* Modifications:
*********************************************************************/
set echo on feedback on timing on
spool tracetrg
create or replace trigger tracetrg
after logon
on database
begin
dbms_session.set_sql_trace(TRUE);
end;
/
show errors
spool off