Hi,
Attempting to accomplish the task of getting text data out of a table into an Excel sheet. Have tried varieties of BCP and SQLCMD. Now working with SSIS Import Export Wizard.
Source table looks like this:
CREATE TABLE MyTable ( UserID int, --Username int, Id varchar(max), [Name] varchar(max), First_Name varchar(max), Last_Name varchar(max), Link varchar(max), Birthday varchar(max), Quotes varchar(max), Website varchar(max), Gender varchar(max), Email varchar(max), TimeZone varchar(max), Locale varchar(max), Bio varchar(max), Location varchar(max), Hometown varchar(max), Work varchar(max), Education varchar(max), Sports varchar(max), Languages varchar(max), Inspirational_People varchar(max), Data varchar(max), Verified varchar(max), UpdatedTime varchar(max) )
The operation seems to begin but errors out during the copying process:
Operation stopped... - Initializing Data Flow Task (Success) - Initializing Connections (Success) - Setting SQL Command (Success) - Setting Source Connection (Success) - Setting Destination Connection (Success) - Validating (Success) - Prepare for Execute (Success) - Pre-execute (Success) - Executing (Success) - Copying to `TempFacebookAttributes_N` (Error) Messages * Error 0xc0202009: Data Flow Task: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x00040EDA. (SQL Server Import and Export Wizard) * Error 0xc0209029: Data Flow Task: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. The "input "Destination Input" (99)" failed because error code 0xC020907B occurred, and the error row disposition on "input "Destination Input" (99)" 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 - TempFacebookAttributes_N" (88) 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 - TempFacebookAttributes_N" (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) - Post-execute (Success) - Cleanup (Success) Messages * Information 0x4004300b: Data Flow Task: "component "Destination - TempFacebookAttributes_N" (88)" wrote 41411 rows. (SQL Server Import and Export Wizard)This is driving me crazy. Spent a day on this now and had expected it to be a simple task! All help appreciated :)