Show the Defined Default Column Values for a Given Table
-- -- Show the Defined Default Column Values for a Given Table. -- SET PAUSE ON SET PAUSE 'Press Return to Continue' SET PAGESIZE 60 SET LINESIZE 300 SET VERIFY OFF SELECT a.column_name "Column", a.data_default "Default" FROM all_tab_columns a WHERE a.table_name = Upper('&1') AND a.data_default IS NOT NULL /