Re: sql server table size?
- From: "Rune Norberg" <runeno@xxxxxxxxxxxxxxxx>
- Date: Tue, 11 Oct 2005 22:54:57 +0200
Guess you are wondering about table sizes in the SMS db since you are
posting here? Anyway - below is a script you can run from query analyzer to
find table sizes:
use <name_of_db>
select so.name, si.rows, si.reserved * 8 as "Kb", si.rowmodctr as 'Activity'
from sysindexes si
join sysobjects so on si.id=so.id
where so.type='U' and si.indid in (0,1)
order by si.reserved desc
/Rune
"Chris" <Chris@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:180D16DE-499E-4629-A314-D613DD79EBD2@xxxxxxxxxxxxxxxx
> Does anyone know how to view the size on disk for an individual table in
> sql?
> we have sql 2000.
.
- Follow-Ups:
- Re: sql server table size?
- From: Chris
- Re: sql server table size?
- Prev by Date: RE: Can't compile test mof
- Next by Date: Re: Need help for setting proper security rights
- Previous by thread: Re: DCOM was unable to communicate with the computer 10.x.x.x
- Next by thread: Re: sql server table size?
- Index(es):
Relevant Pages
|