SQL Server 2008 Error 233

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

    I got a way to go around the problem.

    • Open one instance and login using the windows authentication
    • allow sql and windows auth both by right cliking on the db server.
    • Open second instance and login using sql authentication.

    bingo the sql authenticated instance open .. :)

    Actually in this way we cheat the sql authenticated instance as it tries to find an already running instance.. worked fr me.. good luck

提交回复
热议问题