I have a string column with "Thu Oct 02 07:50:43 CEST 2014". I need to parse this string to have a Date. The node String to Date/Time with EEE MMM dd HH:mm:ss zzz yyyy raise an error. I don't know why. A java snippet seem to works:
In "Table creator" you wrote CEST which is Central European Summer Time and is UTC+2. That's why your get difference of 2 hours. Java Snippet outputs time in UTC timezone in your case.
If i remove the string "CEST" i don't expect that the program changes the date. Knime can't know the right timezone of the date in input. Does it subtract 2 to every date?