I'm trying to convert an excel file to sql.
but i'm getting below error.
when i change on truncation value to "ignore" , the convert process will be complete but persian characters will be seen as "?".
I'm trying to convert an excel file to sql.
but i'm getting below error.
when i change on truncation value to "ignore" , the convert process will be complete but persian characters will be seen as "?".
Make sure that all your destination columns are NVARCHAR
if they are going to be accepting Unicode text.
See here for a detailed explanation: What is the difference between varchar and nvarchar?
As you know, import excel files to SQL server database is doing by Access Engine, in most of the cases that you see this error, it could be solved by below method:
At first, you create an access file and save it in MDB format (this format could be used in SQL server), and then import your excel file to this Access.mdb file, when all your data is complete, you can import this MDB file from the SQL server to your database,