diacritics - SQLCMD batch to generate table contents in a CSV - Format issue -
we trying generate contents of tables sqlcmd in csv file, commas instead of accents.
here have tried:
1/ trying change output format -f o:1252 sqlcmd -d environment -u user -p pwd -s; -w -q "select iqid,iqdeleted,... " 1>vctruc.csv -f o:1252
2/ trying change output format 65001 sqlcmd -d environment -u user -p pwd -s; -w -q "select iqid,iqdeleted,... " 1>vctruc.csv -f 65001
3/trying change output format unicode sqlcmd -d environment -u user -p pwd -s; -w -q "select iqid,iqdeleted,... " 1>vctruc.csv -u
we get: "priv‚e" instead of "privée" or "f”renings" instead of "förenings"
would know how can avoid this?
thanks,
Comments
Post a Comment