0

データベース内のいくつかのテーブルを結合しましたが、結合したテーブルを Excel スプレッドシートにエクスポートして別の DB にインポートしようとはしていません。ただし、理解できないエラーが表示されます(SQLの知識は限られています)

エラーは次のとおりです。

Copying to `RDBMissingCandidates` (Error)
Messages
Error 0xc0202009: Data Flow Task 1: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
An OLE DB record is available.  Source: "Microsoft JET Database Engine"  Hresult: 0x80004005  Description: "Spreadsheet is full.".
 (SQL Server Import and Export Wizard)


Error 0xc0209029: Data Flow Task 1: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.  The "Destination - RDBMissingCandidates.Inputs[Destination Input]" failed because error code 0xC020907B occurred, and the error row disposition on "Destination - RDBMissingCandidates.Inputs[Destination Input]" specifies failure on error. An error occurred on the specified object of the specified component.  There may be error messages posted before this with more information about the failure.
 (SQL Server Import and Export Wizard)

Error 0xc0047022: Data Flow Task 1: SSIS Error Code DTS_E_PROCESSINPUTFAILED.  The ProcessInput method on component "Destination - RDBMissingCandidates" (76) failed with error code 0xC0209029 while processing input "Destination Input" (87). The identified component returned an error from the ProcessInput method. The error is specific to the component, but the error is fatal and will cause the Data Flow task to stop running.  There may be error messages posted before this with more information about the failure.
 (SQL Server Import and Export Wizard)

Error 0xc02020c4: Data Flow Task 1: The attempt to add a row to the Data Flow task buffer failed with error code 0xC0047020.
 (SQL Server Import and Export Wizard)

Error 0xc0047038: Data Flow Task 1: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on Source - RDBMissingCandidates returned error code 0xC02020C4.  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.
 (SQL Server Import and Export Wizard)
4

1 に答える 1

1

問題は、Excel にエクスポートしようとするデータの量にありました。それを処理するには多すぎました。行を 10,000 のチャンクでエクスポートするクエリを作成しました。私も着手したので、私は今達成しました。

于 2013-08-23T09:10:17.350 に答える