One of the SQL Server's I have inherited is a bit of a mystery to me. I today looked at the licence settings for a requirement for another package and found to my surprise that the licencing mode is listed as 'disabled'.
How can you enable/disable the licencing mode?
What does it mean legally? It sounds to me as if the server is breaking the rules if it is used by more than one connection/user.
The results are:-
8.00.760
SP3
Standard Edition
DISABLED
NULL
Dazed and confused
N+, MCDBA 2000, MCAD .NET
How can you enable/disable the licencing mode?
What does it mean legally? It sounds to me as if the server is breaking the rules if it is used by more than one connection/user.
Code:
SELECT SERVERPROPERTY('productversion'),
SERVERPROPERTY ('productlevel'),
SERVERPROPERTY ('edition'),
SERVERPROPERTY(‘LicenseType’),
SERVERPROPERTY(‘NumLicenses’)
The results are:-
8.00.760
SP3
Standard Edition
DISABLED
NULL
Dazed and confused
N+, MCDBA 2000, MCAD .NET