Reputation: 21
I got a new Pc which was having both Sql server2008 and sql server2008 R2, I am not able to recognise that which instance name belongs to Sql server2008 and which to Sql server2008R2. How can i come to know it.
Upvotes: 2
Views: 38
Reputation: 2677
Try this. It will work for you.
Select @@VERSION as [Server Version],@@ServerName [Instance Name]
Upvotes: 2