1

I am currently working with Oracle, PostgreSQL, and MySQL databases. In these different database management systems, I have encountered drastically different definitions for schema, primarily with schema being defined as the set of objects owned by a user, an actual user, and a collection of the basic layout of data in tables (columns). Does anyone know why are there various definitions and functionalities of such an important concept?

asked Aug 26, 2022 at 21:30
0

1 Answer 1

-1

Schema is universally accepted generically as a term that describes the structure of a database / collection of related database objects, either logically (on paper / in theory / while still being designed) or physically (implemented in an actual database as tables and other objects).

Different database systems inherited and extended the term into a more concrete concept or object itself to represent a way to organize a collection of related database objects. Depending on the database system, the actual implementation of that extended concrete notion varies a little bit. But the idea is mostly the same across all of them - to physically organize a collection of related objects (which is a physical implementation of the generic definition of the term schema).

Long story short, all the implementations of the term schema are related in principal and derive from the generic definition of it.

answered Aug 27, 2022 at 2:12
2
  • 1
    The SQL standard defines the term "schema" as a namespace which defines the fully qualified name of a table (or a view or other database objects) Commented Aug 27, 2022 at 5:58
  • @a_horse_with_no_name Got a reference?...because mine in my answer seems to follow my definition. Research I've done has found yours more specific to a particular database system. Commented Aug 28, 2022 at 16:05

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.