SSIS Excel 中的百分比列 -> SQL服务器

发布于 2024-12-17 01:43:39 字数 155 浏览 0 评论 0原文

我正在尝试创建一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可爱暴击 2024-12-24 01:43:39

使用派生列根据表达式添加新列:

(DT_WSTR,20)(COL1 * 100) + "%"

它将 COL1 乘以 100,将其转换为 WSTR(unicode 字符串)并在末尾添加百分号。

Use derived column to add new column based on expression:

(DT_WSTR,20)(COL1 * 100) + "%"

It multiplies COL1 by 100, converts it to WSTR (unicode string) and adds percent-sign at the end.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文