I have a stored procedure that can import MYFILE.CSV into an oracle table.
MYFILE.CSV , comes from a 3rd party, can be put on our server anywhere from
10AM to 3PM.
I need a routine that would check for C:\temp\myfile.CSV, say every 3 minutes. IF file exists, then import file.
Then rename the file. If possible, after file has been imported, stop the routine from checking until tomorrow.
Myfile.CSV file can contain up to 366 records.
Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
PL/SQL Release 11.2.0.3.0 - Production
"CORE 11.2.0.3.0 Production"
TNS for Linux: Version 11.2.0.3.0 - Production
NLSRTL Version 11.2.0.3.0 - Production
What is the best way to do this?
TIA
Steve42