logging in net_storage package hinzugefügt

This commit is contained in:
2026-04-09 11:36:47 +02:00
parent 70c3a26b39
commit 877ea380e4
3 changed files with 53 additions and 9 deletions

View File

@@ -2,9 +2,9 @@ create table lg_app_log (
log_id number generated by default as identity not null enable
,log_timestamp timestamp not null
,log_level varchar2(10 char) not null
,log_module varchar2(100 char) not null
,log_action varchar2(100 char)
,log_object_ref varchar2(512 char)
,log_module varchar2(256 char) not null
,log_action varchar2(256 char)
,log_object_ref varchar2(4000 char)
,log_message varchar2(4000 char)
,log_detail clob
,log_user varchar2(100 char)