How can I get the values for the Vertica parameters

  • example :
    In oracle I can do this :
    sql:>show parameter <parameter_name>


How can I do this in vertica? And how to alter them?

有帮助吗?

解决方案

SELECT * FROM CONFIGURATION_PARAMETERS;

You used to be able to do the following: select get_config_parameter('ParameterName');

I'm not sure if that is still available. There should also be a set_config_parameter function.

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top