You are on page 1of 2

SQL> select count(*) from ffproduser.

c_actuarial_monthly_wrk;

COUNT(*)
----------
34331

SQL> select count(*) from ffproduser.c_actuarial_monthly_cvrg_wrk;

COUNT(*)
----------
108999

SQL> select count(*) from ffproduser.c_out_monthly_connect_wrk;

COUNT(*)
----------
106683

SQL> select count(*) from ffproduser.c_actuarial_monthly_nmaddr_wrk;

COUNT(*)
----------
102363

select owner,count(*) from dba_objects where owner like 'FFPRODUSER%' group by


owner;

select distinct IDNTFR from FFPRODUSER.cp_contract

select * from FFPRODUSER.cp_contract

select
sum(bytes)/1024/1024/1024 as size_in_gig,
segment_type
from
dba_segments
where
owner='FFPRODUSER'
group by
segment_type;

SIZE_IN_GIG SEGMENT_TYPE
----------- ------------------
137.422119 INDEX
.107849121 LOBINDEX
394.562073 TABLE
159.371338 LOBSEGMENT
SIZE_IN_GIG SEGMENT_TYPE
----------- ------------------
137.508179 INDEX
.107849121 LOBINDEX
394.937012 TABLE
159.663208 LOBSEGMENT

You might also like