create table #rowcount (tablename varchar(128), rowcnt int)
exec sp_MSforeachtable 'insert into #rowcount select ''?'', count(*) from ?'
select * from #rowcount order by rowcnt desc
drop table #rowcount
The result will look like this:
Live from the brain of TeX HeX: ArgumentNullException
0 comments:
Post a Comment