在sqlplus脚本中,我做到了
unset NLS_LANG
如何在jupyter笔记本中为cx_oracle做同样的事情?
我正在跟踪此示例,但出现了错误。
How can I access Oracle from Python?
DatabaseError: ORA-12705: Cannot access NLS data files or invalid environment specified
答案 0 :(得分:0)
我之前遇到过相同的错误,并且运行了以下代码以通过运行alter命令设置语言。确保您随后提交。
c.execute(u'ALTER SESSION SET NLS_LANGUAGE=American')