Page 1 of 1

Turn off feedback from DDL statements, etc.

Posted: Wed Apr 02, 2014 6:45 pm
by sam
Is there some way that I can turn the feedback off for vertica DDL statements and SET functions?

For example, I don't want the "CREATE SCHEMA" and "SET" commands to show up in the following:

Code: Select all

dbadmin=> create schema sam;
CREATE SCHEMA
dbadmin=> set search_path=sam;
SET

Re: Turn off feedback from DDL statements, etc.

Posted: Wed Apr 02, 2014 6:56 pm
by NorbertKrupa

Re: Turn off feedback from DDL statements, etc.

Posted: Thu Apr 03, 2014 4:56 am
by sam
Thanks for your reply, however that solution does not work :(

Code: Select all

dbadmin=> \pset footer
Default footer is off.
dbadmin=> create table t (c int);
CREATE TABLE
The "CREATE TABLE" output is still visible...