Paolo,
I noticed you said you were having a issue when using the unloadTable functionality.
The way this works is that for a column with a "blank" value, EGL sets the value of "\ " in the file. For nulls, it will be nothing between the delimiters.
So, if I had a table with the following values
Col1 = ABC
col2 = blank
col3 = null
col4 = DEF
Then the resulting record in the output file after unloadTable would be:
ABC,\ ,,DEF
The reason for this behavior is the "loadTable" needs to be able to distinguish between a blank and null so it uses an escape character and blank which is "\ " to represent the columns with a "blank" value.
If you use the EGL loadTable function to fill the tables on the receiving system, it will understand this and remove the \ when it inserts the column values.
markevans