Hi Ibrahim,
For space you maybe want to use sp_spaceused.
sp_spaceused [objname [,1] ]
Parameters
objname is the name of the table on which to report. If omitted, a summary of space used in the current database appears.
1 prints separate information on the table’s indexes and text/image storage
Prints a summary of space used in the current database:
sp_spaceused
database_name database_size
--------------- ---------------------------
master 5 MB
reserved data index_size unused
--------- --------- ----------- --------
2176 KB 1374 KB 72 KB 730 KB
Niclas
.