Difference between revisions of "GRANT pg read all data TO xxx;"

From wikieduonline
Jump to navigation Jump to search
 
(6 intermediate revisions by the same user not shown)
Line 2: Line 2:
 
<code>[[GRANT]] [[pg_read_all_data]] TO xxx;</code> <ref>https://stackoverflow.com/a/67213972</ref>
 
<code>[[GRANT]] [[pg_read_all_data]] TO xxx;</code> <ref>https://stackoverflow.com/a/67213972</ref>
  
Read all data (tables, views, sequences), as if having SELECT rights on those objects, and USAGE rights on all schemas, even without having it explicitly. This role does not have the role attribute BYPASSRLS set. If RLS is being used, an administrator may wish to set BYPASSRLS on roles which this role is GRANTed to.
+
Read all data ([[tables]], [[views]], [[sequences]]), as if having SELECT rights on those objects, and USAGE rights on all schemas, even without having it explicitly. This role does not have the role attribute BYPASSRLS set. If RLS is being used, an administrator may wish to set BYPASSRLS on roles which this role is GRANTed to.
  
  
:<code>create role USERNAME with login password 'PASSWORD';</code>
+
:<code>[[create role]] USERNAME [[with login password]] 'PASSWORD';</code>
 
:<code>[[GRANT]] [[pg_read_all_data]] TO xxx;</code> <ref>https://stackoverflow.com/a/67213972</ref>
 
:<code>[[GRANT]] [[pg_read_all_data]] TO xxx;</code> <ref>https://stackoverflow.com/a/67213972</ref>
 +
 +
[[PostgreSQL read only user]]:
 +
:<code>[[create role]] USERNAME [[with login password]] 'PASSWORD';</code>
 +
:<code>[[GRANT]] [[pg_read_all_data]], [[pg_monitor]] TO xxx;</code>
  
 
== Related ==
 
== Related ==
Line 13: Line 17:
 
* [[PostgreSQL predefined roles]]
 
* [[PostgreSQL predefined roles]]
 
* [[PostgreSQL users]]
 
* [[PostgreSQL users]]
 +
* [[pg_monitor]]
  
 
== See also ==
 
== See also ==
 +
* {{PostgreSQL users}}
 
* {{ALTER}}
 
* {{ALTER}}
 
* {{GRANT}}
 
* {{GRANT}}
  
 
[[Category:PostgreSQL]]
 
[[Category:PostgreSQL]]

Latest revision as of 16:15, 20 September 2024

Advertising: