2016-07-12 1 views
0

데이터를 전송하려고 할 때이 오류가 발생합니다. SSIS에 처음 왔지만 도움이된다면 좋을 것입니다. 오류의 핵심 부분이 SSIS - Sharepoint 원본에서 OLDB 대상으로 데이터를 전송하는 중 오류가 발생했습니다.

"Comments" column. The binding status was "DT_NTEXT". The data flow column type is "DBBINDSTATUS_UNSUPPORTEDCONVERSION". The conversion from the OLE DB type of "DBTYPE_IUNKNOWN" to the destination column type of "DBTYPE_WVARCHAR" might not be supported by this provider. 

그래서 당신은 TEXT 컬럼에 쓰기를 시도하므로

[OLE DB Destination 1 [2]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80040E21. 
An OLE DB record is available. Source: "Microsoft SQL Server Native Client 11.0" Hresult: 0x80040E21 Description: "Multiple-step OLE DB operation generated errors. Check each OLE DB status value, if available. No work was done.". 

[OLE DB Destination 1 [2]] Error: An error occurred while setting up a binding for the "Comments" column. The binding status was "DT_NTEXT". The data flow column type is "DBBINDSTATUS_UNSUPPORTEDCONVERSION". The conversion from the OLE DB type of "DBTYPE_IUNKNOWN" to the destination column type of "DBTYPE_WVARCHAR" might not be supported by this provider. 

[OLE DB Destination 1 [2]] Error: Cannot create an OLE DB accessor. Verify that the column metadata is valid. 

[SSIS.Pipeline] Error: OLE DB Destination 1 failed the pre-execute phase and returned error code 0xC0202025. 

Task Get Merchant Data failed 
+0

원본 열의 내용을 표시 할 수 있습니까? – Mike

+0

그래 SureSELECT [ID] [상태] [Store_No (LinkTitle)]을 [Merchant_No] 는 [주석] [등재] [Third_Party_Introduced_Customer [DBO] FROM . tmp_Merchant 는 – Gomes1985

답변

0

OK (NTEXT이 유니 코드 데이터이기 때문에). 귀하의 의견 출처는 DBTYPE_IUNKNOWN이며 NTEXT 로의 변환 방법을 알지 못해 오류가 발생했습니다.

수정 사항은 원본 연결을 편집하고 변환 할 수있는 데이터 형식을 선언하는 것입니다. 현재 알 수 없음으로 설정되어 있기 때문에 이미이 작업을 수행하지 않았을 것입니다.

그래서 souce 연결을 열고 주석 열의 데이터 유형을 편집하고 적절한 결과를 선택하십시오. NTEXT 또는 WTEXT 형식 일 가능성이 높습니다. 가져 오기시 NTEXT로 변환됩니다.

+0

갈 마이크 고마워. 나는 처음에는 그것을하는 법을 알지 못했지만 나는 변환기를 가지고 놀았고, 당신의 충고를 받아 들여서 성공했습니다. – Gomes1985

+0

훌륭합니다. 내 대답이 도움이된다면 받아 들일 수 있으므로 질문에 답변이 표시됩니다. 비슷한 문제로 다른 사람들이 검색하는 데 도움이됩니다. – Mike

관련 문제