Home > Enterprise >  Jmeter Oracle JDBC issue : ORA-09945: Unable to initialize the audit trail file
Jmeter Oracle JDBC issue : ORA-09945: Unable to initialize the audit trail file

Time:03-18

I am trying to connect to Oracle DB from Jmeter yet I receive the error below

java.sql.SQLException: Cannot create PoolableConnectionFactory (ORA-09945: Unable to initialize the audit trail file Linux-x86_64 Error: 28: No space left on device ORA-00604: error occurred at recursive SQL level 1 ORA-12705: Cannot access NLS data files or invalid environment specified )

  • Apache Jmeter 5.3
  • ojdbc14 jar in /lib folder
  • Database URL : jdbc:oracle:thin@IP:PORT:SID
  • JDBC Driver Class : oracle.jdbc.OracleDriver

How to solve this? Thanks

CodePudding user response:

Excuse me, sir, you're really asking how to solve No space left on device issue on StackOverflow?

How about:

Looking into your setup I can see a couple of potential problems as well, i.e.

CodePudding user response:

ojdbc14 is a very old version. You should use either 21c or 19c version of the Oracle JDBC driver. ojdbc8.jar or ojdbc11.jar. Check out the JDBC download page for the latest versions.

  • Related