Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Licence Disabled

Status
Not open for further replies.

Skittle

ISP
Sep 10, 2002
1,528
US
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.

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
 
Depends on what the server's being used for. If it's the passive server for an active/passive log shipping scenario, you don't need a license for it.

Here's Microsoft's SQL Server 2000 Licensing FAQ location. Look it over and see if any of it fits what you're seeing:




Catadmin - MCDBA, MCSA
"No, no. Yes. No, I tried that. Yes, both ways. No, I don't know. No again. Are there any more questions?"
-- Xena, "Been There, Done That"
 
That would be developer or eval edition.

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
Really???

Is there a way to confirm that?
The version is listed as the 'standard edition' from the serverproprty.

Dazed and confused
N+, MCDBA 2000, MCAD .NET
 
I have stumbled on some more information.
If you use the licensing per processor, the SERVERPROPERTY(‘LicenseType’) can return a value of 'DISABLED'.

See link:-

I checked the SQL Server 2000 Licensing Setup within control panel ( never noticed this before ) and it confirms the license mode is indeed per processor. Phew!!!

I was shocked to find it set to disabled BUT i'm more shocked that MrDenny ( 'he who knows all' ) didn't know about this little feature :eek:).

Thanks for your help chaps.







Dazed and confused
N+, MCDBA 2000, MCAD .NET
 
That's just stupid that it shows disabled (espically since it's not disabled).

I hope you don't think any less of me because of this.

(Keep in mind it will also show disabled for the developer, which is what I ran your code against).

Denny
MCSA (2003) / MCDBA (SQL 2000) / MCTS (SQL 2005) / MCITP Database Administrator (SQL 2005)

--Anything is possible. All it takes is a little research. (Me)
[noevil]
 
MrDenny your hero status in my eyes has only slightly been tarnished.

:eek:)






Dazed and confused
N+, MCDBA 2000, MCAD .NET
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top