How do i remove the header underline from a file generated by SQLCMD in a batch file? I am trying to automate a process that puts a file in a directory to be processed by another app and it chokes on the dashed line under the header Example:
1. Header1 Header2 header3 header4
2. ------ ------ ------ ------
3. Data1 Data2 Data3 Data4
4. Data1 Data2 Data3 Data4
5. Data1 Data2 Data3 Data4
6. Data1 Data2 Data3 Data4
I need to remove line 2. so the other app does not choke on it. The app needs the Headers but dies on the dashed line below it.