Re: Do not output header line in psql

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Do not output header line in psql
Дата
Msg-id 31490.1422897438@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Do not output header line in psql  (Hans Ginzel <hans@matfyz.cz>)
Список pgsql-novice
Hans Ginzel <hans@matfyz.cz> writes:
> On Mon, Feb 02, 2015 at 11:48:45AM -0500, Yaser Raja wrote:
>> You can use "grep -v" to exclude this line as follows:
>> echo '\dt' |psql -nqaA -Pfooter=off | grep -v 'List of relations'

> Thank you, but that is ugly. There must not be table/view named like this, etc.
> Which all strings need to be filtered – relations, roles,…?
> Is there a clean solution, please?

I agree that grep seems like a pretty dangerous solution, but
"tail -n +2" would work reliably.

Or, instead of relying on \dt, you could do your own select from
information_schema.tables, and then you'd have more control over
the formatting, column headers, etc.

            regards, tom lane


В списке pgsql-novice по дате отправления:

Предыдущее
От: Hans Ginzel
Дата:
Сообщение: Re: Do not output header line in psql
Следующее
От: Chuck Roberts
Дата:
Сообщение: How to round a double8 data type in sql?