Skip to content

Instantly share code, notes, and snippets.

@kidehen
Created June 26, 2018 14:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kidehen/08fe775c2f4aa3a91c6dd7dd68c6e435 to your computer and use it in GitHub Desktop.
Save kidehen/08fe775c2f4aa3a91c6dd7dd68c6e435 to your computer and use it in GitHub Desktop.
Relational Database Management Systems (RDBMS) Type Comparison
| | RDF Triple Store | RDF Quad Store | Graph Database | Single Model RDBMS (Tables) | Multi-Model RDBMS (Tables & RDF Graphs) |
|-------------------------------------------------------|----------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------|---------------------------------------------|------------------------------|------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| Data Modeled as Entity Relationship Types (Relations) | Y | Y | Y | Y | Y |
| Entity Identifiers | IRIs | IRIs | Proprietary | Proprietary | IRIs and Proprietary |
| Entity Relationship Type Representation | RDF Sentences/Statements (depictable as Directed Graphs) | RDF Sentences/Statements (depictable as Directed Graphs) | Proprietary (depictable as Directed Graphs) | Tables | Tables or RDF Sentences/Statements (depictable as Directed Graphs) |
| Entity Relationship Type Structure | subject->predicate->object 3-Tuples (or Triples) | subject->predicate->object 3-Tuples (or Triples) associated with a Named Graph (Data Source Name or Internal Document/Page) | Proprietary | N-Tuples + a Relation Header | N-Tuples + a Relation Header and/or subject->predicate->object 3-Tuples (or Triples) associated with a Named Graph (Data Source Name or Internal Document/Page) |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment