All Questions
2 questions
1
vote
2
answers
89
views
SQL command works fine when run manually (SQL Developer) but gives ORA-00922 in Python's oracledb module
I am working with an Oracle SQL database, and I would like to run the command
ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD';
It works fine when I run it from the SQL Developer app manually. ...
0
votes
2
answers
352
views
SQL concurrency overflows for larger tables
I have a simple concurrency script that uses Oracle for the main database. I'm listening into SQL with python-oracledb and have used individual threads to open up a database connection. However, I ...