Actions

Difference between revisions of "Bachman Diagram"

(A Bachman diagram is another name for a data structure diagram, and is used to design the data with a network or relational "logical" model, separating the data model from the way the data is stored in the system.)
 
m (The LinkTitles extension automatically added links to existing pages (https://github.com/bovender/LinkTitles).)
 
Line 1: Line 1:
A Bachman diagram is another name for a data structure diagram, and is used to design the data with a network or relational "logical" model, separating the data model from the way the data is stored in the system. The model is named after database pioneer Charles Bachman, and mostly used in computer software design. In a relational model a relation is the cohesion of attributes that are fully and not transitive functional dependent of every key in that relation. The coupling between the relations is based on accordant attributes. For every relation a rectangle has to be drawn and every coupling is illustrated by a line that connects the relations. On the edge of each line arrows indicate the cardinality. We have 1-to-n, 1-to-1 and n-to-n. The latter has to be avoided and must be replaced by two 1-to-n couplings.<ref>What is the Bachman Diagram? [http://www.liquisearch.com/bachman_diagram/bachman_diagram Liquisearch]</ref>
+
A Bachman diagram is another name for a [[data]] structure diagram, and is used to [[design]] the data with a [[network]] or relational "logical" [[model]], separating the data model from the way the data is stored in the [[system]]. The model is named after database pioneer Charles Bachman, and mostly used in [[computer]] [[software]] design. In a relational model a relation is the cohesion of attributes that are fully and not transitive functional dependent of every key in that relation. The coupling between the relations is based on accordant attributes. For every relation a rectangle has to be drawn and every coupling is illustrated by a line that connects the relations. On the edge of each line arrows indicate the cardinality. We have 1-to-n, 1-to-1 and n-to-n. The latter has to be avoided and must be replaced by two 1-to-n couplings.<ref>What is the Bachman Diagram? [http://www.liquisearch.com/bachman_diagram/bachman_diagram Liquisearch]</ref>
  
  
Line 13: Line 13:
  
 
===Further Reading===
 
===Further Reading===
*Guidelines for Constructing Data Structure Diagrams [https://www.irs.gov/irm/part2/irm_02-005-013.html#d0e1335 IRS.GOV]
+
*Guidelines for Constructing [[Data Structure]] Diagrams [https://www.irs.gov/irm/part2/irm_02-005-013.html#d0e1335 IRS.GOV]
 
*Charles William "Charlie" Bachman III [https://en.wikipedia.org/wiki/Charles_Bachman Wikipedia]
 
*Charles William "Charlie" Bachman III [https://en.wikipedia.org/wiki/Charles_Bachman Wikipedia]
 
*Data Structure Diagrams [http://www.minet.uni-jena.de/dbis/lehre/ws2005/dbs1/Bachman-DataStructureDiagrams.pdf By Charles W. Bachman]
 
*Data Structure Diagrams [http://www.minet.uni-jena.de/dbis/lehre/ws2005/dbs1/Bachman-DataStructureDiagrams.pdf By Charles W. Bachman]

Latest revision as of 13:55, 6 February 2021

A Bachman diagram is another name for a data structure diagram, and is used to design the data with a network or relational "logical" model, separating the data model from the way the data is stored in the system. The model is named after database pioneer Charles Bachman, and mostly used in computer software design. In a relational model a relation is the cohesion of attributes that are fully and not transitive functional dependent of every key in that relation. The coupling between the relations is based on accordant attributes. For every relation a rectangle has to be drawn and every coupling is illustrated by a line that connects the relations. On the edge of each line arrows indicate the cardinality. We have 1-to-n, 1-to-1 and n-to-n. The latter has to be avoided and must be replaced by two 1-to-n couplings.[1]


The figure below illustrates a Bachman Diagram for a Car-Hire Network Database

Bachman Diagram
source: WLV


References

  1. What is the Bachman Diagram? Liquisearch


Further Reading