Viewing post 1 (of 1 total)
What are the benefits of this script over something simple like the below?
[Code="SQL"]
SELECT st.Name, sp.Rows
from sys.tables st
JOIN sys.partitions sp
on st.object_id = sp.object_id
Order by st.Name
[/Code]
I've ran them both, i'm getting the...
April 24, 2014 at 9:47 am
#1708456