Estoy tratando de importar una tabla de 82k + fila de un acceso db a SQL Server 2008.Asistente para importación y exportación de SQL Server Error
Uso del Asistente de importación y exportación de SQL Server, me sale un error en unos 78k registros ingresó.
Aquí está el error:
Error 0xc0208265: Data Flow Task 1:
Failed to retrieve long data for column "members_notes".
Error 0xc020901c: Data Flow Task 1:
There was an error with output column "members_notes" (41) on output "OLE DB Source Output" (11).
The column status returned was: "DBSTATUS_UNAVAILABLE".
Error 0xc0209029: Data Flow Task 1:
SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR.
The "output column "members_notes" (41)" failed because error code 0xC0209071 occurred, and the error row disposition on "output column "members_notes" (41)" specifies failure on error.
Error 0xc0047038: Data Flow Task 1:
SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.
The PrimeOutput method on component "Source - Query" (1) returned error code 0xC0209029.
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.
La columna members_notes en la base de datos de acceso es un campo memo. En la tabla de SQL Server a la que se transfieren estos datos, he definido el campo como nvarchar (MAX).
He buscado este mensaje de error y he encontrado artículos que sugieren reducir mi SQL db y borrar mis archivos temporales en la computadora que realiza la exportación/importación, ninguno de los cuales funciona.
¿Alguien más ha tenido este problema?
¿Puede arreglar la blockquote para que esté en el código y no tan desordenado? –
Como ya indicó, limpió sus archivos temporales. Hay un [informe de error] [1] pero se ha corregido en SQL Server Integration Services 2008. [1]: http://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=346675 –
Tiene usted intenté dividir su problema, es decir, dividir datos en paquetes de 1000 registros (o más pequeños) o incluso intenté importar solo una fila. – Migol