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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

What happens to Windows Authentication if domain failure occurs?

Status
Not open for further replies.

vinodi

Programmer
May 23, 2003
41
0
0
IN
Hi,


I have a peculiar problem (or maybe not). I have SQL clients installed
on XP boxes. These XP boxes are a member of let us say "XYZ" domain.
SQL Server is installed on one of the boxes having Windows 2000 Server
in the same network. The installation has been done on local domain
account. Since SQl Server has been installed with Windows
authentication, what happens if the XYZ domain fails. Will it be
possible for all clients to access the database present on SQL Server
in the Win 2K box. I think I have made myself clear upto some extent.
Please throw light on how to accomplish the connectivity between SQL
clients and server in case of domain failure.


Regards,


Vinodi




~~The only place where SUCCESS comes before WORK is in the dictionary~~
 
When you set SQL Server for Windows Authentication and accounts to use that also, you are telling SQL Server to 'trust' Windows authentication of the login. To do that, both systems (Client and the server) must authenticate via the same system (usually a domain controller). Therefore, if the domain is down there's no way to authenticate. Also, if the domain is down the client's won't be able to reach the SQL Server anyways - the domain is down.

So, 1. when a domain is down, the users can't reach any other machine but their own. So they won't be able to access the SQL Server.

2. even if they could access it, they won't be able to authenticate.

Even switching to SQL Server authentication won't work if the domain is down. The client machines still won't be able to reach it.

-SQLBill
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top