DBA Data[Home] [Help]

APPS.DT_CHECKINT dependencies on ALL_TAB_COLUMNS

Line 189: from all_tab_columns col

185: -- Determines whether the given table has the standard who cols
186: function table_has_who_cols ( p_table_name in varchar2 , p_schema in varchar2 ) return boolean is
187: cursor get_creation_date_col is
188: select 1
189: from all_tab_columns col
190: where col.owner = p_schema
191: and col.table_name = p_table_name
192: and col.column_name = 'CREATION_DATE' ;
193: l_dummy number ;