SQL statistics the number of records in all tables in a database _mssql

Source: Internet
Author: User
Copy Code code as follows:

CREATE TABLE #tmptb (tbname sysname,tbrows int
, tbreserved varchar (+), Tbdata varchar (10)
, Tbindexsize varchar (a), tbunused varchar (10))
INSERT into #tmptb exec sp_msforeachtable ' exec sp_spaceused '? '
SELECT * FROM #tmptb--Lists all tables
SELECT tbrows, tbname from #tmptb WHERE tbrows=0-List of tables with record data of 0
ORDER BY Tbname
DROP TABLE #tmptb

which
Tbname Table Name
Number of Tbrows Records
tbreserved Reserved Space
Tbdata Use space
Tbindexsize Index Use space
Tbunused Unused Space

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.