This is a discussion on Sql Server does not exist or access denied issue again within the SQL Server forums, part of the Microsoft SQL Server category; --> I know this has come up frequently but I can't seem to put my finger on the precise problem ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| I know this has come up frequently but I can't seem to put my finger on the precise problem as it applies to me. I have a workgroup with a 2003 box with Sql server on it. Also, on this, I have an XP pro machine. So the xp pro machine is running IIS. When I try and open a connection to the Sql Server I get the Sql Server does not exist etc. I am wondering what I need to do to correct this exactly. Because it is on a workgroup and not a domain how do I solve the problem. Do I need to have an id on the xp machine that is the same as one of the server, I tried this but it doesn't seem to work for me. There is plenty of info out there for domains but not workgroups. Any ideas?? Thanks Eamonn |
| |||
| "Jenbo" <eje3j@allstate.com> wrote in message news:1106693691.736388.211480@f14g2000cwb.googlegr oups.com... >I know this has come up frequently but I can't seem to put my finger on > the precise problem as it applies to me. I have a workgroup with a 2003 > box with Sql server on it. Also, on this, I have an XP pro machine. So > the xp pro machine is running IIS. When I try and open a connection to > the Sql Server I get the Sql Server does not exist etc. > > I am wondering what I need to do to correct this exactly. Because it is > on a workgroup and not a domain how do I solve the problem. Do I need > to have an id on the xp machine that is the same as one of the server, > I tried this but it doesn't seem to work for me. > > There is plenty of info out there for domains but not workgroups. Any > ideas?? > > Thanks > > Eamonn > http://support.microsoft.com/default...b;en-us;328306 If this doesn't help, then you should post some more information - which version and edition of MSSQL do you have, which authentication mode are you using, how are you testing the connection etc. Simon |
| |||
| I have looked at this article a lot and it does not have any specific info on workgroups, just domains. I am using SQL Server Enterprise I think, authenication is mixed mode. The problem seems to be that the user of the client machine cannot access the SQL server. Do I need to do something like create a user on the client called test with pwd and then create the same user on the server machine, and create this in SQL Server??? This is a workgroup I am dealing with not a domain so I am wondering if this would work. Simon Hayes wrote: > "Jenbo" <eje3j@allstate.com> wrote in message > news:1106693691.736388.211480@f14g2000cwb.googlegr oups.com... > >I know this has come up frequently but I can't seem to put my finger on > > the precise problem as it applies to me. I have a workgroup with a 2003 > > box with Sql server on it. Also, on this, I have an XP pro machine. So > > the xp pro machine is running IIS. When I try and open a connection to > > the Sql Server I get the Sql Server does not exist etc. > > > > I am wondering what I need to do to correct this exactly. Because it is > > on a workgroup and not a domain how do I solve the problem. Do I need > > to have an id on the xp machine that is the same as one of the server, > > I tried this but it doesn't seem to work for me. > > > > There is plenty of info out there for domains but not workgroups. Any > > ideas?? > > > > Thanks > > > > Eamonn > > > > http://support.microsoft.com/default...b;en-us;328306 > > If this doesn't help, then you should post some more information - which > version and edition of MSSQL do you have, which authentication mode are you > using, how are you testing the connection etc. > > Simon |
| |||
| "Jenbo" <eje3j@allstate.com> wrote in message news:1106745733.710084.41290@f14g2000cwb.googlegro ups.com... >I have looked at this article a lot and it does not have any specific > info on workgroups, just domains. I am using SQL Server Enterprise I > think, authenication is mixed mode. The problem seems to be that the > user of the client machine cannot access the SQL server. Do I need to > do something like create a user on the client called test with pwd and > then create the same user on the server machine, and create this in SQL > Server??? > > This is a workgroup I am dealing with not a domain so I am wondering if > this would work. > <snip> If you're using mixed mode, then the first thing to try would be connecting with a SQL login which you know works fine when you're logged on to the server: osql -S MyServer -U sa -P xxxx If that doesn't work, then you probably have some basic connectivity issue, so you could look at name resolution, protocol configuration and so on. If it does work, but a trusted connection doesn't, then you probably have an issue related to workgroup security. As far as I know, if you have local user accounts on the client and server with the same name and same password, then you should be able to connect to the server. However, it's possible that Server 2003 is setup somehow to disallow such connections by default - you can test with something basic like connecting to a share on the server. If that doesn't work, then you'll have to investigate workgroup security, which is probably something to take up in a Windows security group. Personally, I would consider setting up a domain - if you have the resources to implement Enterprise Edition on Server 2003, then presumably you have the resources to operate a domain, although of course I don't know your situation, so you may well have a good reason for going with a workgroup. Simon |
| |||
| I was having this exact same problem yesterday and foud out the fix just 30 minutes ago. I am also operating in a Workgroup and like you could not find any solutions. I hope this helps... On the server running MSSQLServer, Open the network connection properties for you NIC. Be sure you only have the following installed: Client for MS Networks File and Printer Sharing TCP/IP I originally had these additional components installed: AppleTalk Client Network Monitor I removed both from Add/Remove Windows Components and network connections at the same time, so not sure which one caused the conflict. Good Luck |
| |||
| I have a related question: when i installed sql server, i chose windows auth. instead of mixed mode. Although a second pc can see a sql instance from the first pc, i cannot log-in using a sql login. How do i change to mixed mode? |
| ||||
| chrispycrunch (chrispycrunch@gmail.com) writes: > I have a related question: when i installed sql server, i chose windows > auth. instead of mixed mode. Although a second pc can see a sql > instance from the first pc, i cannot log-in using a sql login. How do i > change to mixed mode? You do this from Enterprise Manager. If memory servers, you right- click the server, choose properites, and then go the Security tab. -- Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se Books Online for SQL Server SP3 at http://www.microsoft.com/sql/techinf...2000/books.asp |