Search notes:

ORA-01410: invalid ROWID

create table tq84_A (val number);
create table tq84_B (val number);

insert into tq84_A values (1);
insert into tq84_A values (2);
The following statement throws ORA_01410: invalid ROWID:
select * from tq84_B where rowid = (select rowid from tq84_A where val = 1);
Cleaning up:
drop table tq84_A;
drop table tq84_B;

See also

rowid
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...', 1759612610, '216.73.216.149', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-01410_invalid-ROWID(51): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78