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
SELECT column_nameIn case you don't have an old 3.2 instance on your database the new columns are:
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