实现所需内容的一种粗略方法是在批处理脚本中使用exec语句并从函数中调用该批处理脚本.像这样的东西:
create function <functionName> exec master.sys.xp_cmpshell 'C:\storedProc.bat' .... .... return @return end
更多关于xp_cmpshell on MSDN.
xp_cmpshell