DBA Data[Home] [Help]

APPS.OPI_DBI_COGS_PKG dependencies on USER_SYNONYMS

Line 77: l_table_owner user_synonyms.table_owner%type;

73: ================================================================*/
74:
75: PROCEDURE gather_stats(p_table_name VARCHAR2) IS
76:
77: l_table_owner user_synonyms.table_owner%type;
78:
79: cursor get_table_owner is
80: SELECT table_owner
81: FROM user_synonyms

Line 81: FROM user_synonyms

77: l_table_owner user_synonyms.table_owner%type;
78:
79: cursor get_table_owner is
80: SELECT table_owner
81: FROM user_synonyms
82: WHERE synonym_name = p_table_name;
83:
84: data_no_found exception;
85: BEGIN