查询数据库中含clob,blob的表

查询含clob,blob的表
select distinct ('TABLE "' || a.OWNER || '"."' || a.TABLE_NAME || '"')
from sys.all_tab_columns a
where a.OWNER = 'EHL_TOS'--用户名
and a.TABLE_NAME in
(select t.TABLE_NAME
from sys.all_tab_columns t
where t.OWNER = 'EHL_TOS'--用户名
and t.DATA_TYPE in ('CLOB', 'BLOB'))

posted @ 2016-01-08 11:06  wangfg  阅读(1272)  评论(0编辑  收藏  举报