0

I have a data in MS Access which I want to migrate into MS SQL. Data stored is in foreign language not in english. I can read data in Access as I have stored regarding font in C:\Windows\Fonts.

I have migrated Access database into MSSQL by in built functionality of MS SQL, but I can not read(data stored in wierd character) this data directly in MS SQL and in .Net web application also.

Can any one suggest me please?

5
  • Have you made sure that your MS SQL uses UTF-8 as its character set? Commented Jun 15, 2015 at 5:36
  • use SSIS to migrate the data. Commented Jun 15, 2015 at 5:37
  • What data type is the column in SQL Server - is it NVARCHAR? Please expand on 'can not read'. Do you get an error? wierd characters? Commented Jun 15, 2015 at 6:47
  • @Nick.McDermaid Column types are nvarchar. and also characters are wierd Commented Jun 15, 2015 at 9:37
  • I suggest you use the UNICODE function to inspect the first character of the data in the field. It's possible the data uploaded correctly but none of your clients can display it. UNICODE will tell you if the character in the field is indeed the correct unicode character. Commented Jun 15, 2015 at 22:41

2 Answers 2

1

Please follow the steps described in official MS support:

You need to use import wizard and test the columns as you go.

Sign up to request clarification or add additional context in comments.

Comments

0

You could also use the upsizing wizard within the Access database. The instructions are here:

https://support.office.com/en-us/article/Move-Access-data-to-a-SQL-Server-database-by-using-the-Upsizing-Wizard-5d74c0df-c8cd-4867-8d07-e6e759d72924

The wizards do not move everything though:

https://blogs.office.com/2012/02/17/five-common-pitfalls-when-upgrading-access-to-sql-server-2/

Edit:

You could use the wizards to create a new sql server db, that way the encoding & collation is done automatically.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.