您需要将存储过程
修改为
用户定义的
函数,或者反过来.
实现所需内容的一种粗略方法是在批处理脚本中使用exec语句并从函数中调用该批处理脚本.像这样的东西:
create function <functionName>
exec master.sys.xp_cmpshell 'C:\storedProc.bat'
....
....
return @return
end
更多关于xp_cmpshell
on MSDN.
原文链接:https://www.f2er.com/mssql/83396.html