Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Shaun E on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Understanding Multiple-Instances of SQL Server?

Status
Not open for further replies.

fixthebug2003

Programmer
Oct 20, 2003
294
US
Hi,
I am just trying to understand named-instances of SQL Server 2000.
If I have 2 named-instances of SQL Server in a machine, then if I connect to that machine using SQL server Enterprise manager, will I see the 2 named-instances of the database...how does it look like..like 2 groups, and under each group list of all the databases?

Fixthebug2003
 
You should add both instance into your client network utility first, then only your SQL Server registration list will present both server instances to you. And yes, it's like 2 group, and under each group list of all the databases
 
Thanks Dude !! Another Question:
So if we have a client application accessing a database in this server..we need to provide the instance name also..right??
 
better use server IP address with instance name example: 68.72.102.34\SQL1, sometimes the port number may not be default 4133, you should ask network admin about it.
 
Also as a side note ... when you are generating queries w/ named instances, you sometimes need to encompass the instance\database name with brackets as [68.72.102.34\SQL1]

Thanks

J. Kusch
 
another side note, Claire has a typo in her last post...it's port 1433, not 4133.

-SQLBill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top