2009-06-23 2 views
0

Я пытался импортировать таблицу из Oracle 10G в SQL Server 2005 с помощью мастера импорта задач и я получаю эту ошибку:Ошибка импорта на даты (импорт из Oracle 10G в SQL Server 2005)

- Copying to [PersonDB].[PEOPLE] (Error) 
Messages 
Error 0xc0202009: Data Flow Task: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. 
An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80004005 Description: "Invalid character value for cast specification". 
(SQL Server Import and Export Wizard) 

Error 0xc020901c: Data Flow Task: There was an error with input column "EFFCHGDT" (416) on input "Destination Input" (269). The column status returned was: "Conversion failed because the data value overflowed the specified type.". 
(SQL Server Import and Export Wizard) 

Error 0xc0209029: Data Flow Task: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "input "Destination Input" (269)" failed because error code 0xC020907A occurred, and the error row disposition on "input "Destination Input" (269)" 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: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "Destination - PEOPLE" (256) failed with error code 0xC0209029. 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 0xc0047021: Data Flow Task: SSIS Error Code DTS_E_THREADFAILED. Thread "WorkThread0" has exited with error code 0xC0209029. There may be error messages posted before this with more information on why the thread has exited. 
(SQL Server Import and Export Wizard) 

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

Error 0xc0047021: 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. 
(SQL Server Import and Export Wizard) 

Я предполагаю, что это связано с полем даты в оракуле. Я запускал тот же процесс на SQL Server Express 2008, и он импортировался без каких-либо ошибок.

Кто-нибудь знает, как я могу заставить процесс импорта работать с SQL Server 2005?

Заранее спасибо

ответ

1

вы, вероятно, с использованием новых dataypes даты в SQL Server 2008, которые не существуют в 2005 году, как datetime2. В SQL Server 2005 Дата и время тип данных только возвращается к 1 января 1753

так что вы должны либо хранить их в виде строки в 2005 году, или изменить его на 1/1/1900

или

использования SQL 2008 с правильными типами данных

взглянуть на это, как вы можете видеть, что первая дата не является действительным

select isdate('15000101'), isdate('17530101'),isdate('20080101') 

 Смежные вопросы

  • Нет связанных вопросов^_^