SqlBulkCopy 最大列数

发布于 2024-11-03 02:29:22 字数 167 浏览 3 评论 0原文

我有一个 SQL Server 2008 数据库,其中有一个表,其中有 575 列。我有一个与该表匹配的 CSV 文件。

当我使用 SqlBulkCopy (.NET 4) 时,仅填充前 256 列。其余的则插入空值。还有其他人遇到过这个问题吗?

谢谢, TS3

I have a SQL Server 2008 database with a table that has 575 columns in it. I have a CSV file that matches the table.

When I use SqlBulkCopy (.NET 4), only the first 256 columns get populated. The rest get nulls inserted into them. Has anyone else experienced this issue?

Thanks,
ts3

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

白云不回头 2024-11-10 02:29:22

我猜你的主键列是从零自动递增的,并且它的类型是tinyint。如果是这样,那么您应该将该列上的主键更改为整数或可以容纳更多值的值。

I'm going to guess that your primary key column is autoincrementing from zero and it is of type tinyint. If so then you should change your primary key on that column to be an integer or something that can hold more values.

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