Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

Version 1 Current »

This SQL query can be used to quickly check for invalid objects in our applications on development, acceptance or production.

SELECT owner, object_type, object_name
FROM all_objects
WHERE status = 'INVALID'
  • No labels