How often did I type a query like this to list the invalid objects in a database?
select count(*) from dba_objects where status 'VALID'; -- and user in/not in
Today I learned another way to do the same.
How often did I type a query like this to list the invalid objects in a database?
select count(*) from dba_objects where status 'VALID'; -- and user in/not in
Today I learned another way to do the same.