ORA-06550: 第 0 行,第 0 列:PLS-00907:无法加载库单元 `COLUMN_NAME`(引用者)
ORA-06550: line 0, column 0: PLS-00907: cannot load library unit `COLUMN_NAME` (referenced by)
所以,我收到了这条错误消息
Started: 9:00:01 AM Error: 2018-01-26 09:33:53.01 Code: 0xC002F210 Source: Run proc SP_MISSING_FILE_CASE_CLOSURE Execute SQL Task Description: Executing the query "begin SP_MISSING_FILE_CASE_CLOSURE; end;" failed with the following error: "ORA-06550: line 0, column 0: PLS-00907: cannot load library unit USAGE.SP_MISSING_FILE_CASE_CLOSURE (referenced by )". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. End Error DTExec: The package execution returned DTSER_FAILURE (1). Started: 9:00:01 AM Finished: 9:33:53 AM Elapsed: 2031.88 seconds. Process Exit Code 1. The step failed.
有时,但有时我的 SSIS 作业运行正常。有人可以为我提供某种解决方案吗?除了始终相同的 PROCEDURE
之外,我看不到它失败的任何模式。
非常感谢任何帮助。
你应该试试这个语法(添加模式)
begin
execute <schema>.SP_MISSING_FILE_CASE_CLOSURE;
end;
所以,我收到了这条错误消息
Started: 9:00:01 AM Error: 2018-01-26 09:33:53.01 Code: 0xC002F210 Source: Run proc SP_MISSING_FILE_CASE_CLOSURE Execute SQL Task Description: Executing the query "begin SP_MISSING_FILE_CASE_CLOSURE; end;" failed with the following error: "ORA-06550: line 0, column 0: PLS-00907: cannot load library unit USAGE.SP_MISSING_FILE_CASE_CLOSURE (referenced by )". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. End Error DTExec: The package execution returned DTSER_FAILURE (1). Started: 9:00:01 AM Finished: 9:33:53 AM Elapsed: 2031.88 seconds. Process Exit Code 1. The step failed.
有时,但有时我的 SSIS 作业运行正常。有人可以为我提供某种解决方案吗?除了始终相同的 PROCEDURE
之外,我看不到它失败的任何模式。
非常感谢任何帮助。
你应该试试这个语法(添加模式)
begin
execute <schema>.SP_MISSING_FILE_CASE_CLOSURE;
end;