Recently I navigated through the Maximum Capacity Specifications for SQL Server 2008
I found something interesting which says that,
Max columns per 'non wide' table : 1024
Max columns per 'wide' table : 30,000
Where non wide tables are regular database tables and wide table is a table which uses column sets and sparse columns. It still follows the same width restrictions per row i.e. 8019 bytes. So you would typically use it only when most of your columns data in a particular row is NULL.
Refer to below link for more information.
Special Table Types
Reference: DP ( http://dptechnicalblog.blogspot.com/ )
I found something interesting which says that,
Max columns per 'non wide' table : 1024
Max columns per 'wide' table : 30,000
Where non wide tables are regular database tables and wide table is a table which uses column sets and sparse columns. It still follows the same width restrictions per row i.e. 8019 bytes. So you would typically use it only when most of your columns data in a particular row is NULL.
Refer to below link for more information.
Special Table Types
Reference: DP ( http://dptechnicalblog.blogspot.com/ )