SQL Server 2005中发生了系统错误85

时间:2013-03-22 06:09:15

标签: sql sql-server sql-server-2005

我正在使用以下代码从SQL Server执行批处理文件:

exec sp_configure 'show advanced options', '1'
reconfigure
exec sp_configure 'xp_cmdshell','1'
reconfigure

exec xp_cmdshell '" D:\network.bat"'

并且neywork.bat包含以下命令

rem disconnect and re-set upn network drive connection
net use z: /d /yes
net use z:\\mlisfile07

此处z:映射到其他路径,但在输出中显示为

  

无法找到网络连接
  系统错误85已发生

2 个答案:

答案 0 :(得分:1)

您在驱动器盘符和网络路径之间缺少空格:

net use z: \\mlisfile07
         ~~~

答案 1 :(得分:0)

可能的原因是您登录的SQL-SERVER用户没有管理权限。

请查看:http://support.microsoft.com/kb/253821