SQL Server 2008 Error 233

后端 未结 14 1514
情歌与酒
情歌与酒 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:09

    "A connection was successfully established with the server, but then an error occurred during the login process."

    I was getting this problem from sqllocaldb when used from within Docker. The problem was the Docker image was not allocated enough memory. Increasing the memory actually fixed the problem.

提交回复
热议问题