TheBugSlayer
Programmer
Dear All,
I have a user who has access to the production server and databases. Same user did not have access to the development environment so I configured him. However, I am not able to find said NT user in the database. I looked under Security in SSMS, at the server and even database levels and couldn't find it.
return nothing. sp_who2 does show an entry for the user's.
It does not look like the user is granted access through a group neither. What could I possibly be missing? Where should I look for the user and why is he able to query some databases if he is nowhere to be found?
Thank you!
MCP SQL Server 2000, MCTS SQL Server 2005, MCTS SQL Server 2008 (DBD, DBA)
I have a user who has access to the production server and databases. Same user did not have access to the development environment so I configured him. However, I am not able to find said NT user in the database. I looked under Security in SSMS, at the server and even database levels and couldn't find it.
Code:
SELECT * FROM sys.server_principals ORDER BY Name
SELECT * FROM sys.database_principals ORDER BY Name
exec sp_helplogins 'domainname\username'
exec sp_helpuser 'domainname\username'
It does not look like the user is granted access through a group neither. What could I possibly be missing? Where should I look for the user and why is he able to query some databases if he is nowhere to be found?
Thank you!
MCP SQL Server 2000, MCTS SQL Server 2005, MCTS SQL Server 2008 (DBD, DBA)