Hi,
I have a flat file that has say 3 columns in it. These columns are tab delimited.
1234 | XYZ | ABC
Now column 2 or 3 can either be null or have a valid value no more then 3 characters in length.
I have set up the datastore for each of the column's data type correctly.
col 1 as Decimal
col 2 as String Length of 3
col 3 as String Length of 3
Here is the issue, if column 2 or 3 in the flat file are more then 3 characters in length the Import function treats them as a NULL value, is there a way to pick up only the first 3 characters, since for us a NULL value is actually valid? Any advice would be apprecaited, or if more cleaification is required please let me know.
I have a flat file that has say 3 columns in it. These columns are tab delimited.
1234 | XYZ | ABC
Now column 2 or 3 can either be null or have a valid value no more then 3 characters in length.
I have set up the datastore for each of the column's data type correctly.
col 1 as Decimal
col 2 as String Length of 3
col 3 as String Length of 3
Here is the issue, if column 2 or 3 in the flat file are more then 3 characters in length the Import function treats them as a NULL value, is there a way to pick up only the first 3 characters, since for us a NULL value is actually valid? Any advice would be apprecaited, or if more cleaification is required please let me know.