0

我创建了一个 sql 作业,其中包含两个步骤来创建数据库备份,即第一步获取数据库备份,第二步将数据库备份复制到网络驱动器。

  • 第一步成功。
  • 第二步失败。

在第 2 步中,我给出了 asoperating system(cmdExec)和命令行中的类型,我提到了 as, robocopy <soure> <destination>但它抛出了错误。

Error:-The process could not be created for step 2 of job 0x7847DBA2AFA7D149A5ED24AA8B3B9FA6 (reason: The system cannot find the file specified).  The step failed.

非常感谢快速帮助。

4

1 回答 1

0

我能想到的几点:

  1. 确保命令中的路径是完全限定的(C:... 等)并将其括在双引号中以避免路径名中的空格问题。将路径粘贴到命令窗口中,并确保 Robocopy 可以正常打开。

  2. 确保运行 SQL Server 实例的帐户(可能是网络服务)有权访问 robocopy 可执行文件。

于 2013-05-28T12:01:00.937 回答