OXAR
OXAR copied to clipboard
Remove images from the database
We could consider removing images from the database, since EPG is not used.
declare
begin
if dbms_xdb.existsresource('/images')
then
--todo delete; dbms_xdb.deleteresource('/images', dbms_xdb.delete_recursive);
end if;
end;
/