I have developing a project in SSIS.
First I drag and drop a Execute SQL TASK
in ControlFlow.
After that I write a query in Execute SQL TASK
like this :
select 'رضا','خدائی' from dual
And in Result Set
I add two new variables, Fname
and LName
with index 0
,1
.
But when I debug the package, the values of these two variables are '???'
, '????'
My oracle character set is 'AL32UTF8'. I tested the code page of Execute SQL TASK
in 1252, 1256, 65001, but in all code pages, I cannot solve my problem.