PUBLIC / SYS / SYSCAT / PUBLIC / SYSGIS / OUTLN 해당 계정은 시스템 계정 입니다. DBA 권한을 통한 데이터베이스 전체 오브젝트 확인
데이터베이스 시스템 계정을 제외한 오브젝트 정보
select
owner, object_name, object_type
from
dba_objects
where
owner not in ('PUBLIC','SYS','SYSCAT','PUBLIC','SYSGIS','OUTLN');
데이터베이스 유저에 생성된 오브젝트 종류 개수 확인
select
owner, object_type, count(*)
from
dba_objects
where
owner not in ('PUBLIC','SYS','SYSCAT','PUBLIC','SYSGIS','OUTLN')
group by
owner, object_type;