Mani Ratna
Mani Ratna

Reputation: 911

Exporting images from a SQL Server Table to a Folder using SSIS not working

I am trying to export images from sql server 2012 to a directory using SSIS. I followed the steps as in https://www.mssqltips.com/sqlservertip/2693/export-images-from-a-sql-server-table-to-a-folder-with-ssis/. There appears warning sign in OLE DB Source and when i run my ssis package, it shows one row affected.But when i search for directory it neither creates folder nor saves image. My OlE DB Source :enter image description here

enter image description here

and my export column: enter image description here

and the result: enter image description here

Output is like this: Warning: 0x80208386 at Data Flow Task, OLE DB Source [18]: Rows sent to the error output(s) will be lost. Add new data flow transformations or destinations to receive error rows, or reconfigure the component to stop redirecting rows to the error output(s). Information: 0x4004300A at Data Flow Task, SSIS.Pipeline: Validation phase is beginning. Warning: 0x80208386 at Data Flow Task, OLE DB Source [18]: Rows sent to the error output(s) will be lost. Add new data flow transformations or destinations to receive error rows, or reconfigure the component to stop redirecting rows to the error output(s). Information: 0x40043006 at Data Flow Task, SSIS.Pipeline: Prepare for Execute phase is beginning. Information: 0x40043007 at Data Flow Task, SSIS.Pipeline: Pre-Execute phase is beginning. Information: 0x4004300C at Data Flow Task, SSIS.Pipeline: Execute phase is beginning. Information: 0x40043008 at Data Flow Task, SSIS.Pipeline: Post Execute phase is beginning. Information: 0x40043009 at Data Flow Task, SSIS.Pipeline: Cleanup phase is beginning. SSIS package "C:\Users\magnus_mani\Documents\Visual Studio 2010\Projects\Integration Services Project3\Integration Services Project3\Package.dtsx" finished: Success. The program '[780] DtsDebugHost.exe: DTS' has exited with code 0 (0x0).

Upvotes: 0

Views: 331

Answers (1)

Aneesh
Aneesh

Reputation: 166

Can you make a data conversion (dt_ntext) in between and try?

Upvotes: 0

Related Questions