Having located some code that needs to be removed from a database that relates to a specific module. Is it safe to remove it from dba_source directly? i.e.
delete from dba_source where name = 'MODULE_NAME';
Or do I have to grab all the procedure and package names and drop those specifically?