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)...