SQL Server 2008 和 SSIS - 最大列数

发布于 2024-11-17 01:04:44 字数 239 浏览 0 评论 0原文

SQL Server 2008 中的最大列数是多少?我知道至少在 2005 年,限制与行大小有关,这仍然适用吗?

在我定义并填充这个宽得离谱的表之后,我需要针对它编写一个 SSIS 包。 SSIS 对列数的限制是否与 SQL Server 不同?

本质上,我有大量关于一个实体的属性,由于多种原因,这些属性需要存储在一个表中,然后以相同的列宽格式提取,我想确定 SQL Server 2008 中的规则是什么和 SSIS 2008。

What is the maximum number of columns witin SQL Server 2008? I know at least in 2005 the limitations were related to row size, does this still apply?

Right after I define and populate this ridiculously wide table I will need to write an SSIS package against it. Are there different limitations for SSIS for number of columns than there are for SQL Server?

In essence I have a very large number of attributes about an entity that for a number of reasons will need to be stored on one table and then extracted in that same columns wide format and I want to make sure what the rules are within SQL Server 2008 and SSIS 2008.

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

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

发布评论

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

评论(1

↘紸啶 2024-11-24 01:04:44

SQL Server 2008 有 Wide 和 NonWide 的最大值。除非您采取特殊步骤来使用稀疏列,否则您将获得一个非宽表。

每个非宽表的列数 1,024
每个宽表的列数 30,000

行大小限制(需要注意的是,请参阅下面的规格中的详细信息):

每行字节数 8,060

SQL Server 2008 has a max for Wide and NonWide. Unless you've taken special steps to use sparse columns, you've got a NonWide table.

Columns per nonwide table 1,024

Columns per wide table 30,000

Row size limitations (with a caveat, see details in specs below):

Bytes per row 8,060

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