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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

confirm license method 1

Status
Not open for further replies.

ScottCr

MIS
Mar 7, 2006
212
Hi Guys,

I have a SQL 2005 installation that I've inherited.

Could someone please tell me how to confirm the method of licensing used. ie per processor or per user. If per user I also need to know how many cals there are.

It doesn't seem to work the same way as 2000 and so I'm a little stuck.

Thanks,

Scott.
 
Open a Query Analyzer window, copy/paste this code, and run it.

Code:
Select ServerProperty('LicenseType'), Serverproperty('NumLicenses')

-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Try running this, also...

Code:
Select ServerProperty('Edition'), 
       ServerProperty('Engine Edition'),
       ServerProperty('ProductVersion'),
       ServerProperty('ProductLevel')



-George

Strong and bitter words indicate a weak cause. - Fortune cookie wisdom
 
Thanks,

I get this:-

Standard Edition NULL 9.00.2047.00 SP1

Scott.
 
SQL 2005 doesn't ask what the licensing mode is during install. It's a trust thing now. You'll need to check your purchasing paperwork.

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]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top