ORA-00934 group function is not allowed here What causes an ORA-00934 error? One of the group functions, such as AVG, COUNT, MAX, MIN, SUM, STDDEV, or VARIANCE, was used in … Read more
ORA-00936 missing expression What causes an ORA-00936 error? A required part of a clause or expression has been omitted. For example, a SELECT statement may have been entered without a … Read more
ORA-00937 not a single-group group function What causes an ORA-00937 error? A SELECT list cannot include both a group function, such as AVG, COUNT, MAX, MIN, SUM, STDDEV, or VARIANCE, … Read more
ORA-00942 table or view does not exist What causes an ORA-00942 error? The table or view entered does not exist, a synonym that is not allowed here was used, or … Read more
ORA-00947 not enough values What causes an ORA-00947 error? This error occurs when a SQL statement requires two sets of values equal in number, but the second set contains fewer … Read more
ORA-00950 invalid DROP option What causes an ORA-00950 error? A DROP command was not followed by a valid DROP option, such as CLUSTER, DATABASE LINK, INDEX, ROLLBACK SEGMENT, SEQUENCE, SYNONYM, … Read more
ORA-00955 name is already used by an existing object What causes an ORA-00955 error? An attempt was made to create a database object (such as a table, view, cluster, index, … Read more
ORA-00957 duplicate column name What causes an ORA-00957 error? A column name was specified twice in a CREATE or INSERT statement. Column names must be unique within a table, view, … Read more
ORA-01424 missing or illegal character following the escape character What causes an ORA-01424 error? The character following the escape character in LIKE pattern is missing or not one of the … Read more
ORA-01425 escape character must be character string of length 1 What causes an ORA-01425 error? Given escape character for LIKE is not a character string of length 1. How Xynomix … Read more