Вопрос

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