-
-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[sqlserver] use nvarchar to load unicode data? #37
Comments
Done. |
Thanks! I can see that the column type is now Will look into it further the next time I have something to load! |
Interesting, it might be the encoding? See: |
Filed #518 |
$ sling --version
file /c/temp/test_unicode.csv
cat /c/temp/test_unicode.csv
cat /c/temp/test_unicode.csv | sling run --tgt-conn dev --tgt-object dbo.test
This creates
varchar
columns:...which use the database default collation, corrupting any incompatible characters:
Would it be possible to use the unicode
nvarchar
type instead ofvarchar
?The text was updated successfully, but these errors were encountered: