2012-05-02 30 views
1

メインフレームに接続するためにODBCデータソースを使用するADO.Net接続があります。それがDataReader Sourceに接続されると、Datareaderはただちに失敗します。 SqlCommandでSelect * From(私が使用していない)が列マッピングの下に使用可能な列をすべて正しく表示するため、接続が正しく機能していることを想定しています。単純なフラットファイルにダンプしようとすると、私はこれを取得します。SSIS DataReaderがメインフレームから失敗する

SSIS package "MainframeTest.dtsx" starting. 
Information: 0x4004300A at Data Flow Task, DTS.Pipeline: Validation phase is beginning. 
Information: 0x4004300A at Data Flow Task, DTS.Pipeline: Validation phase is beginning. 
Information: 0x40043006 at Data Flow Task, DTS.Pipeline: Prepare for Execute phase is beginning. 
Information: 0x40043007 at Data Flow Task, DTS.Pipeline: Pre-Execute phase is beginning. 
Information: 0x402090DC at Data Flow Task, Flat File Destination [191]: The processing of file "C:\Documents and Settings\BBSA322\Desktop\LogFile.txt" has started. 
Information: 0x4004300C at Data Flow Task, DTS.Pipeline: Execute phase is beginning. 
Error: 0xC02090F5 at Data Flow Task, DataReader Source [1]: The component "DataReader Source" (1) was unable to process the data. 
Error: 0xC0047038 at Data Flow Task: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on component "DataReader Source" (1) returned error code 0xC02090F5. The component returned a failure code when the pipeline engine called PrimeOutput(). The meaning of the failure code is defined by the component, but the error is fatal and the pipeline stopped executing. There may be error messages posted before this with more information about the failure. 
Error: 0xC0047021 at Data Flow Task: SSIS Error Code DTS_E_THREADFAILED. Thread "SourceThread0" has exited with error code 0xC0047038. There may be error messages posted before this with more information on why the thread has exited. 
Error: 0xC0047039 at Data Flow Task: SSIS Error Code DTS_E_THREADCANCELLED. Thread "WorkThread0" received a shutdown signal and is terminating. The user requested a shutdown, or an error in another thread is causing the pipeline to shutdown. There may be error messages posted before this with more information on why the thread was cancelled. 
Error: 0xC0047021 at Data Flow Task: SSIS Error Code DTS_E_THREADFAILED. Thread "WorkThread0" has exited with error code 0xC0047039. There may be error messages posted before this with more information on why the thread has exited. 
Information: 0x40043008 at Data Flow Task, DTS.Pipeline: Post Execute phase is beginning. 
Error: 0xC0047018 at Data Flow Task, DTS.Pipeline: component "DataReader Source" (1) failed the post-execute phase and returned error code 0x8007000E. 
Error: 0xC0047018 at Data Flow Task, DTS.Pipeline: component "DataReader Source" (1) failed the post-execute phase and returned error code 0x8007000E. 
Information: 0x402090DD at Data Flow Task, Flat File Destination [191]: The processing of file "C:\Documents and Settings\BBSA322\Desktop\LogFile.txt" has ended. 
Information: 0x40043009 at Data Flow Task, DTS.Pipeline: Cleanup phase is beginning. 
Error: 0xC004701B at Data Flow Task, DTS.Pipeline: component "DataReader Source" (1) failed the cleanup phase and returned error code 0x8007000E. 
Information: 0x4004300B at Data Flow Task, DTS.Pipeline: "component "Flat File Destination" (191)" wrote 0 rows. 
Error: 0xC0047037 at Data Flow Task, DTS.Pipeline: component "DataReader Source" (1) failed during shut down and returned error code 0x8007000E. A component failed to release its interfaces. 
Task failed: Data Flow Task 
Warning: 0x80019002 at MainframeTest: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED. The Execution method succeeded, but the number of errors raised (9) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors. 
SSIS package "MainframeTest.dtsx" finished: Failure. 
+1

メインフレームのデータベースとは何ですか? –

+0

ソースRDBMSのデータ型は何ですか?これらはデータフローの列にどのようにマップされますか?トランザクションレベルをデフォルトの[サポート済み]から[必須]に変更しましたか? – billinkc

+0

すべてがフラットファイルと同じDT_WSTRであり、トランザクションレベルは引き続きサポートされています。正直なところ、この時点では、メインフレームから何かを取得しようとしているだけなので、2つの列を引き出すだけです。 – Aerowind

答えて

関連する問題