将图像数据导出到平面文件
我正在尝试使用“导出数据”向导将图像数据从表导出到平面文件。我在 SSIS 中指定了查询“从配置文件中选择图片”,以仅导出“图片”列中的数据。当我运行该包时,出现以下错误:
“输入列”的数据类型 “图片”(26)”是DT_IMAGE,即 不支持。使用 DT_TEXT 或 DT_NTEXT 相反,并将数据转换为,或 到,DT_IMAGE使用数据转换 组件。
如何将数据导出到平面文件
提前致谢。
I'm trying to export my image data from a table to a flat file using "Export Data" wizard. I've specified the query "Select picture from Profile", in SSIS to export only the data in "picture" coloumn. When I run the package, I get the following error:
The data type for "input column
"picture" (26)" 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.
How can I export the data to flat file
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从谷歌偶然来到这里,花了几个小时试图找到答案。这是我所做的,假设您尝试导出的列是“SomeImageField”:
这会将该列输出到名为 SomeImageFieldAsHex 的列中。它将被格式化为十六进制文本。
I stumbled in here from google and spent a few hours trying to find the answer. Here is what I did, assuming the column you are trying to export is 'SomeImageField':
This will output that column into a column named SomeImageFieldAsHex. It will be formatted as hexadecimal text.