2

上周我在我的机器上创建了一个 ASP.NET Web 应用程序项目。它正在连接到 SQL Server 数据库文件以进行测试。该数据库是在 Visual Studio 的服务器资源管理器部分中创建的,它创建了一个包含所有信息的数据库文件。我正在使用 Windows 身份验证连接到数据库。

最近我的电脑已经迁移到我公司的一个新网络上。现在我不再有权访问数据库文件。我得到的错误是Login failed for user "DOMAIN/USER". 我猜这是因为域发生了变化,我的计算机和数据库服务器位于不同的域中。但是,我无权访问旧域来添加新的登录名或具有访问数据库的权限的用户。

我怎样才能解决这个问题?

4

1 回答 1

1

You cannot get around this, unless an admin is willing to give you a copy of the files from the old drive.

So, you must re-create your database.

Fortunately, if you took proper precautions, this will be easy.

Option 1: If your database is under source control, simply checkout the latest good version of the database.

Option 2: Load the latest backup of the database.

于 2013-02-11T04:14:35.537 回答