You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Reworking annotation cache - not to use cast(Collect()) on dba_source.
Added filtering of dba_source by test containing annotations.
Added cardinality hint with scaling.
Removed public procedure `config_package` - used only for one unit test.
Fixed naming of procedures.
Performance improvements on collections.
Copy file name to clipboardExpand all lines: development/cleanup.sh
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -15,9 +15,10 @@ drop user ${UT3_USER} cascade;
15
15
begin
16
16
for i in (
17
17
select decode(owner,'PUBLIC','drop public synonym "','drop synonym "'||owner||'"."')|| synonym_name ||'"' drop_orphaned_synonym from dba_synonyms a
18
-
where not exists (select null from dba_objects b where a.table_name=b.object_name and a.table_owner=b.owner )
19
-
and a.table_owner <> 'SYS'
18
+
where not exists (select 1 from dba_objects b where (a.table_name=b.object_name and a.table_owner=b.owner or b.owner='SYS' and a.table_owner=b.object_name) )
0 commit comments