前言最近公司服务器到期,需要进行数据迁移,而数据库属于多而繁琐,通过图形化界面一个一个备份所需时间成本很大,所以想着写一个sql脚本来执行。
开始
- 数据库单个备份
- 数据库批量备份
- 数据库还原
- 数据库还原报错问题记录
- 总结
1.数据库单个备份
图形化界面备份这里就不展示了,可以自行百度,下面直接贴代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
use master if exists ( select * from sysobjects where id = object_id(n '[backupdataproc]' ) and objectproperty(id, n 'isprocedure' ) = 1 ) drop procedure backupdataproc go create proc backupdataproc @fullname varchar (200) --入参(数据库名) as begin declare @fileflag varchar (50) set @fileflag= 'c:\myfile\database\'+@fullname+' .bak' --备份到哪个路径(c:\myfile\database\)根据自己需求来定 backup database @fullname to disk=@fileflag with init --核心代码 end exec backupdataproc xxx |
执行成功后便会生成一个.bak文件到指定文件夹中,如图
2.数据库批量备份(时间有点长,请等待)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
use master if exists( select * from sys.types where name = 'alldatabasesnametype' ) drop type alldatabasesnametype go create type alldatabasesnametype as table --自定义表类型用于存储数据库名称 ( rownum int , name nvarchar(60), filename nvarchar(300) ) go if exists ( select * from sysobjects where id = object_id(n '[bachbackupdataproc]' ) and objectproperty(id, n 'isprocedure' ) = 1 ) drop procedure bachbackupdataproc go create proc bachbackupdataproc @filepath nvarchar(300) --入参,备份时的目标路径 as begin declare @alldatabasesname as alldatabasesnametype --用于存储系统中的数据库名 declare @i int --循环变量 insert into @alldatabasesname( name ,filename,rownum) select name ,filename,row_number() over( order by name ) as rownum from sysdatabases where name not in ( 'master' , 'tempdb' , 'model' , 'msdb' ) --赋值 set @i =1 --循环备份数据库 while @i <= ( select count (*) from @alldatabasesname) begin declare @fileflag varchar (500) declare @fullname varchar (50) select @fullname = name from @alldatabasesname where rownum = @i set @fileflag=@filepath+@fullname+ '.bak' backup database @fullname to disk=@fileflag with init set @i = @i + 1 end end exec bachbackupdataproc 'c:\myfile\ database \' |
执行结果效果如下图:
3.数据库还原
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
if exists ( select * from sysobjects where id = object_id(n '[reductionproc]' ) and objectproperty(id, n 'isprocedure' ) = 1 ) drop procedure reductionproc go create proc reductionproc @ name nvarchar(200) --入参 数据库名称 as begin declare @diskname nvarchar(500) declare @filelogname nvarchar(100) declare @fileflagdata nvarchar(500) declare @fileflaglog nvarchar(500) set @filelogname = @ name + '_log' set @diskname = 'c:\myfile\database\'+@name+' .bak ' ---(源)备份文件路径 set @fileflagdata=' c:\program files\microsoft sql server\mssql15.mssqlserver\mssql\data\ '+@name+' .mdf '---(目标)指定数据文件路径 set @fileflaglog=' c:\program files\microsoft sql server\mssql15.mssqlserver\mssql\data\ '+@filelogname+' .ldf' ---目标)指定日志文件路径 restore database @ name --为待还原库名 from disk = @diskname ---备份文件名 with move @ name to @fileflagdata, ---指定数据文件路径 move @filelogname to @fileflaglog, ---指定日志文件路径 stats = 10, replace end go exec reductionproc xxx |
执行后便能还原库(我是拿这三个库做测试,截的图可能没什么变化,你们可以尝试下)
4.数据库还原报错问题记录
当然还原的过程可能会遇到一些问题,比如:
1.版本不一样
2.sql sql 逻辑文件'xxxxx ' 不是数据库'yyy'的一部分。请使用 restore filelistonly 来列出逻辑文件名。
版本的话我试过了,高版本可以向下兼容,但是低版本不能向上兼容,可以统一版本来解决(如有更好的解决方案欢迎打扰)
第二个问题呢就是脚本中‘move' 他只能跟逻辑名,而有些数据库的逻辑名并不是数据库名称,所以需要替换一下,
下面是查询数据库逻辑名的sql语句:
1
2
|
use master restore filelistonly from disk= 'd:\sql201database\sence.bak' --根据自己的需求要变更路径 |
如图,
对于这些逻辑名与数据库名称不一致的情况可以单独拿出来重新执行一下即可:
1
2
3
4
5
6
7
|
use master --这里注意要使用master,以免出现待还原库被占用的情况 restore database sence --为待还原库名 from disk = 'd:\sql201database\sence.bak' ---备份文件名 with move 'sence_guangxi' to 'd:\database\data\sence.mdf' , ---指定数据文件路径 move 'sence_guangxi_log' to 'd:\database\data\sence_log.ldf' , ---指定日志文件路径 stats = 10, replace go |
5.总结
数据是无价的,对数据库操作时备份是必须的。
数据是无价的,对数据库操作时备份是必须的。
数据是无价的,对数据库操作时备份是必须的。(重要的事说三遍)
到此这篇关于sql server2019数据库备份与还原脚本,数据库可批量备份的文章就介绍到这了,更多相关sql server2019数据库备份与还原脚本,数据库可批量备份内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!
原文链接:https://www.cnblogs.com/jierou/p/15569537.html