--------------------------------------------------------------------------------- -- table 건수 select a.name ,a.id ,b.rows from sysobjects a left outer join sysindexes b on b.id = a.id where a.xtype = 'u' and b.indid < 2 order by b.rows desc -------------------------------------------------------------------------------- -- table 용량 select a.id, a.name ,str(sum(reserved) * 8192.0 / 1024.0, 15, 0)..