Oracle 12c system views with invalid status
Hi,
Using below query i get multiple views/objects with invalid status : (oracle 12.1.0.1)
select object_type, owner, object_name, last_ddl_time
from sys.dba_objects where
status = 'INVALID'
and owner in ('SYS','SYSTEM')
order by 1;
e.g
DBA_HIST_INSTANCE_RECOVERY | |
DBA_HIST_IC_DEVICE_STATS | |
DBA_HIST_IC_CLIENT_STATS | |
DBA_HIST_FILESTATXS | |
DBA_HIST_FILEMETRIC_HISTORY | |
DBA_HIST_EVENT_NAME | |
DBA_HIST_EVENT_HISTOGRAM | |
DBA_HIST_ENQUEUE_STAT |
How can i resolve this issue nad recompile these views/objects?
Best regards,
Mateusz