What is the maximum number of columns in a table in Oracle?What is the maximum number of canvases in a form in forms 6i an forms 9i?

Showing Answers 1 - 22 of 22 Answers

venkat

  • Mar 19th, 2006
 

maximum number of columns in a table is 254

Aditya

  • May 16th, 2006
 

A table can have max of 255 columns

Adarsh S Pazhayampillil

  • Aug 7th, 2006
 

250 - 1600 depending on column types

khaja

  • Aug 7th, 2006
 

It varies from 250 to 1600 depends on column types

  Was this answer useful?  Yes

Lalit Kumar

  • Oct 25th, 2006
 

The maximum number of columns in a table or view are 1000.

  Was this answer useful?  Yes

Nikhil_4_Oracle

  • Mar 15th, 2007
 



Final Answer : 1000 columns/table.

sirih1

  • May 24th, 2011
 

ORA-01792: maximum number of columns in a table or view is 1000
Cause: An attempt was made to create a table or view with more than 1000 columns, or to add more columns to a table or view which pushes it over the maximum allowable limit of 1000. Note that unused columns in the table are counted toward the 1000 column limit.

Action: If the error is a result of a CREATE command, then reduce the number of columns in the command and resubmit. If the error is a result of an ALTER TABLE command, then there are two options: 1) If the table contained unused columns, remove them by executing ALTER TABLE DROP UNUSED COLUMNS before adding new columns; 2) Reduce the number of columns in the command and resubmit.

ambinu

  • Jun 14th, 2011
 

MySQL: Maximum number of columns in one table - 3398; size of a table row - 65534 (BLOB and TEXT not included). Oracle: Unlimited rows@table. Maximum number of columns in one table - 1000. Up to 32 columns in index key. PostgreSQL: Rows - unlimited, columns - 1600; size of a table row - 1.6TB.

venkat

  • Dec 4th, 2011
 

From Oracle 9i it allows maximum 1000 columns in a table. In Oracle 8i, it only allows 256 columns in a table.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions