DBA Data[Home] [Help]

APPS.ETRM_PNAV dependencies on DBA_TAB_COMMENTS

Line 790: from dba_tab_comments

786:
787: CURSOR cur_comment(c_name in dba_tables.table_name%type
788: , c_owner in dba_objects.owner%type)
789: is select comments
790: from dba_tab_comments
791: where owner = c_owner
792: and table_name = c_name
793: and (table_type = 'TABLE'
794: OR table_type = 'VIEW');

Line 1145: from dba_tab_comments

1141:
1142: CURSOR cur_comment(c_name in dba_tables.table_name%type
1143: , c_owner in dba_objects.owner%type)
1144: is select comments
1145: from dba_tab_comments
1146: where owner = c_owner
1147: and table_name = c_name;
1148:
1149: