Note: This query assumes you still have an old instance of APEX 3.2 and a new instance of APEX 4.0 on your database
1 2 3 4 5 6 7 8 9 10 | SELECT column_name FROM all_tab_columns WHERE owner = 'APEX_040000' AND table_name = 'APEX_WORKSPACE_ACTIVITY_LOG' MINUS SELECT column_name FROM all_tab_columns WHERE owner = 'APEX_030200' AND table_name = 'APEX_WORKSPACE_ACTIVITY_LOG' ORDER BY column_name |
CONTENT_LENGTH
INTERACTIVE_REPORT_ID
IR_SAVED_REPORT_ID
IR_SEARCH
WS_APPLICATION_ID
WS_DATAGRID_ID
WS_PAGE_ID
If you permanently store the log information you may want to update your tables and scripts to store the new information.
This is a new line in the APEX log. This bodes well for the audit log routine.
ReplyDeleteThanks for these scripts regarding APEX. This will make a seamless transition from 3.2 to 4.0.
ReplyDelete