March 28, 2012 at 2:41 am
Is there a way I can find out the row size fo a table ?
March 28, 2012 at 2:49 am
This script might help
http://www.sqlservercentral.com/scripts/Administration/61219/
[font="Verdana"]Markus Bohse[/font]
March 28, 2012 at 7:26 am
Sp_spaceused Table_Name
Second column of the output will give you the number of Rows present in the table
Regards,
Kuttikrishnan.P
March 28, 2012 at 9:32 am
sqlnaive (3/28/2012)
Is there a way I can find out the row size fo a table ?
1. Is the table a heap (no indexes) or does it contain indexes?
2. Do you want to know the maximum size of a row, that is all columns containing data? And all columns such as char,varchar containing the maximum number of characters the column can contain?
Here is a good source, which might assis you
http://msdn.microsoft.com/en-us/library/ms189124(v=sql.100).aspx
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply