Re: Reset Postgresql users password

Поиск
Список
Период
Сортировка
От David G. Johnston
Тема Re: Reset Postgresql users password
Дата
Msg-id CAKFQuwbc_zyc2Q6o95kn--z9TNJzSbHUU0YvEX4AkgMLDygVRA@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Reset Postgresql users password  (Gurjeet Singh <gurjeet@singh.im>)
Список pgsql-general
On Wed, Jul 12, 2023 at 1:17 PM Gurjeet Singh <gurjeet@singh.im> wrote:
        for rec in select
                    'alter user '|| quote_ident(usename)
                    ||' with password '|| quote_literal('newpassword')


Which is more clearly written using the format function:
...
for rec in select
        format('alter user %I with password %L', usename, 'newpassword')
    from pg_user
loop
...

David J.

В списке pgsql-general по дате отправления:

Предыдущее
От: Johnathan Tiamoh
Дата:
Сообщение: Re: Reset Postgresql users password
Следующее
От: Lorusso Domenico
Дата:
Сообщение: Re: How to add function schema in search_path in option definitio