What is the maximum length of a table name in Oracle?

前端 未结 12 1555
不知归路
不知归路 2020-12-07 09:04

What are the maximum length of a table name and column name in Oracle?

12条回答
  •  爱一瞬间的悲伤
    2020-12-07 09:36

    DESCRIBE all_tab_columns

    will show a TABLE_NAME VARCHAR2(30)

    Note VARCHAR2(30) means a 30 byte limitation, not a 30 character limitation, and therefore may be different if your database is configured/setup to use a multibyte character set.

    Mike

提交回复
热议问题