[Home] [Help]
316: delete from fnd_help_documents d
317: where not exists (select 'x' from fnd_lobs l
318: where l.file_id = d.file_id);
319:
320: delete from fnd_help_targets t
321: where not exists (select 'x' from fnd_help_documents d
322: where t.file_id = d.file_id);
323: commit;
324: end help_cleanup;