CREATE LOGIN RepAcc
WITH PASSWORD = '123456';
USE master;
CREATE USER TestReport FOR LOGIN RepAcc
WITH DEFAULT_SCHEMA = master;
GO
When i click connect object explorer and choose SQL Server Authentication then Type RepAcc as username and password 123456, i get error says can not connect, login is invalid or so. What should i do?
I tried to create the user via wizard also, yet i get same error when trying to login. I need quick help.