Oracle - Errores y soluciones

Oracle

Ratio: 4 / 5

Inicio activadoInicio activadoInicio activadoInicio activadoInicio desactivado

ORA-00960: ambiguous column naming in select listbases_datos_2

 


 

Cause: A column name in the order-by list matches more than one select list columns.

 

Action: Remove duplicate column naming in select list.

Oracle

Ratio: 4 / 5

Inicio activadoInicio activadoInicio activadoInicio activadoInicio desactivado

ORA-00962: too many group-by / order-by expressionsbases_datos_2

 


 

Cause: The group-by or order-by column list contain more than 1000 expressions.

 

Action: Use 1000 or less expressions in the group-by or order-by list.

Oracle

Ratio: 4 / 5

Inicio activadoInicio activadoInicio activadoInicio activadoInicio desactivado

ORA-00964: table name not in FROM listbases_datos_2

 


 

Cause: The table name referred in the select list is not specified in the from list.

 

Action: Make sure the name is correctly specified and matches one of the names in the from list.

Oracle

Ratio: 4 / 5

Inicio activadoInicio activadoInicio activadoInicio activadoInicio desactivado

ORA-00965: column aliases not allowed for '*'bases_datos_2

 


 

Cause: The statement is trying to alias the * expression in the select list which is not legal.

 

Action: Remove the alias.

Oracle

Ratio: 4 / 5

Inicio activadoInicio activadoInicio activadoInicio activadoInicio desactivado

ORA-00976: Specified pseudocolumn or operator not allowed here.bases_datos_2

 


 

Cause: LEVEL, PRIOR, ROWNUM, CONNECT_BY_ROOT, CONNECT_BY_ISLEAF or CONNECT_BY_ISCYCLE was specified at an illegal location.

 

Action: Remove LEVEL, PRIOR, ROWNUM, CONNECT_BY_ROOT, CONNECT_BY_ISLEAF or CONNECT_BY_ISCYCLE.

Oracle

Ratio: 4 / 5

Inicio activadoInicio activadoInicio activadoInicio activadoInicio desactivado

ORA-00977: duplicate auditing optionbases_datos_2

 


 

Cause: AUDIT or NOAUDIT statement specifies an option more than once

 

Action: Either use ALL with no other auditing options or make sure no option is listed more than once.

Oracle

Ratio: 4 / 5

Inicio activadoInicio activadoInicio activadoInicio activadoInicio desactivado

ORA-00910: specified length too long for its datatypebases_datos_2

 


 

Cause: for datatypes CHAR and RAW, the length specified was > 2000; otherwise, the length specified was > 4000.

 

Action: use a shorter length or switch to a datatype permitting a longer length such as a VARCHAR2, LONG CHAR, or LONG RAW.