SQL Server traverses all tables in the database and the total number of statistical tables

Source: Internet
Author: User
SQL Server traverses all tables in the database and the total number of statistical tables:

Code

1 declare @ tablename varchar (255 );
2 create table # getrecordingtemptable ([ID] [int] Identity (1,1) not null, [tablename] varchar (255) not null, [recordingcount] INT );
3 declare table_cursor cursor for select [name] From sysobjects where xtype = 'U ';
4 open table_cursor;
5 fetch next from table_cursor into @ tablename;
6 While (@ fetch_status = 0)
7 begin
8 exec ('insert into # getrecordingtemptable ([tablename], [recordingcount]) Select ''' + @ tablename + ''', count (0) from ['+ @ tablename +']; ');
9 fetch next from table_cursor into @ tablename;
10 end
11 close table_cursor;
12 deallocate table_cursor;
13 select [tablename] as [Table name], [recordingcount] as [total number of records] From # getrecordingtemptable order by [recordingcount] DESC;
14 drop table # getrecordingtemptable;
15 go

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.