I have a wide table filled with ID numbers (starting with a variable number of zeros) and I want to import it into KNIME but the columns are automatically detected as Integer. I tried to manually modify the settings.xml
file corresponding to the import node in order to enforce a String type import without spending my afternoon clicking on each column, every time I get a new file. The entry is now:
<entry key="cell_class" type="xstring" value="org.knime.core.data.def.StringCell"/>
I get an error when re-opening the workflow. So I also modified the MissValuePattern
entry to:
<entry key="MissValuePattern" type="xstring" value="?"/>
Still getting an error when re-opening the workflow. I don't see any difference between a string and an integer column so I'm a bit stuck.