Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2008 Forums
 SSIS and Import/Export (2008)
 From ASCII String to Image column

Author  Topic 

GregDDDD
Posting Yak Master

120 Posts

Posted - 2012-11-20 : 12:01:09
Someone gave me a few rows of data exported from a table. This was given to me in an Excel 2008 format (*.xlsx) and SQL Server would not import it because it was missing some library. All I really need is a single row so I can do a little programming until I can get access to the live db.

Really, I only need a half dozen columns so I exported to a CSV and tried to import from there but there is an IMAGE data type column that is causing me problems and I don't have access to create an SSIS package on this development system.

I then tried creating a INSERT query to just get the one row with the columns I needed and that is where I am stuck now. The CAST call shows only a small fraction of the string that came out of the Excel spreadsheet for the column. It goes on for hundreds of characters.

Greg

INSERT INTO [TestDB].[dbo].[Test_Table]
([queue_id]
,[enterprise_id]
,[practice_id]
,[agent_name]
,[agent_type]
,[state]
,[internal_msg])
VALUES
(NEWID()
,'00001'
,'00001'
,'00001'
,'00001'
,'00001'
,CAST('0x3C6952454D20766...' AS IMAGE)
   

- Advertisement -