Difference between revisions of "Database Schema"

From wikieduonline
Jump to navigation Jump to search
Line 5: Line 5:
 
* Third-party applications can be put into separate schemas so they do not collide with the names of other objects.
 
* Third-party applications can be put into separate schemas so they do not collide with the names of other objects.
  
== Example ==
+
== Examples ==
 
* <code>[[CREATE SCHEMA]]</code>
 
* <code>[[CREATE SCHEMA]]</code>
  
Line 22: Line 22:
  
 
  [[GRANT SELECT]] ON ALL [[TABLES]] IN [[SCHEMA]] [[public]] TO xxx;
 
  [[GRANT SELECT]] ON ALL [[TABLES]] IN [[SCHEMA]] [[public]] TO xxx;
 +
 +
[[ALTER DEFAULT PRIVILEGES]] IN SCHEMA public GRANT SELECT ON TABLES TO xxx;
  
 
== Related ==
 
== Related ==

Revision as of 13:44, 24 November 2022

wikipedia:Database schema are analogous to directories at the operating system level, except that schemas cannot be nested. [1] Typical schemas usage scenarios [2]:

  • To allow many users to use one database without interfering with each other.
  • To organize database objects into logical groups to make them more manageable.
  • Third-party applications can be put into separate schemas so they do not collide with the names of other objects.

Examples

Grant examples on schemas:

PostgreSQL: pg_catalog and public.


GRANT SELECT ON ALL TABLES IN SCHEMA public TO xxx;
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO xxx;

Related

See also

  • https://www.postgresql.org/docs/current/ddl-schemas.html
  • https://www.postgresql.org/docs/current/ddl-schemas.html
  • https://stackoverflow.com/a/10353730
  • https://dba.stackexchange.com/questions/40045/how-do-i-list-all-schemas-in-postgresql
  • Advertising: