How to Get the Number of Tables from SQL Server Database ?

Below is a sample SQL query that demonstrates how to count the number of tables in a SQL Server database using information_schema.tables.

How to Get the Number of Tables from SQL Server Database ?

USE TrainingDB1
SELECT COUNT(*) as TableNos from information_schema.tables 
WHERE table_type = 'base table' 

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this blog post, let’s learn about the error message “1459 – An error occurred while accessing the database mirroring...
In this blog post, let’s learn about the error message “7937 – Columnstore index has one or more missing column...