I've been having troubles in creating new users on the SQL Server. Those were the steps I took:
- Connect to the server via Windows authentication
- Access Security > Logons > Create Logon
- Create a new Logon to use SQL Server authentication
- In each database, create new users (same name as logon). Those users were set Owned Schemas and Membership as
db_datareader
anddb_datawriter
- Close the connection and connect by the user created
After that process, I get the message:
It is not possible to connect to DESKTOP-QMQIHKL:
A connection with the server was successfully establishes, but during the logon process an error occurred. (provider: Shared Memory Provider, error: 0 - There is not a process in the other extreme of the pipe). (Microsoft SQL Server, Error: 233).
I've tried to overcome this error message by:
- Opening SQL Server Configuration Manager and enable the TCP/IP protocol.
- Opening Windows Services and executing both, SQL Server Browser and SQL Server (MSSQLSERVER).
None of that have worked. For that reason, I would like your help in solving this problem.