I have a requirement to check the space occupied by a specific table per day per system, just a short back ground i have some 10 systems from each system we process the daily etl loads and the counts can be observed based in the date field.
Database oracle 11g
size per GB
example
SYSTEM PROCESS_DATE count(*)
RETAIL 26.02.2021 100
PHARMACY 26.02.2021 200
BANKING 26.02.2021 300
query 1 - to check the daily counts per system
select distinct system,count(*) from AUDIT_SCH.DWH_ADT_TBL
where trunc(process_date)=trunc(sysdate)
group by system
order by count(*) desc;
but what i want is how to capture the space of daily loads consumed per system from this table ? , is this possible
it's confusing checking various suggestions below is the reference
How do I calculate tables size in Oracle
any suggestions with query ?