In yesterday’s post, we saw how we can retrieve log space information for all the databases within a SQL Server instance using the command DBCC sqlperf(logspace).
Creating the Stored Procedure
Today we will refine the process even more by creating a stored procedure that returns log space information for a given database!
--****************************** --CREATING THE STORED PROCEDURE --****************************** --Select the database in which the stored --procedure will be created USE [spDBName] GO --Check if the stored procedure exists --and if so drop it IF OBJECT_ID('spDBLogInfo') IS NOT NULL DROP PROCEDURE spDBLogInfo GO --Create the stored procedure. --The only input parameter will be the database name. CREATE PROCEDURE spDBLogInfo @DBname NVARCHAR (250) AS BEGIN SET nocount ON; -- -- Main logic -- --Step 1: Create temporary table CREATE TABLE #temptbl ( DBName NVARCHAR(250), logsize FLOAT, logspaceused FLOAT, status INT ) --Step 2: Populate temporary table with log size information INSERT INTO #temptbl EXEC('DBCC sqlperf(logspace)') --Step 3: Process the temporary table SELECT DBName, ROUND(logsize,2) as 'Log Size (MB)', ROUND(logspaceused,2) as 'Log Space Used (%)', ROUND((logsize-(logsize*(logspaceused/100))),2) as 'Available Log Space (MB)' FROM #temptbl WHERE dbname=@DBname END GO -------------------------------
Using the Stored Procedure
Now, let’s say we want to see log space information about the database ‘temp’.
The only we need to do is this:
EXEC spDBName..spDBLogInfo 'temp'
…and this is what we get:
Feel free to use the stored procedure for your database administration needs!
Learn More Tips like this – Enroll to the Course!
Check our online course on Udemy titled “Essential SQL Server Administration Tips” (special limited-time discount included in link).
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!
Upgrade your Tech Skills – Learn all about Azure SQL Database
Enroll to our online course on Udemy titled “Introduction to Azure SQL Database for Beginners” and get lifetime access to high-quality lessons and hands-on guides about all aspects of Azure SQL Database.
Learn More
Featured Online Courses:
- Introduction to Azure SQL Database for Beginners
- SQL Server 2019: What’s New – New and Enhanced Features
- SQL Server Fundamentals – SQL Database for Beginners
- Essential SQL Server Administration Tips
- Boost SQL Server Database Performance with In-Memory OLTP
- Essential SQL Server Development Tips for SQL Developers
- Working with Python on Windows and SQL Server Databases
- Introduction to Computer Programming for Beginners
- .NET Programming for Beginners – Windows Forms with C#
- Introduction to SQL Server Machine Learning Services
- Entity Framework: Getting Started – Complete Beginners Guide
- How to Import and Export Data in SQL Server Databases
- Learn How to Install and Start Using SQL Server in 30 Mins
- A Guide on How to Start and Monetize a Successful Blog
Read Also:
- Essential SQL Server Development Tips for SQL Developers
- The TempDB System Database in SQL Server
- SQL Server Installation and Setup Best Practices
- The feature you are trying to use is on a network resource that is unavailable
- SQL Server 2016: TempDB Enhancements
- tempdb growth
- Introduction to SQL Server Machine Learning Services
- Essential SQL Server Administration Tips
- What are SQL Server Statistics and Where are they Stored?
- Check all our Weekly Tips!
Subscribe to our newsletter and stay up to date!
Subscribe to our YouTube channel (SQLNetHubTV)!
Like our Facebook Page!
Check our SQL Server Administration articles.
Check out our latest software releases!
Check our eBooks!
Rate this article:
Reference: SQLNetHub.com (https://www.sqlnethub.com)
© SQLNetHub
Artemakis Artemiou, a distinguished Senior Database and Software Architect, brings over 20 years of expertise to the IT industry. A Certified Database, Cloud, and AI professional, he earned the Microsoft Data Platform MVP title for nine consecutive years (2009-2018). As the founder of SQLNetHub and GnoelixiAI Hub, Artemakis is dedicated to sharing his knowledge and democratizing education on various fields such as: Databases, Cloud, AI, and Software Development. His commitment to simplicity and knowledge sharing defines his impactful presence in the tech community.