SQL Server 2008 Error 233

后端 未结 14 1451
情歌与酒
情歌与酒 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 have not used the script style, but login through GUI I encountered the same error code. I had entered wrong user name and this is why I was getting the Sql Server, Error: 233.

    In order to resolve this, you should input the following information:

    Server Name: MachineName\SQLEXPRESS
    Authentication: SqlServer Authentication
    User Name: Assigned user-name or simply sa
    Password: xyzpqr

    NOTE: Here I have wrote above data for demo purpose only, actual data is your machine & software's properties.

提交回复
热议问题