PLS-00412: list of values not allowed as argument to this function or procedure
Cause: A parenthesized list of values separated by commas (that is, an aggregate) was used in the wrong context. For example, the following usage is invalid: WHERE (col1, col2) > (SELECT col3, col4 FROM my_table ...) However, an equal sign can take a list of values and a subquery as left- and right-hand-side arguments, respectively. So, the following usage is valid: WHERE (col1, col2) = (SELECT col3, col4 FROM my_table ...)
Action: Rewrite the expression. For example, the clause WHERE (col1, col2) > (SELECT col3, col4 FROM my_table ...) can be rewritten as WHERE col1 > (SELECT col3 FROM my_table ...) AND col2 > (SELECT col4 FROM my_table ...)
PLS-00413
Custom Search


More Oracle errors
ORA-15161invalid SYS_CLUSTER_PROPERTIES parameter
CLSD-01011OCR cannot determine that the OCR content contains the latest updates. Details in string.
QSM-01307Partition Containment Tracking (PCT) rewrite is not allowed
ORA-09342Detached process terminated by Oracle during shutdown abort
ORA-41649invalid rule condition for a rule class involving composite events
ORA-12345user string lacks CREATE SESSION privilege in database link (linkname string)
ORA-31536cannot support encrypted column string in the source table
ORA-54531invalid orientation for element at element offset
DIA-48150error encountered with set current working directory
ORA-39142incompatible version number string in dump file "string"
TNS-00521Missing keyword
ORA-06035NETDNT: connect failed, insufficient resources
IMG-00580specified format does not support output
DRG-12501null stoplist is not allowed
LSX-00175a complex base within "simpleContent" must have simple content
ORA-29506invalid query derived from USING clause
NNL-00254Server-generated requests currently do not request forwarding
ORA-13007an invalid HEX character was detected
TNS-00554write failed
ORA-12950SYSTEM tablespace specified as default permanent tablespace




TOP 20 Oracle errors
ORA-12504TNS:listener was not given the SERVICE_NAME in CONNECT_DATA
RMAN-20079full resync from primary database is not done
ORA-14411The DDL cannot be run concurrently with other DDLs
ORA-14760ADD PARTITION is not permitted on Interval partitioned objects
ORA-10877error signaled in parallel recovery slave string
ORA-32701Hang detected
ORA-00838Specified value of MEMORY_TARGET is too small, needs to be at least stringM
ORA-16665timeout waiting for the result from a database
ORA-16957SQL Analyze time limit interrupt
ORA-16664unable to receive the result from a database
RMAN-08132WARNING: cannot update recovery area reclaimable file list
ORA-00000normal, successful completion
ORA-16766Redo Apply is stopped
ORA-00837Specified value of MEMORY_TARGET greater than MEMORY_MAX_TARGET
RMAN-08137WARNING: archived log not deleted as it is still needed
DIA-48122error with opening the ADR block file [string] [string]
ORA-47988password should contain at least one numeric and one alphabetic character
IMP-00057Warning: Dump file may not contain data of all partitions of this table
ORA-00001unique constraint (string.string) violated
ORA-55508Invalid input to Flashback Transaction Backout




Your own TOP 20 Oracle errors
PLS-00412list of values not allowed as argument to this function or procedure