You can tell based on the TABLESPACE the table belongs to – this is the new Oracle Applications Tablespace Model (OATM)
Run the following code to see: SELECT tablespace_name, table_name FROM all_tables WHERE tablespace_name LIKE '%SEED%' -- seeded data AND table_name LIKE 'FND%' SELECT tablespace_name, table_name FROM all_tables WHERE tablespace_name LIKE '%TX%' -- transaction data AND table_name LIKE 'FND%' SELECT tablespace_name, table_name FROM all_tables WHERE tablespace_name LIKE '%ARCHIVE%' -- static data AND table_name LIKE 'FND%'
Comments
Tags: Oracle Applications, Seeded Table, Static Data, Transactional Tables