Data Archive
- Data Archive 6.5 HotFix 1
- All Products
SELECT A.owner, A.table_name FROM all_tables A WHERE A.owner='<table owner>' AND A.table_name IN ('<table name>')
Table Owner | Table Name |
---|---|
GL | GL_IMPORT_REFERENCES |
SELECT A.owner, A.table_name FROM all_tables A WHERE A.owner='GL' AND A.table_name IN ('GL_IMPORT_REFERENCES')
SELECT A.owner, A.table_name, null, 'Y', null, null FROM all_tables A WHERE A.owner='<table owner 1>' AND A.table_name IN ('<table 1 name>', '<table 2 name>') UNION SELECT B.owner, B.table_name, null, 'Y', null, null FROM all_tables B B.owner='<table owner 2>' AND B.table_name IN ('<table 1 name>', '<table 2 name>') UNION SELECT C.owner, C.table_name, null, 'Y', null, null FROM all_tables C C.owner='<table owner 3>' AND C.table_name IN ('<table 1 name>', '<table 2 name>')
Table Owner | Table Name |
---|---|
GL | GL_IMPORT_REFERENCES GL_JE_LINES |
XLA | XLA_AE_HEADERS XLA_AE_LINES |
APPLSYS | WF_ITEMS WF_ITEM_ATTRIBUTE_VALUES |
SELECT A.owner, A.table_name, null, 'Y', null, null FROM all_tables A WHERE A.owner='GL' AND A.table_name IN ('GL_IMPORT_REFERENCES', 'GL_JE_LINES') UNION SELECT B.owner, B.table_name, null, 'Y', null, null FROM all_tables B B.owner='XLA' AND B.table_name IN ('XLA_AE_HEADERS', 'XLA_AE_LINES') UNION SELECT C.owner, C.table_name, null, 'Y', null, null FROM all_tables C C.owner='APPLSYS' AND C.table_name IN ('WF_ITEMS', 'WF_ITEM_ATTRIBUTE_VALUES')