Getting List of All Empty Tables in SQL Server

Hello everyone,

In this article I will try to give information about getting list of all empty tables in SQL Server.

In SQL Server you may want to get a list of all empty tables in some cases.

You can easily do this using the code below.

s.name schema_name,
       SUM(p.rows) total_rows
FROM sys.tables t
    JOIN sys.schemas s
        ON (t.schema_id = s.schema_id)
    JOIN sys.partitions p
        ON (t.object_id = p.object_id)
WHERE p.index_id IN ( 0, 1 )
GROUP BY t.name,
         s.name
HAVING SUM(p.rows) = 0;

When you run the above code, you will see the following result.

Getting List of All Empty Tables in SQL Server

As you can see, all empty tables are listed.

Good luck to everyone in business and life.

177 Views

Yavuz Selim Kart

I try to explain what I know in software and database. I am still improving myself by doing research on many programming languages. Apart from these, I am also interested in Graphic Design and Wordpress. I also have knowledge about SEO and Social media management. In short, I am a determined person who likes to work hard.

You may also like...

Don`t copy text!