The documentation states that '-k is the same as -k1'.I have found from my tests on a varchar column containing consecutive char(13)+Char(10)'s, the -k strips all the control characters. -k1 converts each control character to a space. -k2 converts consecutive control characters to a single space.So, 'Test line 1 <13><10>Test line 2<13><10>Test line 3' (where <13> is a char(13) and <10> is a char(10)) becomes :-k : Test line 1Test line 2Test line 3-k1: Test li
↧