Descripción: not enough values
Causa: This error occurs when a SQL statement requires two sets of values equal in number, but the second set contains fewer items than the first set. This can occur in a WHERE or HAVING clause in which a nested SELECT returns too few columns as in:
Acción: Check the number of items in each set and change the SQL statement to make them equal.
COMENTARIOS:
por thefusty | 16/04/2007 12:53:03
RE: ORA-00947
Suele ocurrir cuando intentamos hacer un insert sin especificar los campos y la tabla tiene más campos de los que intentamos insertar. La solución es modificar la sentencia insert especificando los campos que deseamos insertar.