首页 > 数据库 > SQL Server > 正文

SQL SERVER 2000 数据库备份与还原

2024-08-31 00:49:15
字体:
来源:转载
供稿:网友

备份数据库,例如:

backup database northwind
   to disk = 'c:/northwind.bak'

还原数据库,例如:

--返回由备份集内包含的数据库和日志文件列表组成的结果集
restore filelistonly
   from disk = 'c:/northwind.bak'

--还原由backup备份的数据库
restore database northwind
   from disk = 'c:/northwind.bak'

--指定还原后的数据库物理文件名称及路径
restore database testdb
   from disk = 'c:/northwind.bak'
   with
   move 'northwind' to 'c:/test/testdb.mdf',
   move 'northwind_log' to 'c:/test/testdb.ldf'

   move 'logical_file_name' to 'operating_system_file_name'
指定应将给定的 logical_file_name 移到 operating_system_file_name。
默认情况下,logical_file_name 将还原到其原始位置。如果使用 restore
语句将数据库复制到相同或不同的服务器上,则可能需要使用 move 选项重
新定位数据库文件以避免与现有文件冲突。可以在不同的 move 语句中指定
数据库内的每个逻辑文件。

--强制还原,加上replace参数,则在现有数据库基础上强制还原。
restore database testdb
   from disk = 'c:/northwind.bak'
   with replace,
   move 'northwind' to 'c:/test/testdb.mdf',
   move 'northwind_log' to 'c:/test/testdb.ldf' 

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表