Thursday, January 28, 2016
Friday, January 22, 2016
Connect MS SQL Server from Oracle SQL Developer 3.2 using JDBC
Hello,
1. Open Oracle SQL Developer to go Tools Menu >> preferences
2. In pop up window go to tree view explorer >> Database >> Third party JDBC Drivers
3. Click on Add Entry >> select jtds-1.2.7-dist folder >> jtds-1.2.7.jar click ok
4. Restart SQL Developer.
Now click on + button (new connection) and you will be able to connect SQL Server databases as well.
Use this link to download jtds driver
Below is the screenshot of preferences options.
Here are the step to connect MS SQL Server from Oracle SQL
Developer 3.2 using jtds-1.2.7.jar file (plugin)
1. Open Oracle SQL Developer to go Tools Menu >> preferences
2. In pop up window go to tree view explorer >> Database >> Third party JDBC Drivers
3. Click on Add Entry >> select jtds-1.2.7-dist folder >> jtds-1.2.7.jar click ok
4. Restart SQL Developer.
Now click on + button (new connection) and you will be able to connect SQL Server databases as well.
Use this link to download jtds driver
Below is the screenshot of preferences options.
Wednesday, January 20, 2016
How to read password value from context variable in Talend
Hello,
By using tContextDump we can read all context values except passwords, tContextDump print passwords as ********** so how we can read that.
Let say we have a context variable CAT_Prod_Password which contains the password value.
So in order to read its value we can use tJava with below code-
System.out.println(context.CAT_Prod_Password);
Sample job screen shot-
By using tContextDump we can read all context values except passwords, tContextDump print passwords as ********** so how we can read that.
Let say we have a context variable CAT_Prod_Password which contains the password value.
So in order to read its value we can use tJava with below code-
System.out.println(context.CAT_Prod_Password);
Sample job screen shot-
Thursday, January 14, 2016
Monday, January 11, 2016
Memory allocation for talend
I updated my talend 5.4 version memory setting to get maximum speed for 4GB RAM
I used below values-
-vmargs
-Xms512m
-Xmx1536m
-XX:MaxPermSize=1024m
-Dfile.encoding=UTF-8
Try, it works!
I used below values-
-vmargs
-Xms512m
-Xmx1536m
-XX:MaxPermSize=1024m
-Dfile.encoding=UTF-8
Try, it works!
Subscribe to:
Posts (Atom)