Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
Iam using Talend openstudio with bigdata .Here my source is Cassandra target is sql server.When iam trying to map List type column in source to varchar type in target iam getting below erro
cannot convert from list to string.
Can you please help me how to convert List type to string.
@ruthvi ,some of the records may have the null values in that column ,in DB side it would be not null constrain is there.
@ruthvi ,you can convert using tjavarow or tmap or tconverttype,
for tjavrow and tmap.
String.valueOf(row1.col)
or
row1.col.tostring()
@ruthvi ,some of the records may have the null values in that column ,in DB side it would be not null constrain is there.