May 2, 2002 #1 Giddygoat Programmer May 16, 2001 36 GB Hi I need to know which of the tables in my database have CLOB columns. Any ideas anyone? Thanks John
Hi I need to know which of the tables in my database have CLOB columns. Any ideas anyone? Thanks John
May 2, 2002 1 #2 spenglerr IS-IT--Management Feb 15, 2002 154 DE Try SELECT DISTINCT table_name FROM user_tab_columns WHERE data_type = 'CLOB'; That will give you the results. Upvote 0 Downvote
Try SELECT DISTINCT table_name FROM user_tab_columns WHERE data_type = 'CLOB'; That will give you the results.
May 2, 2002 Thread starter #3 Giddygoat Programmer May 16, 2001 36 GB Great stuff. Thanks John Upvote 0 Downvote