Description
Is your feature request related to a problem? Please describe.
We have a database schema which includes temporary objects - this means objects which are required only for a short time like procedure for upgrades or objects which are still work in progress - and legacy test code. Temporary objects are always prefixed with the username of the author like:
windowsusr_my_table
Test Procedures are prefixed with test_ and cannot be moved to utPLSQL because they do an integration test rather than a unit test as they access and read data from remote systems and therefore need manual checks of the data.
Describe the solution you'd like
We would like to exclude objects using a wildcard like:
windowsusr_*
test_*
Describe alternatives you've considered
I tried to list every object which currently exists and which should be excluded but gave up after about 15 names.
Additional context
We use Oracle 12.1 with Sqldeveloper and installed the utPLSQL plugin.