I would like to know how I can get the metadata of an object in a Vertica database; like table metadata. Is there a table that stores object metadata (functions, views, tables) in the Vertica database.
For example, in Oracle, I can enter the following and get a detailed description of the tables or see the procedure code.
oracle :> desc table_name;
or
oracle :> edit proc_name;
I know that I see tables from my schemas using the \dt command, but is there a way to see the DDL actions that the objects created?
source share