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 strongm 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.
Mar 8, 2004
89
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
 
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