Size Limits Does the DBMS enforce table data type or column
Size Limits: Does the DBMS enforce table, data type, or column length level? If tables with lots of fields are needed for the client, this could be an issue.
Solution
Yes, the DBMS enforces table, data type, or column length level. The identifiers must have maximum of 30 characters and maximum number of columns are 1000. For the data types the maximum size increased from 4000 bytes to 32,767 bytes.
The table with lot of fields is not an issue if all the fields belong to the same table. If the data is not related to the table then the data normalization rules are used to store the data in one table.

