We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa9d273 commit 4e82973Copy full SHA for 4e82973
source/uninstall_synonyms.sql
@@ -15,10 +15,10 @@ begin
15
and not exists (select 1 from all_objects o where o.owner = s.table_owner and o.object_name = s.table_name)
16
)
17
loop
18
- i := i + 1;
19
begin
20
execute immediate 'drop '||syn.syn_name;
21
dbms_output.put_line('Dropped '||syn.syn_name||' for object '||syn.for_object);
+ i := i + 1;
22
exception
23
when others then
24
dbms_output.put_line('FAILED to drop '||syn.syn_name||' for object '||syn.for_object);
0 commit comments