Search notes:

DBMS_ROWID.ROWID_OBJECT

--
--     Create a table with composite partitioning
--        interval - range
--
create table tq84_sub_part (
   dt    date,
   nm    number,
   val   varchar2(20)
)
partition    by range ( dt ) interval (numtoyminterval(1, 'month'))
subpartition by range ( nm )
subpartition template (
   subpartition sub_000 values less than (     250),
   subpartition sub_250 values less than (     500),
   subpartition sub_500 values less than (     750),
   subpartition sub_750 values less than (maxvalue)
)
(
   partition    p_start values less than (date '2020-01-01')
)
;

insert into tq84_sub_part
select
   trunc(date '2020-01-01' + dbms_random.value(0, 100)),
   trunc(dbms_random.value(0, 1000)),
   dbms_random.string('a', 20)
from
   dual connect by level <= 30;

select
   tab.*,
   obj.object_name,
   sub.partition_name,
   sub.subpartition_name
-- dbms_rowid.rowid_object(t.rowid)
from
   tq84_sub_part           tab                                                             join
   user_objects            obj on obj.object_id      = dbms_rowid.rowid_object(tab.rowid)  join
   user_tab_subpartitions  sub on obj.subobject_name = sub.subpartition_name
;

drop table tq84_sub_part;

See also

Determine the name of the partition in which a record is stored.
dbms_rowid

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...', 1758206410, '216.73.216.150', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/packages/dbms/rowid/api/object(80): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78