Chinaunix首页 | 论坛 | 博客
  • 博客访问: 509228
  • 博文数量: 101
  • 博客积分: 1635
  • 博客等级: 上尉
  • 技术积分: 1282
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-05 01:51
文章分类

全部博文(101)

文章存档

2019年(2)

2018年(16)

2013年(14)

2012年(69)

我的朋友

分类: Oracle

2012-11-12 20:14:18

select owner,table_name,
NUM_ROWS,
BLOCKS*8192/1024/1024 "Size M",
EMPTY_BLOCKS,
LAST_ANALYZED
from dba_tables
 where table_name =XXand owner=XX  order  by  "Size M"   desc;
 
 查看表中的blob字段
select distinct(table_name),owner,column_name,data_type
from dba_tab_columns
where table_name=XX and owner= XX and data_type in('CLOB','BLOB');
阅读(692) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~