vote up 0 vote down star

Hi

The name of my MS Sql server instance is HEY, but when trying to log on to Sql server via Microsoft Sql management studio, the login window displays as the name of a server "SIRSYSTEM\HEY".

What is SIRSYSTEM? A name of default server instance? If so, then why can’t I connect to HEY using the following connection string ( in Ado.net ):

@"Data Source=(local)\ SIRSYSTEM \ HEY;Initial Catalog=FilmClub;"+ "Integrated Security=true";

cheers

flag

3 Answers

vote up 1 vote down check

SIRSYSTEM is the server or workstation name hosting the instance; to connect to, it the datasource would be either .\HEY, or SIRSYSTEM\HEY, get rid of the (local)\

link|flag
vote up 0 vote down

All you need to do is use 'Hey', SIRSYSTEM is the name of the computer.

Or: localhost\HEY

link|flag
vote up 0 vote down

SIRSYSTEM is not a system name but likely something that you or someone typed at some point as the default or is it the name of the server itself?

Data Source=(local)\SIRSYSTEM\HEY is not at all valid. Try just (local)\HEY.

You might have to unregister and then reregister the server instance within management studio to change this.

link|flag
You guys are correct. It is the name of the server thanx – JustTryingToLearn Feb 27 at 0:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.