Difference between revisions of "Database Schema"

From wikieduonline
Jump to navigation Jump to search
(Created page with "Schemas are analogous to directories at the operating system level, except that schemas cannot be nested. <ref>https://www.postgresql.org/docs/current/ddl-schemas.html</ref>...")
 
Line 1: Line 1:
 
Schemas are analogous to directories at the operating system level, except that schemas cannot be nested. <ref>https://www.postgresql.org/docs/current/ddl-schemas.html</ref>
 
Schemas are analogous to directories at the operating system level, except that schemas cannot be nested. <ref>https://www.postgresql.org/docs/current/ddl-schemas.html</ref>
  
 +
 +
Typical schemas usage scenarios:
 +
* 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.
  
 
== See also ==
 
== See also ==

Revision as of 10:11, 2 February 2020

Schemas are analogous to directories at the operating system level, except that schemas cannot be nested. [1]


Typical schemas usage scenarios:

  • 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.

See also

  • https://www.postgresql.org/docs/current/ddl-schemas.html
  • Advertising: