Question:
Error in running this sql command?
Anjan
2008-02-06 23:23:01 UTC
If the name of a schema object exceeds 30 characters, I am getting an error 'identifier is too long'. Schema objects are tables, clusters, views, indexes, synonyms, tablespaces, and usernames.
Is there any settings to do in Oracle to allow schema name > 30 charecters.

Ex: I am getting error while trying to create a table like
sql>CREATE TABLE AITEC_TB_RADIALEQUILIBRIUM_MIG47_BC( . . .)

sql> Error: Identifier is too long . . .
Three answers:
Jane
2008-02-06 23:45:34 UTC
Why do you want such long names for tables. A small and meaningful name is more easy to access.
anonymous
2008-02-07 19:55:43 UTC
i think no such settings are available........

go for simple why complicated name...............
anonymous
2008-02-07 05:14:34 UTC
sql is unable to handle string...

AITEC_TB_RADIALEQUILIBRIUM_MIG... . . .)



Too long identifier ie string

use small string ..........


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...