Getting bcp.exe to escape terminators

后端 未结 4 1839
轮回少年
轮回少年 2021-01-17 14:41

I need to export some data using SQL Server 2000\'s BCP utility. Sometimes my data contains characters, such as \\t and \\n, that I need to use as column and row terminator

相关标签:
4条回答
  • 2021-01-17 14:58

    You can use a separator made up of multiple characters if you put them between double quotes:

    bcp MY_TABLE out C:\MY_FILE.txt -S SERVER_IP -d DB_NAME -U MY_USER -P MY_PASSWORD -w -t "&#)^@" -r ">~+!"

    Found the solution here.

    0 讨论(0)
  • 2021-01-17 14:59

    Totally agree with you: escaping should be an option. "You can't have data with tabs or newlines" is the silliest thing I have ever heard.

    Here is a possible solution:

    1. use the -r option to set a different line terminator. Something
      unlikely to be present in your data (#!#$#%#). I think you can use multiple
      characters, so that makes it easier.
    2. Open your data file in sed, a capable text editor, or write a script - and replace any \n and \t character with their escaped equivalents (\\n and \\t). Finally replace your line terminator with \n and you should be good.
    3. I think the same thing should apply to using -t for field terminators

    Take a look at this article for more information.

    0 讨论(0)
  • 2021-01-17 15:12

    You can't have data containing tabs and newlines with tabs and newline separators. It makes no sense. Escaping wouldn't help, because a tab is a tab. We're not talking c# string handling here.

    What I'd do is use different terminators such as | and ||/n, or use a format file

    0 讨论(0)
  • 2021-01-17 15:20

    I have the same problem and searched a long time to find a solution. I found this one from a BCP master and it sounds reasonable. Perhaps you want to try it as well.

    Possible solution: http://groups.google.co.uk/group/microsoft.public.sqlserver.tools/tree/browse_frm/thread/f1ee12cba3079189/ef9094123901fe26?rnum=1&q=lindawie+format+file&_done=%2Fgroup%2Fmicrosoft.public.sqlserver.tools%2Fbrowse_frm%2Fthread%2Ff1ee12cba3079189%2Fef9094123901fe26%3Ftvc%3D1%26q%3Dlindawie%2Bformat%2Bfile%26#doc_fa5708ca51d967a6

    Format file details & design: http://msdn.microsoft.com/en-us/library/aa173859%28SQL.80%29.aspx

    Generally I can suggest these links to get you know about BCP problems and solutions: http://groups.google.co.uk/groups?q=lindawie+format+file

    Best regards

    0 讨论(0)
提交回复
热议问题