Thread: field sep in psql

field sep in psql

From
Ulf Mehlig
Date:
Hello out there,

I'm not able to set the field separator in psql, not by "\f", nor by
"-F" (strange thing, I know it worked some months ago):

- [using i386 Linux 2.2.15] ------------------------------------------  $ psql --version  psql (PostgreSQL) 7.0.2
containsreadline, history support  [...] 
 
  $ psql -F ' '  Welcome to psql, the PostgreSQL interactive terminal.  [...]
  db=# \f  Field separator is ' '.  db=# select * from something;         xxx |        yyy          -----+------------
  0 | some_data     1 | other_data  [...]  (17 rows)
 
----------------------------------------------------------------------

Do you have any suggestions? BTW, I think it would be useful to have
an option to separately turn off the "(x rows)" line -- this is hardly
ever useful if you want to export data to another program, but the
table headers sometimes are (so you cannot use "\t"). Equally, in my
opinion there could be an option to switch off the pretty ASCII-art
line separating the table header from the table data. Of course, you
can filter output through a clean-up script (that's what I do as long
as the separator remains '|').

Thank you for your attention,
Ulf

-- 
======================================================================
Ulf Mehlig    <ulf.mehlig@zmt.uni-bremen.de>             Center for Tropical Marine Ecology/ZMT, Bremen, Germany
----------------------------------------------------------------------


Re: field sep in psql

From
Rolf Lüttecke
Date:
Hi Ulf,

Try \pset tuples_only   \pset border 0   \pset fieldsep ' '

select * from something; 0   some_data 1   other_data
[...]
(X rows)

Hope it helps
Rolf