I want to query system objects to return info. about my user objects.
In SQL Server I use the system tables. I think you use views in Oracle.
I wrote this query: (but it is not a system TABLE)
SELECT tabname,colname
FROM SYSCAT.COLUMNS
WHERE TABSCHEMA ='my_user_schema' and
colname like '%_CD'
Is there a graphical ER diagram of these system objects on the web?