The Vertica Forum recently got a makeover! Let us know what you think by filling out this short, anonymous survey.
Please take this survey to help us learn more about how you use third party tools. Your input is greatly appreciated!
Display a Query Title in VSQL

The \C vsql meta-function allows you to set a title string that precedes query result output!
Example:
dbadmin=> SELECT * FROM dual; dummy ------- X (1 row) dbadmin=> \C 'The "Tried and True" DUAL table exists in Vertica!' Title is "The "Tried and True" DUAL table exists in Vertica!". dbadmin=> SELECT * FROM dual; The "Tried and True" DUAL table exists in Vertica! dummy ------- X (1 row)
Have fun!
0