SQL Server 2008 Error 233

后端 未结 14 1508
情歌与酒
情歌与酒 2021-02-05 06:33

I\'m creating new login in SQL Server 2008 with following sql script:

CREATE LOGIN [xyz] WITH PASSWORD=\'xyz\',
            DEFAULT_DATABASE=[master], DEFAULT_LA         


        
14条回答
  •  情深已故
    2021-02-05 07:04

    I was facing the same error.
    I've resolved the error by following below mentioned steps:

    1. Disable named pipes and restart sql services.
    2. After restart sql server I enabled names pipes and did a sql server restart again (Link for Step 1 and 2)
    3. Connect to SQL server via studio.
    4. Right click on SQL instance --> Properties --> Connections --> "Set the Maximum number of 5. concurrent connections to '0' ".
    5. Save the change.
    6. Restart the SQL server if possible. (Link for step 3 to 6)

    I hope this will help someone

提交回复
热议问题