This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import getpass | |
import os | |
import traceback | |
import oracledb | |
un = '' | |
cs = '' | |
pw = getpass.getpass(f'Enter password for {un}: ') | |
try: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# parallelselect.py | |
# | |
# [email protected], Feb 2023 | |
# | |
# This may or may not be faster than a single thread statement that | |
# reads the whole table. | |
# | |
import csv | |
import os |
OlderNewer