Oracle
 sql >> Datenbank >  >> RDS >> Oracle

So exportieren Sie eine Tabelle in das CSV- oder Excel-Format

Verwenden Sie vielleicht das CSV-Modul (aus der Standardbibliothek):

import csv
cursor = connection.cursor() # assuming you know how to connect to your oracle db
cursor.execute('select * from table_you_want_to_turn_to_csv')
with open('output_file.csv', 'wb') as fout:
    writer = csv.writer(fout)
    writer.writerow([ i[0] for i in cursor.description ]) # heading row
    writer.writerows(cursor.fetchall())

Wenn Sie viele Daten haben, entrollen Sie fetchall() in eine Schleife.

Fröhliche Trails!