Best Way To Count Number Of Rows in any Table

Rajesh_Kumar
Posted by Rajesh_Kumar under Sql Server category on | Points: 40 | Views : 1139
Select Rows as No_of_Rows from SysIndexes
Where Id = OBJECT_ID('Your Table Name') and
indid<2;

Comments or Responses

Login to post response