In case you are wondering what's new inside the apex 3.2 data dictionary, the following query run from SQL Workshop will quickly return the desired answer.
select table_name, column_name from all_tab_columns
where owner = 'APEX_030200'
and table_name like 'APEX%'
minus
select table_name, column_name from all_tab_columns
where owner = 'FLOWS_030100'
and table_name like 'APEX%';

select b.table_name, b.column_name, b.comments
from
(select table_name, column_name
from all_tab_columns
where owner = 'APEX_030200'
and table_name like 'APEX%'
minus
select table_name, column_name
from all_tab_columns
where owner = 'FLOWS_030100'
and table_name like 'APEX%') a, all_col_comments b
where b.owner = 'APEX_030200'
and b.table_name = a.table_name
and b.column_name = a.column_name;

Note also that as of Apex 3.2 the apex repository schema name prefix has changed from the "historic" FLOWS to APEX.
See more articles about Oracle Application Express or download tools and utilities.
No comments:
Post a Comment
I appreciate your comment however bear in mind that I might not have the time to reply soon.
Normally I do not reply to all comments but I am glad if you found something useful or if you learned something new, in that case I strongly encourage you to promote the article with the +1 google button.
Flavio