Comments
3 comments
-
Try this:
DECLARE @value varchar(32) EXEC master..sqbutility 1030, @value OUTPUT SELECT @value
-
To get the version of the SQL Backup Extended Stored Procedure DLL you can use the following command:
execute master..sqbutility 30, @CurrentDLLVersion OUTPUT;
To get the version of the SQL Backup Service you can use:
execute master..sqbutility 1030, @CurrentSrvVersion OUTPUT; -
Wow, two answers at the same time. Thanks to both of you.
I just ran that code and it's exactly what I was looking for.
-Matt
Add comment
Please sign in to leave a comment.
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