Viewing post 1 (of 1 total)
If your table has a clustered index and reasonably updated statistics you can query the system table directly:
SELECT rows
FROM sysindexes
WHERE id = OBJECT_ID('MyTable') AND indid < 2
I wouldn't...
December 15, 2008 at 9:42 am
#912582