Reputation: 101
I have a requirement where I need to find out whether SQL is installed with default instance or named instance.
Can someone please help me here how to find it?
Thanks in advance, Sasikumar.
Upvotes: 7
Views: 11988
Reputation: 254
It can be easily verified by using SSMS.
1.) Open SSMS>Connect> Database Engine
2.) Drill down Server name>Browse for more
3.) Local servers tab or Network servers tab lists the Sql Instances.
If item has not \ - slash then it is a default instance and all others are named instance.
Upvotes: 0
Reputation: 755237
Go to Start > All programs > SQL Server xxxx > Configuration Tools > Configuration Manager
and have a look:
If the entry SQL Server
has (MSSQLSERVER)
after it --> it's the (unnamed) default instance.
Otherwise, you'll find the instance name in brackets after the SQL Server
Upvotes: 11