Featured Post

Applying Email Validation to a JavaFX TextField Using Binding

This example uses the same controller as in a previous post but adds a use case to support email validation.  A Commons Validator object is ...

Saturday, May 24, 2014

Use tSetGlobalVar to Record a Count

If you want to use one or more global variables set by an input flow like a tOracleInput throughout your Talend job, consider using tSetGlobalVar.  Convert the flow from the input component into an iterate and map a field to a key in the tSetGlobalVar component.

Tuesday, May 20, 2014

Talend to MS SQL with Windows Authentication

To connect a Talend integration job to MS SQL Server using Windows Authentication, use the tOleDbInput component rather than the tMSSqlInput.  You'll need to put some DLLs on the system running Talend.

Sunday, March 30, 2014

Javajet Sample to Get List of Routines in a Talend Custom Component

This .javajet program uses the static class RoutinesUtil to retrieve a list of System Routines loaded in Talend Open Studio.

Thursday, March 27, 2014

Collaborating on Talend Open Studio Routines: Part 5 - Metadata

Managing the Java code that makes up a Talend Open Studio Routine outside of Talend lets you use technologies like source code control and continuous integration to improve the maintenance of your Routine.  This blog post describes a publicly-available Maven Plugin called TalendRoutine that will bridge the gap between the standard artifacts produced by Maven and the deployable Routine needed by Talend Open Studio.

Monday, March 24, 2014

Collaborating on Talend Open Studio Routines: Part 4 - Assembly

Pulling Routine code development out of Talend Open Studio means that you can enlist supporting technologies like Git and Maven to foster collaboration.  This post describes how to assemble Java source into a zip file that can be imported into Talend Open Studio.