sql server - Does Bulk Insert have an opportunity with accent grave characters? -


if this, works correctly plain old varchar, don't think it's nvarchar problem:

declare @ram table( descr varchar(128) ) insert @ram(descr) values('de la crème') select * @ram 

but i'm having trouble importing same data bulk insert.

q: there setting i'm missing allow accent grave?

your question connected not bulk insert (actually, there no bulk insert in code) or insert, data types. need use nvarchar , n in front of string constant define unicode value.

declare @ram table( descr nvarchar(128) ) insert @ram(descr) values(n'de la crème') select * @ram 

Comments

Popular posts from this blog

user interface - Python attempting to create a simple gui, getting "AttributeError: 'MainMenu' object has no attribute 'intro_screen'" -

jquery - Common JavaScript snippet to share files on Google Drive, Dropbox, Box.net or SkyDrive -

Android Gson.fromJson error -