Helpful_ SQL Server Object Count Script for Each Database
Helpful_ SQL Server Object Count Script for Each Database
This script dynamically counts the following objects in each user database of an SQL Server
instance:
Tables, Views, Stored Procedures (SP), User-defined Functions (Scalar, Inline, and Table-Valued),
Triggers, Indexes, Schemas.
OPEN db_cursor
FETCH NEXT FROM db_cursor INTO @DatabaseName
1. Cursor Setup: A cursor is used to loop through all user databases that are online (excluding
system databases).
2. Dynamic SQL Execution: For each database, the script switches context (USE
[DatabaseName]) and runs queries to count tables, views, stored procedures, functions,
triggers, indexes, and schemas.
3. Function Count: For counting functions, it uses sys.objects and filters based on the
function types: FN (Scalar), IF (Inline Table-Valued), and TF (Table-Valued).
4. Results Collection: The counts for each object type are inserted into a temporary table
#DatabaseObjectCounts.
5. Final Output: After iterating through all databases, the results are retrieved from the
temporary table and displayed.