Home > Database > Mysql Tutorial > 从mdf文件恢复sql server数据库

从mdf文件恢复sql server数据库

WBOY
Release: 2016-06-07 16:20:30
Original
1318 people have browsed it

1.新建同名数据库。 2.把test数据设置为脱机。 3.删除其日志文件test_Data.LDF,不删除后边的过程执行通不过。 4.在查询分析器中以超级用户登入,执行以下存储过程,必须以超级用户登入,这是系统级存储过程。 EXEC sp_detach_db @dbname = 'test'EXEC sp_att

   1.新建同名数据库。

  2.把test数据设置为脱机。

  3.删除其日志文件test_Data.LDF,不删除后边的过程执行通不过。

  4.在查询分析器中以超级用户登入,执行以下存储过程,必须以超级用户登入,,这是系统级存储过程。

  EXEC sp_detach_db @dbname = 'test'EXEC sp_attach_single_file_db @dbname = 'test', @physname = 'E:WebDemotest_Data.MDF'

  5.把test数据设置为联机。

  6.刷新数据库,表出来了,数据完好。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template