0

I am creating an ETL project, in which I want to move a table on an Oracle server into a table on a SQL Server.

I have a varchar2 column in Oracle, which I mapped to a varchar column in SQL Server.

But when I execute the ETL (using Microsoft BI), the data turn into "?".

The original data is persian unicode characters.

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
Saeed
  • 7,262
  • 14
  • 43
  • 63

1 Answers1

0

Assuming the table name is some_table and the column name is some_column of size 100 characters for your SQL Server. Running the following T-SQL command should solve your problem:

ALTER TABLE some_table ALTER COLUMN some_column NVARCHAR(100)
M. Ahmad Zafar
  • 4,881
  • 4
  • 32
  • 44