PostgreSQL:如何在用户级别设置search_path?

时间:2010-06-01 17:23:40

标签: postgresql

我想将默认search_path设置为“public”架构以外的其他内容。 但我只想为特定用户这样做。 我怎么能做到这一点?

1 个答案:

答案 0 :(得分:45)

我找到了答案:

ALTER ROLE用户名SET search_path = schema1,schema2,schema3等;