Home >Database >Mysql Tutorial >How Can Non-Admin Users Permanently Customize Their Postgres Schema Path?
Customizing Postgres Schema Path Permanently
Setting the schema path with SET SCHEMA PATH may be temporary, reverting back to default after closing the query session. This article addresses how to make this setting permanent, particularly for users without administrative access to the server.
Permanent Schema Path Modification for Non-Admin Users
To permanently modify the schema path for users with limited privileges, use the following command:
ALTER ROLE <your_login_role> SET search_path TO a,b,c;
Important Considerations:
The above is the detailed content of How Can Non-Admin Users Permanently Customize Their Postgres Schema Path?. For more information, please follow other related articles on the PHP Chinese website!