Here is SQL script to List all tables names and row counts of the table
Here is SQL script to List all tables names and row counts of the table
Rate Here is SQL script to List all tables names and row counts of the table
(1(1 Vote))
FROM dbo.sysobjects so INNER JOIN
dbo.sysindexes si ON so.id = si.id
WHERE (so.xtype = 'u') AND (si.indid < 2) AND (so.name <> 'dtproperties')
ORDER BY so.name
Here is SQL script to List all tables names and row counts of the table Comments
No comments yet — be the first to post one!
Post a Comment