This query is running in DB while user type the query
just 'select * from usr1.'
++++++++++++++++++++++++++++++++++++
select object_name synonym_name, object_name, owner object_owner, status, object_type
from sys.all_objects o
where o.owner =

bject_owner
and o.object_type in ('TABLE', 'VIEW', 'MATERIALIZED VIEW', 'SEQUENCE', 'SYNONYM', 'FUNCTION', 'PROCEDURE', 'PACKAGE', 'TYPE')
and o.object_name not like 'BIN$%'
order by o.object_name, o.object_type
call count cpu elapsed disk query current rows
------- ------ -------- ---------- ---------- ---------- ---------- ----------
Parse 1 0.00 0.00 0 0 0 0
Execute 1 0.06 0.06 0 0 0 0
Fetch 56 245.47 248.05 12687 8779130 0 1377
------- ------ -------- ---------- ---------- ---------- ---------- ----------
total 58 245.54 248.12 12687 8779130 0 1377
++++++++++++++++++++++++++++++++++++