79252935

Date: 2024-12-04 22:55:45
Score: 1.5
Natty:
Report link

Try use SQLPlus, which can be used to extract data from Oracle7 directly. You could write scripts in SQLPlus to extract data, then use Python to process the exported data (e.g., CSV files).

An Example using python:

import subprocess

command = "sqlplus -S username/password@your_database @your_script.sql" subprocess.run(command, shell=True)

Reasons:
  • No code block (0.5):
  • Low reputation (1):
Posted by: Eduardo Cunha