I have data of type image in a normal table which I am trying to export to disk files. Setting up an SSIS package with an Export Column transform appears to be very simple. There is not much to it.
When I run the package, I take the following error:
Error at Data Flow Component [Raw File Destination [73]]: The file name is not properly specified. Supply the path and name to the raw file either directly in the FileName property or by specifying a variable in the FileNameVariable property.
I'm sorry, but I have looked everywhere for a filename property anywhere in this package. If it is there, I sure can't find it.
Here is the query for the data source:
declare @path varchar(100)
set @path = 'c:\images\'
SELECT MM_Content
,@path +CAST(MM_KEY1 AS VARCHAR) + '.' + MM_TYPE AS Path
FROM AIM_APPS.AIM.DBO.MULTIMEDIA
Thanks for your time,
George