Database Schema

From wikieduonline
Jump to navigation Jump to search

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.
public or default

Examples[edit]

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;
GRANT ALL PRIVILEGES ON SCHEMA


Errors[edit]

Related[edit]

News[edit]

  • Oct 2022 PostgreSQL 15, revokes the CREATE permission from all users except a database owner from the public (or default) schema

See also[edit]

Advertising: