Search notes:

ORA-54013: INSERT operation disallowed on virtual columns

Because the value of virtual columns is calculated, it's not possible to insert (or update) theirs values.
The following attempt to update a virtual column and demonstrates that doing so throws the error message ORA-54013: INSERT operation disallowed on virtual columns:
create table tq84_tab (
   num_1   number,
   num_2   number,
   sum_    as (num_1 + num_2)
);

insert into tq84_tab values (1, 2, 3);

-- Cleaning up:

drop table tq84_tab;

See also

Other Oracle error messages such as
Identifying Virtual Columns in Oracle's Data Dictionary

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...', 1758201005, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-54013_INSERT-operation-disallowed-on-virtual-columns(56): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78