generated excel from SSIS but getting quote in every column?(从 SSIS 生成 excel 但在每一列中都得到报价?)
问题描述
我已经从SSIS包中生成并成功
.但是每一列
都有额外的'
(引号)标记,为什么会这样?
I have generated and excel from SSIS package
successfully.
But every column
is having extra '
(quote) mark why is it so?
我的源sql表如下
Name price address
ashu 123 pune
jkl 34 UK
在我的 sql table
中,我将 all column
作为 varchar(50)
数据类型.在 Excel Manager
中创建表格时Excel Destination
将所有列都设为相同的 varchar(50)
数据类型.
In my sql table
i took all column
as varchar(50)
datatype.
In Excel Manager
when it is going to create table
Excel Destination
took all column as same varchar(50)
datatype.
在Data Flow
中,我使用了Data Conversion Conversion
来防止unicode
转换错误.
And in Data Flow
I have used Data Conversion transformation
to prevent unicode
conversion error.
请建议我需要更改的地方以获取 excel 文件中的清晰列.
Please advice where i need to change to get the clear columns in excel file.
推荐答案
您可以创建一个 模板 Excel 文件,在其中指定所有列类型(从常规更改为文本)和标题将需要.将其存储在 /Template
目录中,并将其复制到 SSIS 包中需要它的位置.
You could create a template Excel file in which you have specified all the column types (change to Text from General) and headers you will need. Store it in a /Template
directory and have copy it over to where you will need it from within the SSIS package.
在您的 SSIS 包中:
In your SSIS package:
- 使用脚本组件将Excel模板文件复制到选择的目录中.
- 以编程方式更改其名称并将整个文件路径存储在将在相应数据流任务中使用的变量中.
- 为您的 Excel 连接管理器使用表达式生成器.设置要从变量中检索的 ExcelFilePath.
- Use Script Component to copy Excel Template file into directory of choice.
- Programatically change its name and store the whole filepath in a variable that will be used in your corresponding Data Flow Task.
- Use Expression Builder for your Excel Connection Manager. Set the ExcelFilePath to be retrieved from your variable.
这篇关于从 SSIS 生成 excel 但在每一列中都得到报价?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 SSIS 生成 excel 但在每一列中都得到报价?
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01
- 更改自动增量起始编号? 2021-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01