BI SQL # 261 : SQL Server DBA Scripts : Find If any database is Offline
Hi Folks,
In this article we are going to cover How to Find If any database is Offline.
In this post we are going to discuss following points:
- Problem Statement of SQL Script:
- Description of SQL Script:
- SQL Script Code
- User Level to execute
Problem Statement of SQL Script:
How to Find If any database is Offline?
Description of SQL Script:
This script will Find If any database is Offline.
SQL Script Code
IF ( SELECT count(*) FROM sys.databases WHERE state_desc <> 'Online' ) > 0 BEGIN DECLARE @table NVARCHAR(MAX); SET @table = N'<H1>Offline Databases Report</H1>' + N'<table border="1">' + N'<tr><th>Database Name</th><th>Database Status</th></tr>' + CAST(( SELECT td = NAME ,'' ,td = state_desc FROM sys.databases WHERE state_desc <> 'Online' FOR XML PATH('tr') ,TYPE ) AS NVARCHAR(MAX)) + N'</table>'; EXEC msdb.dbo.sp_send_dbmail @profile_name = 'ProfileName' ,--Change to your Profile Name @recipients = 'email@domain.com;email1@domain.com' , --Put the email address of those who want to receive the e-mail @subject = 'Offline Databases Report' ,@body = @table ,@body_format = 'HTML'; END ELSE PRINT 'All Databases are Online'
User Level to execute
300
Hope you will like How to Find If any database is Offline.
If you really like reading my blog and understood at least few thing then please don’t forget to subscribe my blog.
If you want daily link and analysis or interesting link go to following website which will give @ your inbox please subscribe our following link resource blog :
For More information related to BI World visit my Mentalist Blog
SQL Server Mentalist >> SQL Learning Blog
Business Intelligence Mentalist >> BI World
Infographic Mentalist >> Image worth explaining thousand Words
Microsoft Mentalist >> MVC,ASP.NET, WCF & LinQ
DBA Mentalist >>Advance SQL Server Blog
Microsoft BI Mentalist >> MS BI Development Update
Connect With me on