Search notes:

ORA-00913: too many values

create table tq84_tab (num number, txt varchar2(10), dt date);
The following statement throws ** because more columns are selected than the destination table has:
insert into tq84_tab values (1, 42, sysdate, 'xyz');
This statement runs successfully:
insert into tq84_tabx values (1, 42, sysdate);
Cleaning up:
drop   table tq84_tab;

Invisible columns

When inserting a value into a invisible column, the column name must be stated
create table tq84_ora_00913 (
   vis   integer,
   hid   varchar2(20) invisible
);
 
insert into tq84_ora_00913 values (42, 'hello world');
--
---ORA-00913: too many values
 
insert into tq84_ora_00913 (vis, hid) values (42, 'hello world');
--
---1 row inserted.

drop   table tq84_ora_00913;

See also

ORA-00947: not enough values
ORA-01789: query block has incorrect number of result columns
Other Oracle error messages

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759414190, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-00913_too-many-values(72): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78