ORA-30728: maximum number of columns exceeded
Cause: Adding referential constraint on a REF column requires the the creation of an additional column.
Action: Drop some columns and retry the operation.
Oracle ORA-30728 错误表明当前数据库表中列的数量超出允许的最大值。
ORA-30728: MAXIMUM NUMBER OF COLUMNS EXCEEDED
Cause: More than 1000 columns have been created in the table.
Action: The maximum number of columns allowed in an Oracle table is 1000. Remove any unused columns and try again.
当人们尝试创建一个超过1000列的表时,就会收到ORA-30728错误。在一个表中添加两个新的列也有可能发生这个错误。
1. 找出表中具有最多列的表,并统计其中列的数量。
2. 删除不再使用的列,以减少列的数量至小于1000列。
3. 再次尝试创建或修改时,确定还有至少1000列的可用空间。
4. 如果仍然收到ORA-30728错误,请联系你的技术支持人员。