Hello,
I am a Talend newbie.
I am working at modifying an existing job. I changed the schema of some of the tables in the job. Now, I am trying to run the job against the newly created table schema in the database.
When I run the job that's pointing to the new tables, I get an error on the first tMySQLOutput component:
java.sql.BatchUpdateException: Column 'Album' cannot be null
All the columns of the table in the database are NOT NULL DEFAULT '';
I also added logic to my tMaps that are feeding into this table: out1.Album==null ? "": out1.Album
Using this logic, shouldn't the tMap convert the Album field to empty string if it is a null value? Not sure why the tMySQLOutput component is barking at my configuration.
Can someone please assist?
Best,
zs