DBA Data[Home] [Help]

APPS.FND_OAM_UMS_LOADER dependencies on DBA_TABLES

Line 257: -- Gets UMS table details from dba_tables.

253: end if;
254: end analyze_table;
255:
256: --------------------------------------------------------------------------------
257: -- Gets UMS table details from dba_tables.
258: --------------------------------------------------------------------------------
259: procedure add_table_details(px_ums_tables in out nocopy ums_tables,
260: px_ums_table_count in out nocopy binary_integer,
261: p_table_name in varchar2,

Line 273: from dba_tables

269: and fpi.application_id = 0;
270:
271: cursor l_ums_tables(p_owner in varchar2, p_table_name in varchar2) is
272: select owner, table_name, last_analyzed, num_rows
273: from dba_tables
274: where owner = p_owner
275: and table_name = p_table_name;
276: begin
277: for l_applsys_schema in l_applsys_schemas loop