Import driver Vertica JDBC into FlyWay - jdbc

I'm looking into FlyWay 6.3 and there is no support with Vertica 9.X
There is still this issue open:
https://github.com/flyway/flyway/issues/1855
Looking into the documentation I can import into the drivers directory the JDBC of Vertica.
My question is:
If I try do it by my self I'll find any problem?
Are there still some backend problem that needs to be fixed?

Unfortunately Vertica 9 support was removed in 2017. Flyway won't load JDBC drivers for databases it doesn't support.
There is a Pull Request that re-introduces support. So you could try building Flyway from that fork.

Related

Oracle19c with AIX server, JDK7

Our application is using JDK7, websphere and is hosted on AIX box.
Recently we upgraded to oracle 19c from 12c. After this, application server does not start.
We do not see any error in startup logs. All application modules do not load, hence server does not come up.
We tried commenting all unnecessary modules in ILSStartupDef.xml, but same issue.
JDBC jar that we are using is ojdbc7-12.1.0.2.0-p0.jar.
Can someone please help ? Any config changes that we may be missing ? We dont want to upgrade to java8 unless its absolutely necessary.
Can you confirm that the database connexion test on the console is working properly ?
Note : Upgrading to Java 8 can be challenging, but Java 7 is no more supported.
Based on this document from IBM :
https://www.ibm.com/support/pages/websphere-application-server-support-policy-jdbc-databases-and-drivers
That being said, yes we do support Oracle 18C and 19C in WebSphere Application Server 8.5.5.X and V9.0.x but you must aware of this following.
We dont test WebSphere Application Server with each and every release of Oracle database. Please make sure you do the test before moving to production.
I believe the oracle 18C or later driver supports java 8 or later release only, if so please make sure WAS java level is also java 8. Java 8 is supported in 8.5.5.9 or later release.
If you ever see this issue, please consider upgrading WAS and do the test again. This issue is fixed in 8.5.5.13 or later release.
Good Luck
From Oracle perspective, please check this post :
Oracle 19c compatibility with jdk7
According to the Oracle JDBC FAQ (Question "What are the Oracle JDBC releases Vs JDK versions?"), only the Java versions you listed (Java 8 to 11) are supported for Oracle 19c.
I would advise to do the assessment for migrating to Java 8, using Transformation Advisor.
Good Luck
If you have upgraded the database server version to 19c then, it is recommended to upgrade the JDBC driver to the same version. So, you should use 19c JDBC driver.
19c JDBC driver requires JDK8 or JDK11. So, it is time to upgrade the JDK version as well as the JDBC driver as well.

how to update snowflake driver in Talend open studio 7.2

Snowflake has recently updated launched JDBC Driver 3.12.x . However the talend open studios is still have 3.6.3 JDBC jar.
Is there a mechanism in talend to change the JDBC driver?
I tried updating the xml file but still the JDBC driver my job was picking up 3.6.3
You could use the Talend/Modules view to modify the JDBC driver, using a custom MVN URI. This is done at the project level.
You said it's picking 3.12x. I am assuming its a typo from your side.
What component you are using to connect to snowflake using talend ?
If this is not the tSnowflakeConnection.
Then you have couple of other talend components like(remember you can do all whatever you are doing using these components)
tJdbcRow
tJdbcConnection
Now if you want to use any of the above component they all allow you to add the driver jar.
Download the intended jar of your choice and use that in the above components instead.
Please let me know if this helps.

Grails 3.1.8 Oracle JDBC Driver configuration

I am trying to connect the Oracle Express Edition 11g through Grails 3.1.8. I tried all possible solutions:
Downloaded the jar file(ojdbc14.jar)
Adding a pom.xml to my sample application.
Searched the entire web for solution.
I was not able to achieve the connectivity between Grails3.1.8 and Oracle.
The only error I see is:
https://repo.grails.org/grails/core/com/oracle/ojdbc14/10.2.0.4.0/ojdbc14-10.2.0.4.0.jar (Use --stacktrace to see the full trace
Always use the latest JDBC driver in your application. JDBC driver is backward compatible with lower versions of the database. You can download the latest drivers from this path.

How to use freeslick with oracle with play-framework scala?

I am looking for an example play framework project that shows how to access an oracle database through freeslick in a scala play framework application.
Any hints?
Check out the Play! docs.
You can specify the JDBC driver.
You can add the JDBC Oracle driver using unmanaged jars.

Using sonarqube with apache derby

I am planning to use sonarqube. I have successfully installed sonarqube. AT the moment i am using the embedded h2 database which we shall only use for evaluation purpose. I went through the documentations and found out that sonarqube support MS SQL, MySQL, Oracle and PostgreSql. I was wondering if it possible to setup sonarqube with Apache Derby? If yes then can you please tell me how to do that?
Apache Derby used to be Sonar's default embedded database and was recently replaced by H2.
Is there are reason to favour Derby? I'm personally a big big fan of H2. In practice, you are best advised to use something like MySQL for non-trivial Sonar installations.
As you perfectly read on the requirements page, Derby is not supported.

Resources