Sql express vs full edition
I'm wondering if someone has come across a way to tell the difference between sql express 2008 and the full edition of microsoft sql 2008. Both have really similar build information and I'm looking for a way to generate a report showing which boxes have which version.
0 Comments
[ + ] Show comments
Answers (1)
Please log in to answer
Posted by:
Nico_K
11 years ago
query the following in the MSSQL db. This should show the relevant informations.
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition')