Description of Issue
The size of a database needs to be checked
How large is our database?
Context
- SSMS
- Database
- Query
Cause
The size of a database needs to be checked
Resolution
- Log into the database server
- Open SSMS
- Drop down the Databases menu item
- Find the desired database from the list
- Option 1:
- Right click database name > New Query
Copy/paste the following query
exec sp_spaceused
Click Execute or F5
- Review database_size and unallocated space
- Option 2:
- Right click database name > Reports > Standard Reports > Disk Usage
- Expand Disk Space Used by Data Files
- Review Space Reserved and Space Used
- Option 3:
- Right click database name > Properties
- Review Size and Space Available
- Right click database name > Properties
- Option 1:
Additional Information
Add Comment