PoshCode Archive  Artifact [6a59180f95]

Artifact 6a59180f956884941f66b6e440bc5654403d63942c5b9f86e78689382026f583:

  • File Get-SQLDatabaseFreespace.ps1 — part of check-in [1586decddb] at 2018-06-10 12:56:24 on branch trunk — I created this script because of the need to monitor a MSDE 2000 database which have reached the 2 GB database limit until the application administrator deleted old data from the database. SQL Server 2008 Management Studio Express must be installed on the computer running the script as a scheduled task. (user: Jan Egil Ring size: 2034)

# encoding: ascii
# api: powershell
# title: Get-SQLDatabaseFreespace
# description: I created this script because of the need to monitor a MSDE 2000 database which have reached the 2 GB database limit until the application administrator deleted old data from the database.  SQL Server 2008 Management Studio Express must be installed on the computer running the script as a scheduled task.
# version: 1.0
# type: script
# author: Jan Egil Ring
# license: CC0
# x-poshcode-id: 1086
# x-archived: 2016-06-01T12:40:00
# x-published: 2009-05-10T07:12:00
#
#
###########################################################################"
#
# NAME: Get-SQLDatabaseFreespace.ps1
#
# AUTHOR: Jan Egil Ring
# EMAIL: jan.egil.ring@powershell.no
#
# COMMENT: Requires SQL Server 2008 Management Studio Express. The script gets free space from the specified SQL Database
#              and sends the result to the specified e-mail address.
#
# You have a royalty-free right to use, modify, reproduce, and
# distribute this script file in any way you find useful, provided that
# you agree that the creator, owner above has no warranty, obligations,
# or liability for such use.
#
# VERSION HISTORY:
# 1.0 10.05.2009 - Initial release
#
###########################################################################"

#Add SQL Server 2008 PowerShell snapin
Add-Pssnapin SqlServerProviderSnapin100

#Get free space in specified database
cd SQLSERVER:\SQL\SQL-server-name\Instance-name\Databases
$DB =  Get-Item "Database01"
$SpaceAvailable = $DB.SpaceAvailable
$formattedresult = $SpaceAvailable
$result = "{0:#.00}" -f ($SpaceAvailable/1kb)

#Send result to specified e-mail address
$smtpServer = "smtp-server-name" 
$msg = new-object Net.Mail.MailMessage
$smtp = new-object Net.Mail.SmtpClient($smtpServer)
$msg.From = "sender@domain.local"
$msg.To.Add("recipient@domain.local")
$msg.Subject = "Free space in Database01"
$msg.Body = "There are $result MB free space in Database01"
$smtp.Send($msg)