http://www.sqlservercentral.com/blogs/chuckboycejr/2012/11/13/how-to-obtain-the-version-and-license-for-a-red-gate-install/
Printed 2013/05/18 08:14AM
How to obtain the version and license for a Red Gate SQL BACKUP install
/*
here is a little script I've hobbled together that I use to get version and license info for a Red Gate install
enjoy,
Chuck
*/
DECLARE @version nvarchar(32) DECLARE @edition int DECLARE @SerialNumber VARCHAR(30);
exec master..sqbutility 21, @edition OUTPUT, @version OUTPUT, @SerialNumber OUTPUT;
read more
Copyright © 2002-2013 Simple Talk Publishing. All Rights Reserved. Privacy Policy. Terms of Use. Report Abuse.