确定 .mdf 是否需要附加 .ldf

发布于 2024-09-05 03:55:27 字数 158 浏览 2 评论 0原文

我希望能够在尝试附加 .mdf 之前查看它,并确定是否可以在没有 .ldf 的情况下附加它(如果正确分离,则可以这样做)。

目前,我正在尝试附加 .mdf,如果它被错误地分离并且需要 .ldf 重新附加,它将给出一条错误消息,这对我们的用户没有多大帮助。我希望能够给他们更好的错误消息。

I want to be able to look at a .mdf before trying to attach it and determine if it will be possible to attach it without it's .ldf (this can be done if it was detached correctly).

Currently, I am trying to attach the .mdf and if it was detached incorrectly and needs the .ldf to reattach it will give an error message that isn't very helpful to our user. I'd like to be able to give them a better error message.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里°也失望 2024-09-12 03:55:27

您应该只需要 MDF 文件,但它改变了流程。

此帖子应该可以帮助您解决问题。

听起来您所做的是备份 MDF 文件,现在您正尝试使用 rESTORE 命令恢复它。那是行不通的。

要备份数据库,您需要使用
BACKUP DATABASE 命令,而不是
只需复制 MDF 文件即可。备份
DATABASE命令使一个稳定的,
数据库的可靠副本
可以使用 RESTORE 来恢复
命令。复制.MDF文件可以
工作,但它有更多的风险,我
不推荐。

让数据库仅使用
MDF文件,执行命令:

SP_ATTACH_SINGLE_FILE_DB '数据库名称','mdf
文件名',如果有的话
可能的话,这将附上您的
数据库回来。如果它给你错误,
你很可能对此很满意,但是
把它们放在这里,我们会尽力提供帮助
你。

You should only need the MDF file, but it changes the process.

This thread should sort you out.

It sounds like what you did was backed up the MDF file, and now you are trying to RESTORE it using the rESTORE command. That won't work.

To backup a database, you need to use
the BACKUP DATABASE command, not
simply copy the MDF file. The BACKUP
DATABASE command makes a stable,
reliable copy of the database which
can be restored using the RESTORE
command. Copying the .MDF file can
work, but it has many more risks and I
wouldn't recommend it.

To get the DB working with just the
MDF file, execute the command:

SP_ATTACH_SINGLE_FILE_DB 'dbname','mdf
file name' and, if it's at all
possible, that will attach your
database back. If it gives you errors,
you're more than likely SOL on it, but
pust them here and we'll try to help
you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文