SQL Server 2008 Error 233

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

    Looks like you're trying to connect using named pipes, but SQL Server is not listening on that protocol. See MSDN.

    The two fixes MSDN suggests are:

    • Connect using TCP/IP, or use the SQL Server Configuration Manager to enable remote connections using named pipes.
    • Using SQL Server Configuration Manager on the client computer, move TCP before named pipes in the protocol order list.

提交回复
热议问题