如何在 SQL Server 2005 中打开分离数据库
我尝试打开此目录中的数据库 YourGuruDB1:
D:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data
我转到文件,然后打开文件。然后它告诉我,我必须确保安装数据库。
之前我备份并恢复了数据库,然后将其分离..我不知道程序将数据库放到哪里..
但我想用它的所有存储过程打开它,就像我在 SQL Server 2005 中拥有的任何其他数据库一样
I try to open the database YourGuruDB1 in this directory:
D:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\Data
I go to file and then open file.. Then it tells me, that i must ensure that the database is installed..
Previously I backed up and restored the database, and then detached it..I have no idea where the program dropped the database to..
But I want to open it with all its stored procedures like any other database that i have in SQL Server 2005
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您将其分离,则需要将其附加。
只需右键单击 SQL Server 管理服务器中的“数据库”节点,单击“附加”,导航到您指定的数据文件,然后告诉它附加数据库。
If you detached it, you need to attach it.
Just right click on the "Databases" node in SQL Server Managment Server, click "Attach", navigate to the data file you indicated, and tell it to attach the database.
您必须附加回数据库。
You have to attach back the database.