Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
If you are running a script from SQL*Plus, there is a method to "rm" a file that is visible from the command prompt.
SQL> host erase temp.sql
CREATE or replace PROCEDURE delFile(pServer IN VARCHAR2,
pPort IN INTEGER DEFAULT 21,
pUser IN VARCHAR2,
pPassword IN VARCHAR2,
pFile IN VARCHAR2) is
lBytes INTEGER;
lConnection UTL_TCP.connection;
BEGIN
lConnection := utl_tcp.open_connection(pServer, pPort);
lBytes := UTL_TCP.write_line(lConnection, 'USER ' || pUser);
lBytes := UTL_TCP.write_line(lConnection, 'PASS ' || pPassword);
lBytes := UTL_TCP.write_line(lConnection, 'DEL ' || pFile);
lBytes := UTL_TCP.write_line(lConnection, 'quit');
utl_tcp.close_all_connections;
END;