Reputation: 14296
I don't have time to write a perl or anything like that nor do I have admin access to the back end, so how can I get data from a file on the intranet (http://) and parse it to create a table? Maybe somehow via PL/SQL? Keep in mind I don't have much admin access.
Upvotes: 0
Views: 1522
Reputation: 1549
Create an external table that references your CSV file. That means you can run select statements on the file from within Oracle.
Upvotes: 0
Reputation: 231661
If you want it to be completely automated
DBMS_SCHEDULER
or DBMS_JOB
package to schedule the jobThe Oracle database account you're using will need to be granted access to all of these packages.
Upvotes: 4
Reputation: 2450
You may download the file into your host machine and then use SQL*Loader to populate a table.
Other ways there are some wizards that may be easier than SQL*Loader, if you are using IDEs like PLSQLDeveloper(Tools->Text Importer) or SQLDeveloper(right click on Tables-> Import Data).
Upvotes: 0