Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/304.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# SSIS作业突然报告非';不在那里_C#_Ssis - Fatal编程技术网

C# SSIS作业突然报告非';不在那里

C# SSIS作业突然报告非';不在那里,c#,ssis,C#,Ssis,我有一份SSIS的工作,一直很顺利,直到本周。当我查看输出时,它告诉我: Error: 2021-04-21 15:33:08.74 Code: 0xC0047062 Source: Update AI_USER Update AI_USER (Get Admin Data [108]) Description: Failed to compiled scripts contained in the package. Open the package in SSIS Desig

我有一份SSIS的工作,一直很顺利,直到本周。当我查看输出时,它告诉我:

Error: 2021-04-21 15:33:08.74
   Code: 0xC0047062
   Source: Update AI_USER Update AI_USER (Get Admin Data [108])
   Description: Failed to compiled scripts contained in the package. Open the package in SSIS Designer and resolve the compilation errors.
End Error
Error: 2021-04-21 15:33:08.74
   Code: 0xC0047062
   Source: Update AI_USER Update AI_USER (Get Admin Data [108])
   Description: CS1514 - { expected, main.cs, 218, 36
End Error
但是,当我在Visual Studio中看到有问题的行时,我没有看到缺少大括号:

            catch (WebException e) when (e.Status == WebExceptionStatus.Timeout)
            {
                retryCount++;
                System.Threading.Thread.Sleep(5000);
            }
            catch (Exception e)

我不知道该怎么办。有人经历过类似的情况吗?

您正在审阅的代码是否可能与部署的代码不同?那么,发生了什么变化?Bits不会腐烂,所以它会看到有人更新了您身上部署的包,对吗?我认为与服务器的连接不起作用。检查连接字符串并查看正在使用的服务器。如果您使用的是DCHP,则机器的IP地址会定期更改。因此,您应该在conneciton字符串中使用计算机名,而不是IP地址。