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

SQL 2005 Express, Standard etc.

Status
Not open for further replies.
Joined
Mar 8, 2004
Messages
89
Location
CA
Hi All,

Is there a quick way to tell if a machine is using SQL 2005 express vs. Standard? I have to upgrade any Express machines due to the 4GB database restriction and just need a way to figure which machines need the upgrade.

Thanks

Mark Morton, MCITP, MCTS, MCSA, MCP, SNA, CCA, CCE
 
if you have access to a query window run
Select @@version

this tells you version right down to sp pack and hotfixes applied


"I'm living so far beyond my income that we may almost be said to be living apart
 
Code:
SELECT 
	SERVERPROPERTY('Edition') AS Edition,
	SERVERPROPERTY('ProductVersion') AS ProductVersion,
	SERVERPROPERTY('ProductLevel') AS ProductLevel
 
Thank you gentlemen, this worked perfectly

Mark Morton CCA,MCITP,MCTS,MCSA,SNA,SERVER+
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top