I have installed Clover ETL server(3.2.1) database on Linux. Now I want configure it to connect to Oracle database.
According to doc, I change the config.properties under /WEB-INF as below
I also add oracle 11g database home jdbc to OS CLASSPATH
# ========================= Oracle
jdbc.driverClassName=oracle.jdbc.OracleDriver
jdbc.url=jdbc:oracle:thin:@hostname:1521:dbname
jdbc.username=userid
jdbc.password=pssword
jdbc.dialect=org.hibernate.dialect.Oracle9Dialect
but I can’t work. any comments will be appreciated.
Thanks