Click here to Skip to main content
15,881,709 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
how to export all columns types and images from one table database domain server (SQL 2005) to different table database domain server (SQL 2012)?

What I have tried:

SSMS export.
error message need to convert images.

Messages
* Error 0xc0208030: Data Flow Task 1: The data type for "Destination - certificate_sutqa1_txt.Inputs[Flat File Destination Input].Columns[Image]" is DT_IMAGE, which is not supported. Use DT_TEXT or DT_NTEXT instead and convert the data from, or to, DT_IMAGE using the data conversion component.
(SQL Server Import and Export Wizard)
Posted
Comments
David_Wimbley 2-Sep-16 18:55pm    
Your error message tells you your problem pretty clearly. Im assuming by SSMS you mean SSIS is how you are doing the export/import.

Your destination is of type DT_IMAGE but it wants you to use DT_TEXT or DT_NTEXT. You set that DT_TEXT value in SSIS in your target/destination table.

Remember, we don't have access to your computer so vague issues like this are not easy to help you with. This one however, is pretty easy to fix if you read your error message.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900