Set search_path of a user in postgres
-- set search_path for a user in particular db:
postgresql configurationintermediate
by PostgreSQL
14 views
-- set search_path for a user in particular db:
123456
-- set search_path for a user in particular db:
postgres#
alter user prod_user in database "EDB" set search_path="$user", public, prim_db;
-- set search_path for a user in postgres cluster( all dbs)
postgres=#
alter user prod_user set search_path="$user", public, prim_db;Please to add comments
No comments yet. Be the first to comment!