Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. begin
  2. for c_links in (select '@'||db_link as db_link from ALL_DB_LINKS)
  3. loop
  4. dbms_output.put_line('search for link: '||c_links.db_link);
  5. for c_source in (select * from all_source s
  6. where s.text like '%'||c_links.db_link||'%')
  7. loop
  8. dbms_output.put_line('link '||c_links.db_link || 'is used in: ' || c_source.name);
  9. end loop;
  10. end loop;
  11. end;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement