Hi all,
I'm new on PL/SQL (I had always worked with SQLServer and MySql) and I need help to understand the best way to import a big text file to DB in order to elaborate the contained informations.
The files that I have to manage contain positional informations and could be composed by millions of rows.
I have to:
- Import the file
- Translate the informations in table format
- Elaborate the data
I think to use one of the following options for the import step:
- UTL_FILE (row by row) this could be useful to insert data directly in table structure
- Use a Data Integrator software like Talend
- Insert file content into a BLOB field and, after this, bring data to destination table
Which is the best way to do this? Are there other best alternatives?
Thanks
Fabio