Reputation: 14108
How do I do in order to find and locate the current name of the active instance in SQL server 2008's SSMS?
My hostname is SAKURA-PC.
In my client I have two instance named MSSQLSERVER2008 and MSSQLSERVER.
Upvotes: 1
Views: 7861
Reputation: 43459
select @@ServerName
in query analyser gives you server\instance.
Upvotes: 3