Can some one tell me the best (fastest) way to send data from a pandas data frame to Oracle? With pandas to_sql, it's depressingly slow due to one insert statement per row.
I tried odo, but cannot get passed a compilation error (construct has no default compilation handler) and documentation is not helping. Here's a related post of mine with a question.
I know there is a sql loader option for Python, but have never run a sub process (does that work in the Jupyter notebook?).
Ultimately, I'm trying to automate loading data from a CSV into Oracle on a monthly basis.