今天 用create table bbb as select * from aaa 建了一张表
原表 aaa 大约 7个G 左右
但是经过如上操作后 建出来的bbb 表居然有131个G 差点把表空间挤爆
所以想请教下各位大大 这是什么情况
是不是aaa表有大字段,大字段是单独统计的
select a.table_name,a.column_name,a.segment_name,b.tablespace_name, b.bytes
from user_lobs a, user_segments b where a.segment_name=b.segment_name