Hi all, first I will apologies if this a simplistic question…. Here goes. I need to learn SQL Server 2005 for work so I have installed and created a DB without much trouble, so far so good. I created a new Login user on this local machine with the following commands
When I try to switch users from within management studio I am unable to connect. Does anyone know why this is? I am not doing something. Thx in advance T
Age is a consequence of experience
Code:
CREATE LOGIN myUser with PASSWORD = 'password'
use Forum
CREATE USER myUser
go
grant connect to myUser
go
Alter login myUser with CHECK_EXPIRATION = off
go
alter LOGIN myUser with CHECK_POLICY = OFF
go
When I try to switch users from within management studio I am unable to connect. Does anyone know why this is? I am not doing something. Thx in advance T
Age is a consequence of experience