Hello,
I have a table that contains an Image datatype column. I am soliciting for implementations on how to transfer the data on this column to another table that has the same schema.
Suppose "table1" is the name of the original table with Image datatype and "table2" is the table of the schema as "table1".
In my current implementation, what I did is something like (pseudocode)
- SELECT * FROM table1
- Saved the result in a strongly typed dataset with datacolumn for the image column as System.Byte. I tried the System.Type.GetType("SqlDbType.Image") but it didn't work.
- Created an SP that will write this to "table2" but it didn't work as expected.
Suggestions?