How to find out if SQL Server is installed with default instance or named instance?
Asked Answered
B

2

7

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.

Beatrizbeattie answered 23/1, 2015 at 14:28 Comment(1)
I think this is same https://mcmap.net/q/186387/-how-to-get-current-instance-name-from-t-sqlRubric
B
11

Go to Start > All programs > SQL Server xxxx > Configuration Tools > Configuration Manager and have a look:

enter image description here

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

Bearskin answered 23/1, 2015 at 14:32 Comment(0)
M
0

It can be easily verified by using SSMS.

1.) Open SSMS>Connect> Database Engine

enter image description here

2.) Drill down Server name>Browse for more

enter image description here

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. enter image description here

Mima answered 4/10 at 11:16 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.