So I have this SQL 2000 server I've granted access to the Windows Group MyDomain\AllUsers.
Security access: Grant access
Default database: ADatabase
Server Roles: <none>
Database access: Permit in ADatabase as public role.
In ADatabase I have a User:
Name: MyApplicationUser
Login: MyDomain\All Users
Database Access: Permit
Now, user MyDomain\AUser attempts to use a tool I wrote that connects via integrated authentication. She is not allowed to connect, and in the event log I see:
18456 :
Login failed for user 'MyDomain\AUser'.
Any ideas how to track this down? The SQL 2005 server log will give you a State value that helps determine the exact problem, but SQL 2000 doesn't have this.
There is no myDomain\AUser user in the database, but this shouldn't be a problem as I want this user to authenticate using the All Users group.
But now that I think about it, perhaps she's authenticating as a different group on the server, and then not being able to get access to the database? How do I find out what group a particular user will authenticate as? (I have searched for this online and found nothing, the terms seem to be too vague as I just keep getting random general security topics.)
Thanks for your help.
Security access: Grant access
Default database: ADatabase
Server Roles: <none>
Database access: Permit in ADatabase as public role.
In ADatabase I have a User:
Name: MyApplicationUser
Login: MyDomain\All Users
Database Access: Permit
Now, user MyDomain\AUser attempts to use a tool I wrote that connects via integrated authentication. She is not allowed to connect, and in the event log I see:
18456 :
Login failed for user 'MyDomain\AUser'.
Any ideas how to track this down? The SQL 2005 server log will give you a State value that helps determine the exact problem, but SQL 2000 doesn't have this.
There is no myDomain\AUser user in the database, but this shouldn't be a problem as I want this user to authenticate using the All Users group.
But now that I think about it, perhaps she's authenticating as a different group on the server, and then not being able to get access to the database? How do I find out what group a particular user will authenticate as? (I have searched for this online and found nothing, the terms seem to be too vague as I just keep getting random general security topics.)
Thanks for your help.