Hi, experts
ORACLE : 12.1.0.2
SQL> desc dba_tables;
Column Nullable Type Comment
------------------------------ -------- ---------------------------- --------------------------------------------------
OWNER NOT NULL VARCHAR2(128) Owner of the table
TABLE_NAME NOT NULL VARCHAR2(128) Name of the table
....
SQL> create table a012345678901234567890123456789 (c1 char(10));
ORA-00972: identifier is too long
why is the length of table_name in dba_tables 128 ?
Is there any way to increase length limit of table name ?
Thanks in advance