SSIS Excel 中的百分比列 -> SQL服务器
我正在尝试创建一个 SSIS 包,将 Excel 数据导入到 SQL Server 2000 数据库。
Excel 工作表中的一列采用百分比格式,我希望以字符串格式导入该列,以便它显示 45.22% 而不是 0.4522。
有没有办法在 SSIS 中做到这一点?
I am trying to create a SSIS package that will import Excel data to SQL Server 2000 database.
One of the column in Excel sheet is in Percentage format and I wish to import that column in string format so it displays 45.22% instead of 0.4522.
Is there a way of doing this within SSIS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用派生列根据表达式添加新列:
它将 COL1 乘以 100,将其转换为 WSTR(unicode 字符串)并在末尾添加百分号。
Use derived column to add new column based on expression:
It multiplies COL1 by 100, converts it to WSTR (unicode string) and adds percent-sign at the end.