Search notes:

ORA-00947: not enough values

create table tq84_tab (num number, txt varchar2(22), dt date);
insert into  tq84_tab values (42, 'hello world');
Insert statement with missing parantheses after the VALUES keyword:
insert into  tq84_tab (num, txt) values 42, 'hello world'
If only one column were specified, the statement would throw ORA-03001: unimplemented feature.
Cleaning up:
drop   table tq84_tab;

See also

ORA-00913: too many 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-00947_not-enough-value(52): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78