1. 公司内有多台虚拟机,因为公司提供出来的机器 硬盘总是不够大...所以想到了使用 映射网络驱动器的方式进行备份恢复工作.
学到的方法主要如下:
0. 首先打开sqlcmd 启动命令行界面
1. 打开xp_cmdshell 用来添加网络驱动器访问权限:
方法:
打开高级选项
exec sp_configure ‘show advanced options‘,1
设置完之后 重新reconfigure 一下
reconfigure
go
将xp_cmdshell 权限打开
exec sp_configure ‘xp_cmdshell‘,1 go reconfigure go
2. 增加sqlserver 对共享路径的访问权限:
exec master..xp_cmdshell ‘net use G: \\10.110.6.142\d$ 1qaz2wsx? /user:administrator‘
然后使用ssms恢复即可.
能够访问到具体的路径.