Hi.
I am trying to use BCP from a C# console application.
I am passing a query from my resources file and the query is passed to BCP command.
Example: I have my queries as below :
SELECT 1 as NameINFO, SEQ_NUM,
QUOTENAME('¸','""') AS DELIMITS
FROM TableName
The last character is getting changed to ?
I am trying to understand what could be the possible reasons for this character getting changed from ¸ to ?
The table collation is Latin general. what are the things which need to be checked in database and server?
