If you want to estimate how many rows in a big table.
You can use this query :
sp_spaceused 'table_name' ,which is same as "select count(1) from table_name with nolock".
The disadvantage of this query is that if the table is being updated.
You just can count the num of rows before it has been updated. It may be a little different with the exact the num.