Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Can I Query which tables have columns with a CLOB data type? 1

Status
Not open for further replies.

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
 
Try

SELECT DISTINCT table_name
FROM user_tab_columns
WHERE data_type = 'CLOB';

That will give you the results.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top