Link to home
Create AccountLog in
Avatar of Tasburath
Tasburath

asked on

User name grayed out in SQL Server 2005 Server Management Studio

I am running the Microsoft SQL Server Management Studio for SQL 2005 on my local workstation.

When I start it, username is grayed out when choosing windows authentication as the Authentication mode.

Is there a way to select a different user name for authentication?
ASKER CERTIFIED SOLUTION
Avatar of ptjcb
ptjcb
Flag of United States of America image

Link to home
membership
Create a free account to see this answer
Signing up is free and takes 30 seconds. No credit card required.
See answer
Avatar of Guy Hengel [angelIII / a3]
>Is there a way to select a different user name for authentication?
not when using windows authentication. using windows authentication means that your sql server will take your current windows login.

if you want to use a different login, you have to login with a different windows account, or, which might be more useful, use the "RunAs" method to start your management studio with the credentials of another windows account:
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/runas.mspx?mfr=true
Avatar of Tasburath
Tasburath

ASKER

Thanks guys