Re: psql record separator - Mailing list pgsql-novice

From Charley Tiggs
Subject Re: psql record separator
Date
Msg-id 47854E47.1060901@tiggs.net
Whole thread Raw
In response to Re: psql record separator  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: psql record separator  ("Andrej Ricnik-Bay" <andrej.groups@gmail.com>)
List pgsql-novice
Tom Lane wrote:
> Charley Tiggs <lists@tiggs.net> writes:
>> I'm trying to create a CRLF record separator using the following syntax:
>> psql -R "\r\n" dbname username -c "select * from foo" > data_file.txt
>
>> But, no matter what I do, it only outputs a newline (\n).  How can I
>> force the separator to be a windows line break (CRLF)?
>
> According to the code, -R only affects the output in "unaligned" output
> mode.  Can you use that?

I added the "-A" switch and it output the string "\r\n" instead of an
actual CRLF.

psql -A -R "\r\n" -t dbname username -c "select * from foo" > data_file.txt

Charley

pgsql-novice by date:

Previous
From: Tom Lane
Date:
Subject: Re: psql record separator
Next
From: "Andrej Ricnik-Bay"
Date:
Subject: Re: psql record separator