September 1, 2010 at 2:30 pm
Is there a location somewhere in a 2005 SQL Server instance where it is indicated if the instance is running under a licensed or evaluation copy? Thanks for everyone there to help.
September 1, 2010 at 3:00 pm
select @@version
September 3, 2010 at 8:57 am
Michael Valentine Jones (9/1/2010)
select @@version
That will only provide you with the Version/Edition of the running SQL instance. As of SQL 2005 the licensing info is no longer stored anywhere as it was up to SQL 2000. All you need now is the required paperwork from Microsoft that proves you have the required License. In other words, if you are audited, you need to produce the license info for each 2005+ SQL server installation.
September 3, 2010 at 10:46 am
IF it's eval edition, you can get info here: http://mangalpardeshi.blogspot.com/2009/05/expiration-date-of-sql-server.html
If you want to query each server, I'd think that eval edition had a note in the @@version that it was the version installed. It's also probably in the registry somewhere.
Serverproperty is supposed to return this: http://msdn.microsoft.com/en-us/library/ms174396%28SQL.90%29.aspx%5B/url%5D
September 3, 2010 at 10:55 am
I would rely on the Serverproperty function. It will return the various editions (standard, enterprise, eval)
Jason...AKA CirqueDeSQLeil
_______________________________________________
I have given a name to my pain...MCM SQL Server, MVP
SQL RNNR
Posting Performance Based Questions - Gail Shaw[/url]
Learn Extended Events
September 3, 2010 at 12:11 pm
Steve Jones - Editor (9/3/2010)
IF it's eval edition, you can get info here: http://mangalpardeshi.blogspot.com/2009/05/expiration-date-of-sql-server.htmlIf you want to query each server, I'd think that eval edition had a note in the @@version that it was the version installed. It's also probably in the registry somewhere.
Serverproperty is supposed to return this: http://msdn.microsoft.com/en-us/library/ms174396%28SQL.90%29.aspx%5B/url%5D
'teresting... Didn't know there was a Enterprise Evaluation Edition ....
September 3, 2010 at 12:25 pm
Steve is absolutely right.
Thanks & Regards,
SQLBuddy
September 7, 2010 at 8:56 am
Thanks to everyone for taking the time to respond.
Viewing 8 posts - 1 through 7 (of 7 total)
You must be logged in to reply to this topic. Login to reply