Hi all,
can we increase the maximum no of fields for a form, generally Microsoft allows only 1024 fields for a form.
Thanks in Advance Siva
No. The restriction is due to the 1,024 column limit in a SQL Server table:
http://msdn.microsoft.com/en-us/library/ms143432.aspx
This does not appear to have changed with the introduction of SQL Server 2012.
--pogo (pat) @ pogo69.wordpress.com
pogo69 is correct. The maximum number is 1024 and cannot be increased even if you are using SQL 2012.
Perhaps your scenario can be achieved with less fields and potentially more entities?
-Brandon