PoshCode Archive  Artifact [3958aa6ccb]

Artifact 3958aa6ccb31cf78661d2ed3780235a5328ba9db16a9c745a03725cfd1781c84:

  • File Query-VeeamBackupDB.ps1 — part of check-in [015ba48bbc] at 2018-06-10 12:56:51 on branch trunk — Powershell script to Query the Veeam Backup Database. The Query will return the total running time of a backup job. (user: afokkema size: 1520)

# encoding: ascii
# api: powershell
# title: Query-VeeamBackupDB
# description: Powershell script to Query the Veeam Backup Database. The Query will return the total running time of a backup job.
# version: 0.1
# author: afokkema
# license: CC0
# x-poshcode-id: 1316
# x-archived: 2017-04-30T12:49:54
# x-published: 2010-09-10T06:18:00
#
# See my blogpost for more information: http://ict-freak.nl/2009/09/10/powershell-script-to-query-the-veeam-backup-database/
#
$dbServer = "servername\instance"
$db = "VeeamBackup"
$veeamJob = "VeeamJobName"
$Query = "SELECT [job_name],CONVERT(char(10),[creation_time], 101) AS start_date `
,CONVERT(varchar, [creation_time], 108) AS job_start,CONVERT(char(10), [end_time], 101) AS end_date `
,CONVERT(varchar, [end_time], 108) AS job_end, `
LEFT(CONVERT(VARCHAR,CAST([end_time] AS DATETIME)-CAST([creation_time] AS DATETIME), 108),5) AS total_time `
FROM [VeeamBackup].[dbo].[BSessions] WHERE [job_name] = '$veeamJob' ORDER BY start_date"

$SqlConnection = New-Object System.Data.SqlClient.SqlConnection
$SqlConnection.ConnectionString = "Server=$dbServer;Database=$db;Integrated Security=True"
$SqlCmd = New-Object System.Data.SqlClient.SqlCommand
$SqlCmd.CommandText = $Query
$SqlCmd.Connection = $SqlConnection
$SqlAdapter = New-Object System.Data.SqlClient.SqlDataAdapter
$SqlAdapter.SelectCommand = $SqlCmd
$DataSet = New-Object System.Data.DataSet
$SqlAdapter.Fill($DataSet)
$SqlConnection.Close()
$DataSet.Tables[0] | Format-Table -AutoSize