In this article, I am publishing a stored procedure (DBStats) I have recently written and which given a database name as an input parameter it returns the below basic information:
TotalTables
TotalViews
TotalSPs
TotalFunctions
TotalDMLTriggers
TotalDBSize (MB)
LogSize (MB)
List of all tables with their number of columns
Sample Output of DBStats
The below is a screenshot of the output when I execute the stored procedure:
DDL T-SQL Code for Creating DBStats Stored Procedure
To create the stored procedure, you can use the below T-SQL script:
--
--Title: DBStats
--Description: Provides basic statistics for given database
--Supported SQL Server Versions: 2005 or later
--Author: Artemakis Artemiou (Former Data Platform MVP)
--Date: Sep 9, 2015
--
CREATE PROCEDURE DBStats @databaseName NVARCHAR(60)
AS
SET NOCOUNT ON
SET ANSI_WARNINGS OFF
--Check if database exists
--if not, end procedure
DECLARE @databaseID INT
DECLARE @DBName VARCHAR(60)
SET @databaseID=(SELECT COUNT(*) FROM sys.databases WHERE UPPER([name])=UPPER(@databaseName))
IF @databaseID=0
BEGIN
RAISERROR ('Database does not exist. Make sure that you entered the name correctly.',16,1);
RETURN;
END;
SET @DBName=(SELECT [name] FROM sys.databases WHERE UPPER([name])=UPPER(@databaseName))
CREATE TABLE #tmpDBStats
(
value INT ,
descr VARCHAR(50)
);
CREATE TABLE #tmpDBStatsFloat
(
value FLOAT ,
descr VARCHAR(50)
);
CREATE TABLE #tmpTableStats
(
TableName VARCHAR(60) ,
TotalColumns INT
);
--Database Name
SELECT @dbName AS DatabaseName;
PRINT ''
--Total Tables
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpDBStats SELECT COUNT(*),''TotalTables''
FROM INFORMATION_SCHEMA.TABLES
WHERE TABLE_TYPE = ''BASE TABLE''
AND TABLE_CATALOG = '''+@dbName+''';'
);
--Total Views
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpDBStats SELECT COUNT(*),''TotalViews''
FROM sys.objects o ,
sys.sql_modules m
WHERE o.[object_id] = m.[object_id]
AND o.[type] IN ( ''V'' );'
);
--Total SPs
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpDBStats SELECT COUNT(*),''TotalSPs''
FROM sys.objects o ,
sys.sql_modules m
WHERE o.[object_id] = m.[object_id]
AND o.[type] IN ( ''P'', ''PC'' );
');
--Total Functions
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpDBStats SELECT COUNT(*),''TotalFunctions''
FROM sys.objects o ,
sys.sql_modules m
WHERE o.[object_id] = m.[object_id]
AND o.[type] IN ( ''FN'', ''FS'', ''FT'', ''IF'');');
--Total DML Triggers
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpDBStats SELECT COUNT(*),''TotalDMLTriggers''
FROM sys.objects o ,
sys.sql_modules m
WHERE o.[object_id] = m.[object_id]
AND o.[type] IN ( ''TA'', ''TR'' )');
--DB Size
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpDBStatsFloat SELECT total_size_mb = CAST(SUM(size) * 8. / 1024 AS DECIMAL(8,2)),''TotalDBSize (MB)''
FROM sys.master_files WITH ( NOWAIT )
WHERE database_id = DB_ID()
GROUP BY database_id');
--Log Size
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpDBStatsFloat SELECT log_size_mb = CAST(SUM(CASE WHEN type_desc = ''LOG''
THEN size END) * 8. / 1024 AS DECIMAL(8,2)),''LogSize (MB)''
FROM sys.master_files WITH ( NOWAIT )
WHERE database_id = DB_ID()
GROUP BY database_id');
--Total Columns
EXEC ('USE ['+@dbName+']; INSERT INTO #tmpTableStats SELECT TABLE_NAME AS TableName ,
COUNT(*) AS TotalColumns
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_NAME IN (SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE=''BASE TABLE'')
GROUP BY TABLE_NAME
ORDER BY 2 DESC;');
-----------------------------------
--Display Results
SELECT descr AS Statistic,
value AS Value
FROM #tmpDBStats
UNION ALL
SELECT descr AS Statistic,
value AS Value
FROM #tmpDBStatsFloat;
PRINT ''
SELECT *
FROM #tmpTableStats
ORDER BY TableName;
PRINT ''
SET NOCOUNT OFF
Feel free to post any comments for adding more functionality to the stored procedure!
Featured Database Security and Administration Tool: DBA Security Advisor
DBA Security Advisor: Secure your SQL Server instances by scanning multiple instances against a rich set of security checks, and by getting recommendations and remediation steps.
Via the course, you will learn essential hands-on SQL Server Administration tips on SQL Server maintenance, security, performance, integration, error handling and more. Many live demonstrations and downloadable resources included!
(Lifetime Access/ Live Demos / Downloadable Resources and more!)
Artemakis Artemiou is a seasoned Senior Database and AI/Automation Architect with over 20 years of expertise in the IT industry. As a Certified Database, Cloud, and AI professional, he has been recognized as a thought leader, earning the prestigious Microsoft Data Platform MVP title for nine consecutive years (2009-2018). Driven by a passion for simplifying complex topics, Artemakis shares his expertise through articles, online courses, and speaking engagements. He empowers professionals around the globe to excel in Databases, Cloud, AI, Automation, and Software Development. Committed to innovation and education, Artemakis strives to make technology accessible and impactful for everyone.
Views:2,719
We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept All”, you consent to the use of ALL the cookies. However, you may visit "Cookie Settings" to provide a controlled consent. Read More
This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
Cookie
Duration
Description
cookielawinfo-checkbox-analytics
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional
11 months
The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance
11 months
This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy
11 months
The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.