How to check snowflake jar version in talend studio

20 Views Asked by At

How to identify the current version of snowflake jar used by Talend studio?

1

There are 1 best solutions below

0
Dinesh B On

Option 1:

enter image description here

Create a connection component with snowflake connection parameters required. in tjava, give the following and print it:

Connection con=DriverManager.getConnection(context.jdbc_url_snowflake, 
 context.connection_snowflakeETL_userPassword_userId,    
 context.connection_snowflakeETL_userPassword_password);
System.out.println("Version: " + con.getMetaData().getDriverVersion());

ans: Version: 3.13.30

Option 2:

In Talend Studio, go to Windows --> show in --> click and modules --> search as snowflake