Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
Hariarul
Posting Yak Master
160 Posts |
Posted - 2006-05-25 : 00:15:06
|
Hi all, How can I find the exact size in the disk occupied by a TABLE ?When I execute "sp_spaceused" it returns the following parameters for a table reserved data index_size unused Which of the parameters I should consider to calculate the exact space occupied by the table.Thanks in advance,Hari Haran Arulmozhi |
|
khtan
In (Som, Ni, Yak)
17689 Posts |
|
Michael Valentine Jones
Yak DBA Kernel (pronounced Colonel)
7020 Posts |
|
madhivanan
Premature Yak Congratulator
22864 Posts |
|
Hariarul
Posting Yak Master
160 Posts |
Posted - 2006-05-26 : 02:41:37
|
Hi all, Thanks for you inputs !!Hari Haran Arulmozhi |
 |
|
CSK
Constraint Violating Yak Guru
489 Posts |
Posted - 2006-05-26 : 07:38:44
|
Total table size (bytes) = Data_Space_Used + Clustered index size + Nonclustered index sizeThanksKK |
 |
|
|
|
|