发布网友 发布时间:2022-04-22 05:50
共1个回答
热心网友 时间:2022-05-03 18:21
(2)远程共享某个目录(3)将远程数据备份文件拷贝到本地机中(4)清除远程共享的目录这里主要用到的是sqlserver中内部的函1.清除老的c:/temp2的文件,并新建c:/temp2'文件cnn0.Execute exec master..xp_cmdshell 'rd c:/temp2'cnn0.Execute exec master..xp_cmdshell 'md c:/temp2'2.共享目录:cnn0.Execute exec master..xp_cmdshell 'net share SQLDATABACK2=C:/temp2'3.备份文件cnn0.Execute backup database & s_db_name & to disk='c:/temp2/ & Date & .dat'4.远程复制到指定目录fso.copyfile // & serverName & /SQLDATABACK2/ & Date & .dat, Trim(Text1), True5.清理文件。