Search notes:

SQLPATH - trx

trx.sql shows some information that are related to current transactions.
select
   cast(ses.osuser as varchar2(30)) osuser,
   ses.sid,
   ses.serial#,
-- trx.addr          trx_addr,
-- ses.saddr,
   trx.ses_addr,
-- This mm/dd/yy is probably the worst possible formats...
-- to_char(to_date(trx.start_time, 'mm/dd/yy hh24:mi:ss'), 'dd.mm.yyyy hh24:mi:ss') start_time,
-- However, newer versions of Oracle seem to have a date-format:
   cast(to_char(trx.start_date, 'yyyy-mm-dd hh24:mi:ss') as varchar2(19)) start_date,
   trx.used_ublk,
   trx.used_urec
from
   v$session     ses join
-- v$transaction trx on ses.taddr = trx.addr
   v$transaction trx on ses.saddr = trx.ses_addr;
Github repository Oracle-SQLPATH, path: /trx.sql

See also

Oracle: files for ORACLE_PATH / SQLPATH

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...', 1758198569, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/SQL-Plus/sqlpath/trx(57): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78