SQL 2005/2008 Query Current Version and Configuration Settings
This T-SQL query will list the current SQL version and configuration settings for the current instance for SQL Server:
sp_configure 'show advanced options', 1reconfigureGOsp_configureGOSELECT SERVERPROPERTY('productversion') as ProductVersionSELECT SERVERPROPERTY ('productlevel') as LevelSELECT SERVERPROPERTY('edition') as EDITIONSELECT @@VERSION as VERSION
Comments
Post a Comment