SqlBulkCopy 最大列数
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜你的主键列是从零自动递增的,并且它的类型是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.