Hi All,
I am trying to insert data into oracle table but when i use bulkload option in append the data with special character is being replaced by [] or ?.

The first result in above screenshot is appending without bulkload option and second one using bulkload option
proc append base = CTARGET.CLIENT (BULKLOAD = YES
BL_USE_SQLLDR = YES
BL_DIRECT_PATH = YES
BL_LOAD_METHOD = TRUNCATE
BL_CONTROL = "&cntpth.&fle..cnt"
BL_LOG = "&pth1."
BL_DATAFILE = "&pth2."
BL_DELETE_DATAFILE = YES)
data = CLIENT1 force;
run;
And if i use only proc append without bulkload option as below then data is loading correctly.
proc append base=CTARGET.CLIENT new=CLIENT1 force;
run;
Can anyone help me here if i need to add any other option in bulkload so the special character can be displayed correctly