我在运行 SSIS 包的 SQL-Server 代理作业中突然出现错误:
System.Reflection.TargetInvocationException:调用的目标已引发异常。---> System.OverflowException:算术运算导致溢出。在 Microsoft.SqlServer.Dts.Server.DtsServer.RunningPackageConvert(RunningPackage 包,DTSRunningPackage100& 复制) 在 Microsoft.SqlServer.Dts.Server.DtsServer.GetRunningPackages()
SSIS中的相关代码:
Microsoft.SqlServer.Dts.Runtime.Application app = new Microsoft.SqlServer.Dts.Runtime.Application();
RunningPackages pkgs = app.GetRunningPackages(null);
看起来与此类似(未提及解决方案)