I created four tablespaces like this :
CREATE TABLESPACE da_ts;
CREATE TABLESPACE db_ts;
CREATE TABLESPACE bd_bts;
CREATE TABLESPACE be_bts;
I created a partitioned table like this
create table orders_partitioned(id_dnm number, clob_dnm clob)
partition by hash(id_dnm)
(partition p1
tablespace da_ts lob (clob_dnm)
store as (tablespace bd_bts),
partition p2
tablespace db_ts lob (clob_dnm)
store as (tablespace be_bts));
I am able to insert rows into the partitioned table and also able to retrieve them. How do I find out if the lobs are going to the right tablespaces? I mean, is there a way I can determine all the lobs inserted in the database and what tablespaces they are stored in?