I am trying to import a million record table into SQL Azure, it imports fine in the local SQL and then i create the same table in Azure with a Clustered Index, but during the data import i get the following series of errors:
·Error 0xc020844b: Data Flow Task 1: An exception has occurred during data insertion, the message returned from the provider is: A transport-level error has occurred
when receiving results from the server. (provider: TCP Provider, error: 0 - An existing connection was forcibly closed by the remote host.)
(SQL Server Import and Export Wizard)
·Error 0xc0047022: Data Flow Task 1: SSIS Error Code DTS_E_PROCESSINPUTFAILED. The ProcessInput method on component "Destination - Consumer" (52) failed with error
code 0xC020844B while processing input "Destination Input" (55). 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 0xc02020c4: Data Flow Task 1: 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 1: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED. The PrimeOutput method on component "Source - Consumer" (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.
My destination settings are:
Name | Value |
---|---|
Destination | .Net Framework Data Provider for SqlServer |
Encrypt | True |
Integrated Security | False |
Password | (Enter the SQL Azure administrator password) |
TrustServerCertificate | True |
User ID | (Enter the SQL Azure administrator username in the format of [username]@[sqlazureservername]) |
Data Source | (Enter the FQDN of your SQL Azure Server) |
Initial Catalog | (Enter the database name where you want to insert data to) |