Search notes:

ORA-01733: virtual column not allowed here

Creating a table
create table tq84_ora_01733_t (
   id  integer generated always as identity,
   prt varchar2(10),
   txt varchar2(10)
);
… and a view that selects from a subquery that involves the table:
create or replace view tq84_ora_01733_v as
select
   prt,
   txt
from (
   select
      row_number() over (partition by prt order by id desc) rn,
      prt,
      txt
   from
      tq84_ora_01733_t
)
where
   rn = 1;
The following insert statement results in ORA-01733: virtual column not allowed here:
insert into tq84_ora_01733_v values ('A', 'abc');
Cleaning up
drop table tq84_ora_01733_t;

See also

Virtual columns and identifying them in the Data Dictionary.
ORA-54013: INSERT operation disallowed on virtual 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...', 1758201040, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-01733_virtual-column-not-allowed-here(72): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78