-- ############################################################################################# -- -- %Purpose: Show Objects and Comments from the Oracle Data Dictionary (View DICTIONARY) -- -- Use: Needs Oracle DBA Access -- -- ############################################################################################# -- set termout on; set feed off; set pagesize 10000; set wrap off; set linesize 200; set heading off; set tab on; set scan on; set verify off; spool show_dictionary.lst select substr(table_name,1,20) "Table Name", substr(comments,1,100) "Comment" from dictionary order by table_name; spool off;