Home > Enterprise >  Is there any way to resolve validating error when exporting data from SQL Server?
Is there any way to resolve validating error when exporting data from SQL Server?

Time:07-12

connectionproperties

CodePudding user response:

I think you might be using the Import / Export Wizard in SSMS, which opens up when you right click and choose Tasks > Export Data.

In this case, when you configure the flat file destination, change the collation to 949 - ANSI Korean (the default is 1252). You may also need to check the unicode box depending on the source, but I would test without it first:

enter image description here

  • Related