You are not logged in.
Announcement
Unanswered posts
|
Pages: 1

Bonjour,
I have a source column named ProtocolTitle in Access of type MEMO (in Talend = String of length 1073741823) to go to an Oracle target column of length 50.
How can I do the equivalent of Left(row1.ProtocolTitle, 50)?
In order words capturing the first 50 characters of the source.
Thanks.
PM
Offline
Hi,
In Java :
row1.ProtocolTitle.substring(0, 49);
Offline
Pages: 1