I have had to look this query up a few times, so I thought I would write about it here:
USE [DBInstanceName] GO SELECT st.row_count as [Row Count] FROM sys.dm_db_partition_stats st WHERE index_id < 2 and OBJECT_NAME(OBJECT_ID)='TableName'
I have had to look this query up a few times, so I thought I would write about it here:
USE [DBInstanceName] GO SELECT st.row_count as [Row Count] FROM sys.dm_db_partition_stats st WHERE index_id < 2 and OBJECT_NAME(OBJECT_ID)='TableName'