2015-12-02 87 views
0

我有.DAT文件,它看起來像下面的格式[沒有列名或標題,只有數據]:||是分隔符;所以,我有20個領域。導入DAT文件內容到SQL Server表使用導入導出嚮導 - 錯誤

worth||8000||AC8000||Tal||100||IN||O||2014-01-09 00:00:00||||N||N||N||Y||2014-01-09 00:00:00||Y||19991011||N||Internal||||N 

我的SQL數據庫表也有20列。

當我使用的導入導出嚮導,我得到如下錯誤:

- Executing (Error) 
Messages 
    Error 0xc02020a1: Data Flow Task 1: Data conversion failed. The data conversion for column "Column 0" returned status value 4 and status text "Text was truncated or one or more characters had no match in the target code page.". 
(SQL Server Import and Export Wizard) 

    Error 0xc020902a: Data Flow Task 1: The "output column "Column 0" (10)" failed because truncation occurred, and the truncation row disposition on "output column "Column 0" (10)" specifies failure on truncation. A truncation error occurred on the specified object of the specified component. 
(SQL Server Import and Export Wizard) 

    Error 0xc0202092: Data Flow Task 1: An error occurred while processing file "H:\servername\Account.20151201.dat\Account.20151201.dat" on data row 109. 
(SQL Server Import and Export Wizard) 

Error 0xc0047038: Data Flow Task 1: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on component "Source - Account_20151201_dat" (1) returned error code 0xC0202092. 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) 

注:我在數據庫表中的所有列有255字符。

請讓我知道,如何解決這個問題呢?我怎樣才能成功導入到我的數據庫。

回答

0

配置與正確的數據類型和數據長度的平面文件源。似乎從文件接收到的數據比你還界定不清,導致截斷數據長度多。

你的第一個錯誤表明您試圖在一列導入的文本比你的數據庫中列的大小(在目標數據庫表)時, 因此更改列大小爲較大的DB: ALTER TABLE你,爲列設置多個字符的VARCHAR(255),

對於第二個錯誤看起來也許有些排在你的DAT文件已少於或多於20列,其不符合您的表,可能在第109行中出現錯誤報告中的一個。 希望它有幫助

+0

感謝您的回覆。我已經將第一列的大小設置爲varchar(max)。而對於第二列,僅有它的20(用||隔開)。任何其他想法? – AskMe

+0

請發送目的地表格的設計,以便我們可以將列與此DAT文件進行比較。 – InkHeart

+0

另外檢查這可能會幫助你:http://stackoverflow.com/questions/1039385/truncation-errors-importing-to-sql-server-2005-from-excel?rq=1 – InkHeart

相關問題