Tag Archives: tips and tricks

Find SQL Server version details from the Registry

Last week, the customer wanted to know the Edition information of a Non-Production SQL Server instance. We can easily get this information by executing the following query in SSMS. SELECT SERVERPROPERTY(‘productversion’), SERVERPROPERTY (‘productlevel’), SERVERPROPERTY (‘edition’)   This article discusses various … Continue reading

Posted in SQLServerPedia Syndication | Tagged , , | 3 Comments

Stop database backup information from appearing in the Error Log

This post is in response to a question from one of my blog readers. Whenever a Database or Transaction Log is backed up, a corresponding entry is logged in the SQL Server Error Log regarding the backup. On an instance … Continue reading

Posted in Backup, SQLServerPedia Syndication | Tagged , | 5 Comments