Something that I have noticed and I do not know if this is normal or not.
I recently installed SQL Server Express 2014 , "SQLEXPRADV_x64_ENU" version, and after installing i ran the following script to check my product version.
SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY ('edition'), @@servername 'Server Name', substring(@@version,1,charindex('-',@@version)-1)+convert(varchar(100),SERVERPROPERTY('edition'))+ ' '++convert(varchar(100),SERVERPROPERTY('productlevel'))'Server Version'
The results I got were
Image may be NSFW.
Clik here to view.
Is this correct for the version to be 2005 when I installed 2014 express? If not, what can I do to correct this?
waynegreen6@yahoo.com