add

About Me

My photo
Oracle Apps - Techno Functional consultant

Monday, June 20

How To Check Error and Interface tables

SELECT owner, table_name
FROM dba_tables
WHERE table_name LIKE '%ERROR%'
ORDER BY owner, table_name

SELECT owner, table_name
FROM dba_tables
WHERE table_name LIKE '%INTERFACE%'
ORDER BY owner, table_name

No comments: