Error in login to SQL Server

前端 未结 3 2105
眼角桃花
眼角桃花 2021-02-18 17:55

When I want to connect to SQL Server 2008, I get this message:

Cannot connect to server.
Additional Information: Cannot open user default database.

3条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-18 18:13

    This error (Microsoft SQL Server.Error:4064) occurs when the database which is dropped is default for some database user.

    When the user tries to login and their default database is dropped the error shows up.

    Cannot open user default database. Login failed. Login failed for user ‘UserName’. (Microsoft SQL Server, Error: 4064)

    The way to resolve this is given here, summarized below.

    The solution to log on is:

    1. From the Connect to Server dialog, click Options
    2. Change value of Connect to database: to any valid database on the server

    The permanent solution to fix the server is to run SQL like:

    ALTER LOGIN [test] WITH DEFAULT_DATABASE = master
    GO
    

提交回复
热议问题