0

test2次のような名前のテーブルを作成しましたSQL Server 2008 R2

id || ユーザーID|| 時間

tinyint uniqueidentifier time(7)

.csv次のように、単一の行を含むファイルを作成しました

id || ユーザーID|| 時間(7)

1 b64d51a8-852f-40ea-ab4c-080df747214b 00:00:00

次に、SQLインポートウィザードを使用して、この行をデータベーステーブルに挿入します。

次のマッピングを選択すると(以下を参照)、このエラーが発生します:

  Executing (Error)
  Messages
  Error 0xc02020a1: Data Flow Task 1: Data conversion failed. The data conversion for column  "Column 0" returned status value 2 and status text "The value could not be converted because of a potential loss of data.".
 (SQL Server Import and Export Wizard)

  Error 0xc0209029: Data Flow Task 1: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.  
  The "output column "Column 0" (10)" failed because error code 0xC0209084 occurred, and the error row       disposition on "output column "Column 0" (10)" 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 0xc0202092: Data Flow Task 1: An error occurred while processing file    
  "C:\Users\parth\Documents\test2.csv" on data row 1.
  (SQL Server Import and Export Wizard)

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

マッピング:

id(tinyint)->SSISシングルバイトunsignedint

userid(uniqueidentifier)->SSISの一意の識別子

time(7)--->正確なSSISデータベース時間

誰かが私がこれで間違っていることを教えてもらえますか?このエラーを解決する方法はありますか?

前もって感謝します

4

1 に答える 1

1

tinyint宛先にマップするためのソースデータ型としてシングルバイト符号なし整数を使用します。tinyintは1バイトのストレージを使用し、0から255の範囲の値を持っているため、符号なしです。

于 2012-06-06T05:38:00.163 に答える