all groups > sql server data warehouse > october 2003 >
You're in the

sql server data warehouse

group:

How to check SQL database size?


How to check SQL database size? Mirko
10/20/2003 6:45:48 AM
sql server data warehouse:
How to check SQL 2K SP3 database size? How much space is
SQL database taking from the disk.

Please help.

Re: How to check SQL database size? Ray Higdon
10/20/2003 12:46:00 PM
Look up "SP_spaceused" in BOL.

--
Ray Higdon MCSE, MCDBA, CCNA
--
[quoted text, click to view]

How to check SQL database size? Varad01
10/20/2003 2:00:08 PM
Use the following system stored procedures.

1. sp_helpdb databasename

Example : sp_helpdb 'pubs'

2. Execute 'sp_spaceused' without any parameters, which
will show thw allocated space and free space for the
current database.

3. sp_spaceused objectname
This can be used to find the space occupied by a object,
freespace..

-Varad

[quoted text, click to view]
AddThis Social Bookmark Button