Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Database Size Issue

Status
Not open for further replies.

grimmy

MIS
Nov 25, 1999
57
FR
I am currently running SQL 6.5 and have a database setup with a 1GB data size. At this minute there is only 200MB free but there is not a lot of data in tables in this database that changes so I cannot believe that it is using 800MB.
What is the best way of seeing how much data size an individual table/object is taking.

Cheers....Paul.
 
I've never used 6.5, so I don't know if this will work for you....but in SQL 2000 you can use

exec sp_spaceused

and/or

exec sp_spaceused 'table_name'

the first gives you the information for the database and the second for the specified table.

-SQLBill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top