http://sql313.com/index.php/43-main-blogs/maincat-dba/62-using-notepad-to-change-end-of-line-characters

 

SRE实战 互联网时代守护先锋,助力企业售后服务体系运筹帷幄!一键直达领取阿里云限量特价优惠。

End of Line characters include CR or LF.  Windows uses both CRLF at the end of a line, whereas Unix uses only a LF.

  • CR = Carriage Return
  • LF = Line Feed

Recently, while troubleshooting why data wont import successfully as part of an automated process, I was pulling a subset of data out of the main text file, but the end of line markers weren't correct.  I copied several lines using Notepad ++ and it automatically used CRLF markers.  The automated process expected the end of line markers to be LF to be read by the SSIS package properly.

This article will help job my memory when I run across this again... but hopefully it helps someone else too! :)

First off, within Notepad ++ to see the end of line markers, you need to indicate you want to see them.  Click on View > Show Symbol > then either Show End of Line, or Show All Characters if you want to see spaces and tabs, sometimes the second option is easier).

Using Notepad++ to change end of line characters (CRLF to LF) Cloud 第1张

 

After that, you will be able to see the end of line characters and see which ones are used.

Using Notepad++ to change end of line characters (CRLF to LF) Cloud 第2张

 

Using the find and replace within Notepad++, we can easily change back and forth between CRLF and LF, as shown below.  We will be using \r (CR) and \n (LF) as matching values.  In this case, I am replacing CRLF with LF, but you can switch the values and do vice versa easily.

  1. Click on Search > Replace (or Ctrl + H)
  2. Find what:  \r\n
  3. Replace with: \n
  4. Search Mode: select Extended
  5. Replace All

Using Notepad++ to change end of line characters (CRLF to LF) Cloud 第3张

 

This automated process used an SSIS package.  In the flat file connection manager within SSIS, you will set what the end of the line character(s) are.  This is very easy to use while building the automated process, etc.  The screenshot below shows what the connection manager will look like for a line ending with LF.

 Using Notepad++ to change end of line characters (CRLF to LF) Cloud 第4张

 

扫码关注我们
微信号:SRE实战
拒绝背锅 运筹帷幄