How to find out what version of SQL Backup is installed
matt.stanford
Posts: 11
I'm trying to figure out how to programmatically query for the correct version of SQL Backup.
My end goal is that I want to automatically fire off some TSQL when the version is X.
Is there a way to do this without using the GUI?
Any help would be appreciated.
-Matt
My end goal is that I want to automatically fire off some TSQL when the version is X.
Is there a way to do this without using the GUI?
Any help would be appreciated.
-Matt
Comments
SQL Backup Consultant Developer
Associate, Yohz Software
Beyond compression - SQL Backup goodies under the hood, updated for version 8
execute master..sqbutility 30, @CurrentDLLVersion OUTPUT;
To get the version of the SQL Backup Service you can use:
execute master..sqbutility 1030, @CurrentSrvVersion OUTPUT;
SQL Backup Project Manager
Red Gate Software
I just ran that code and it's exactly what I was looking for.
-Matt