SlideShare a Scribd company logo
1 of 11
Edgar F. Codd
Early Life Edgar Frank (Ted) Codd, the youngest of seven
children, was born August 19th, 1923, on the Isle of
Portland in the county of Dorset on the south coast of
England. His father was a leather manufacturer and his
mother a schoolteacher. During the 1930s he attended
Poole Grammar School in Dorset. He was awarded a full
scholarship to Oxford University (Exeter College), where
he initially read chemistry (1941 1942). In 1942—despite
the fact that he was eligible for a deferment because of
his studies— he volunteered for active duty and became a
flight lieutenant in the Royal Air Force Coastal Command,
flying Sunderlands. After the war he returned to Oxford to
complete his studies, switching to mathematics and
obtaining his degree in 1948. He emigrated to the United
States soon after graduating in 1948.
Education
 Poole Grammar School, Poole, England
(1930s); honors degree in mathematics
(B.A., subsequently M.A.), Exeter
College, Oxford University, England
(1941 1942 and 1946 1948); M.Sc. and
Ph.D., computer and communication
sciences, University of Michigan, Ann
Arbor, Michigan (1961 1965).
Contribution
 The relational model for database management is a
database model based on first-order predicate logic, first
formulated and proposed in 1969 by Edgar F. Codd.[1][2]
In the relational model of a database, all data is
represented in terms of tuples, grouped into relations. A
database organized in terms of the relational model is a
relational database. In the relational model, related
records are linked together with a "key".
 The purpose of the relational model is to provide a
declarative method for specifying data and queries: users
directly state what information the database contains and
what information they want from it, and let the database
management system software take care of describing
data structures for storing the data and retrieval
procedures for answering queries.
Proposed Rules
 Rule 0: The Foundation rule:
 A relational database management system must manage its stored data using only its relational capabilities. The system
must qualify as relational, as a database, and as a management system. For a system to qualify as a relational database
management system (RDBMS), that system must use its relational facilities (exclusively) to manage the database.
 Rule 1: The information rule:
 All information in a relational database (including table and column names) is represented in only one way, namely as a
value in a table.
 Rule 2: The guaranteed access rule:
 All data must be accessible. This rule is essentially a restatement of the fundamental requirement for primary keys. It says
that every individual scalar value in the database must be logically addressable by specifying the name of the containing
table, the name of the containing column and the primary key value of the containing row.
 Rule 3: Systematic treatment of null values:
 The DBMS must allow each field to remain null (or empty). Specifically, it must support a representation of "missing
information and inapplicable information" that is systematic, distinct from all regular values (for example, "distinct from
zero or any other number", in the case of numeric values), and independent of data type. It is also implied that such
representations must be manipulated by the DBMS in a systematic way.
 Rule 4: Active online catalog based on the relational model:
 The system must support an online, inline, relational catalog that is accessible to authorized users by means of their regular
query language. That is, users must be able to access the database's structure (catalog) using the same query language that
they use to access the database's data.
 Rule 5: The comprehensive data sublanguage rule:
 The system must support at least one relational language that 1.Has a linear syntax
 2.Can be used both interactively and within application programs,
 3.Supports data definition operations (including view definitions), data manipulation operations (update as well as
retrieval), security and integrity constraints, and transaction management operations (begin, commit, and rollback).
Proposed Rules Cont’d.
 Rule 6: The view updating rule:
 All views that are theoretically updatable must be updatable by the system.
 Rule 7: High-level insert, update, and delete:
 The system must support set-at-a-time insert, update, and delete operators. This means that data can be
retrieved from a relational database in sets constructed of data from multiple rows and/or multiple tables. This
rule states that insert, update, and delete operations should be supported for any retrievable set rather than just
for a single row in a single table.
 Rule 8: Physical data independence:
 Changes to the physical level (how the data is stored, whether in arrays or linked lists etc.) must not require a
change to an application based on the structure.
 Rule 9: Logical data independence:
 Changes to the logical level (tables, columns, rows, and so on) must not require a change to an application
based on the structure. Logical data independence is more difficult to achieve than physical data independence.
 Rule 10: Integrity independence:
 Integrity constraints must be specified separately from application programs and stored in the catalog. It must
be possible to change such constraints as and when appropriate without unnecessarily affecting existing
applications.
 Rule 11: Distribution independence:
 The distribution of portions of the database to various locations should be invisible to users of the database.
Existing applications should continue to operate successfully: 1.when a distributed version of the DBMS is first
introduced; and
 2.when existing distributed data are redistributed around the system.
 Rule 12: The nonsubversion rule:
 If the system provides a low-level (record-at-a-time) interface, then that interface cannot be used to subvert the
system, for example, bypassing a relational security or integrity constraint.
Properties of Relational Data Model
 1. Data is presented as a collection of relations.
 2. Each relation is depicted as a table.
 3. Columns are attributes that belong to the entity
modeled by the table (ex. In a student table, you
could have name, address, student ID, major, etc.).
 4. Each row ("tuple") represents a single entity (ex.
In a student table, John Smith, 14 Oak St, 9002342,
Accounting, would represent one student entity).
 5. Every table has a set of attributes that taken
together as a "key" (technically, a "superkey")
uniquely identifies each entity (Ex. In the student
table, “student ID” would uniquely identify each
student – no two students would have the same
student ID).
Rules 1. The order of tuples and attributes is not important. (Ex.
Attribute order not important…if you have name before address,
is the same as address before name).
 2. Every tuple is unique. This means that for every record in
a table there is something that uniquely identifies it from any
other tuple.
 3. Cells contain single values. This means that each cell in a
table can contain only one value.
 4. All values within an attribute are from the same
domain. This means that however the attribute is defined, the
values for each tuple fall into that definition. For example, if the
attribute is labeled as Date, you would not enter a dollar
amount, shirt size, or model number in that column, only dates.
 5. Table names in the database must be unique and attribute
names in tables must be unique. No two tables can have the
same name in a database. Attributes (columns) cannot have
the same name in a table. You can have two different tables
that have similar attribute names.
Later Life
Codd received the Turing Award
in 1981, the most prestigious
award in computer science. He
worked for IBM until he died in
Williams Island, Florida in 2003
at the age of 79.
Edgar f

More Related Content

What's hot (20)

DiseñO LóGico De Bases De Datos Para El Modelo Relacional
DiseñO LóGico De Bases De Datos Para El Modelo RelacionalDiseñO LóGico De Bases De Datos Para El Modelo Relacional
DiseñO LóGico De Bases De Datos Para El Modelo Relacional
 
Dbms viva questions
Dbms viva questionsDbms viva questions
Dbms viva questions
 
Types Of Keys in DBMS
Types Of Keys in DBMSTypes Of Keys in DBMS
Types Of Keys in DBMS
 
Nosql seminar
Nosql seminarNosql seminar
Nosql seminar
 
3 relational model
3 relational model3 relational model
3 relational model
 
Types dbms
Types dbmsTypes dbms
Types dbms
 
Structure of dbms
Structure of dbmsStructure of dbms
Structure of dbms
 
Introduction to database
Introduction to databaseIntroduction to database
Introduction to database
 
set operators.pptx
set operators.pptxset operators.pptx
set operators.pptx
 
Dbms database models
Dbms database modelsDbms database models
Dbms database models
 
Integridad de base de datos
Integridad de base de datosIntegridad de base de datos
Integridad de base de datos
 
Resumen sql-oracle
Resumen sql-oracleResumen sql-oracle
Resumen sql-oracle
 
Dwh lecture-07-denormalization
Dwh lecture-07-denormalizationDwh lecture-07-denormalization
Dwh lecture-07-denormalization
 
PASO DEL MODELO E/R AL MODELO RELACIONAL
PASO DEL MODELO E/R AL MODELO RELACIONALPASO DEL MODELO E/R AL MODELO RELACIONAL
PASO DEL MODELO E/R AL MODELO RELACIONAL
 
Dbms
DbmsDbms
Dbms
 
ADO
ADOADO
ADO
 
oracle Sql constraint
oracle  Sql constraint oracle  Sql constraint
oracle Sql constraint
 
Relational model
Relational modelRelational model
Relational model
 
Key and its different types
Key and its different typesKey and its different types
Key and its different types
 
File system vs DBMS
File system vs DBMSFile system vs DBMS
File system vs DBMS
 

Similar to Edgar f

Coddrules 120309094807-phpapp01
Coddrules 120309094807-phpapp01Coddrules 120309094807-phpapp01
Coddrules 120309094807-phpapp01dhruv patel
 
Coddrules 120309094848-phpapp02
Coddrules 120309094848-phpapp02Coddrules 120309094848-phpapp02
Coddrules 120309094848-phpapp02dhruv patel
 
Sql interview questions and answers
Sql interview questions and  answersSql interview questions and  answers
Sql interview questions and answerssheibansari
 
Codd's rules
Codd's rulesCodd's rules
Codd's rulesMohd Arif
 
Relational Database Management System part II
Relational Database Management System part IIRelational Database Management System part II
Relational Database Management System part IIKavithaA19
 
DATA STRUCTURES - SHORT NOTES
DATA STRUCTURES - SHORT NOTESDATA STRUCTURES - SHORT NOTES
DATA STRUCTURES - SHORT NOTESsuthi
 
Database Systems - introduction
Database Systems - introductionDatabase Systems - introduction
Database Systems - introductionJananath Banuka
 
Database Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfDatabase Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfrsujeet169
 
Database management system
Database management systemDatabase management system
Database management systemedudivya
 
Database management system
Database management systemDatabase management system
Database management systemedudivya
 
Week 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental ConceptsWeek 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental Conceptsoudesign
 

Similar to Edgar f (20)

Coddrules 120309094807-phpapp01
Coddrules 120309094807-phpapp01Coddrules 120309094807-phpapp01
Coddrules 120309094807-phpapp01
 
Codd rules
Codd rulesCodd rules
Codd rules
 
Coddrules 120309094848-phpapp02
Coddrules 120309094848-phpapp02Coddrules 120309094848-phpapp02
Coddrules 120309094848-phpapp02
 
Codd rules
Codd rulesCodd rules
Codd rules
 
Codd's 12 rules
Codd's 12 rulesCodd's 12 rules
Codd's 12 rules
 
Codds rules & keys
Codds rules & keysCodds rules & keys
Codds rules & keys
 
Sql interview questions and answers
Sql interview questions and  answersSql interview questions and  answers
Sql interview questions and answers
 
Codd's rules
Codd's rulesCodd's rules
Codd's rules
 
DBMS topic in PU
DBMS topic in PUDBMS topic in PU
DBMS topic in PU
 
Relational Database Management System part II
Relational Database Management System part IIRelational Database Management System part II
Relational Database Management System part II
 
Nagaraju
NagarajuNagaraju
Nagaraju
 
DATA STRUCTURES - SHORT NOTES
DATA STRUCTURES - SHORT NOTESDATA STRUCTURES - SHORT NOTES
DATA STRUCTURES - SHORT NOTES
 
Coddsrules
CoddsrulesCoddsrules
Coddsrules
 
Database Systems - introduction
Database Systems - introductionDatabase Systems - introduction
Database Systems - introduction
 
Rdbms
RdbmsRdbms
Rdbms
 
RDBMS
RDBMSRDBMS
RDBMS
 
Database Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfDatabase Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdf
 
Database management system
Database management systemDatabase management system
Database management system
 
Database management system
Database management systemDatabase management system
Database management system
 
Week 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental ConceptsWeek 1 Before the Advent of Database Systems & Fundamental Concepts
Week 1 Before the Advent of Database Systems & Fundamental Concepts
 

Recently uploaded

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxheathfieldcps1
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactdawncurless
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpinRaunakKeshri1
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...RKavithamani
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxRoyAbrique
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...Marc Dusseiller Dusjagr
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 

Recently uploaded (20)

The basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptxThe basics of sentences session 2pptx copy.pptx
The basics of sentences session 2pptx copy.pptx
 
Accessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impactAccessible design: Minimum effort, maximum impact
Accessible design: Minimum effort, maximum impact
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Student login on Anyboli platform.helpin
Student login on Anyboli platform.helpinStudent login on Anyboli platform.helpin
Student login on Anyboli platform.helpin
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
Privatization and Disinvestment - Meaning, Objectives, Advantages and Disadva...
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptxContemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
Contemporary philippine arts from the regions_PPT_Module_12 [Autosaved] (1).pptx
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
“Oh GOSH! Reflecting on Hackteria's Collaborative Practices in a Global Do-It...
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Staff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSDStaff of Color (SOC) Retention Efforts DDSD
Staff of Color (SOC) Retention Efforts DDSD
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdfTataKelola dan KamSiber Kecerdasan Buatan v022.pdf
TataKelola dan KamSiber Kecerdasan Buatan v022.pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 

Edgar f

  • 2. Early Life Edgar Frank (Ted) Codd, the youngest of seven children, was born August 19th, 1923, on the Isle of Portland in the county of Dorset on the south coast of England. His father was a leather manufacturer and his mother a schoolteacher. During the 1930s he attended Poole Grammar School in Dorset. He was awarded a full scholarship to Oxford University (Exeter College), where he initially read chemistry (1941 1942). In 1942—despite the fact that he was eligible for a deferment because of his studies— he volunteered for active duty and became a flight lieutenant in the Royal Air Force Coastal Command, flying Sunderlands. After the war he returned to Oxford to complete his studies, switching to mathematics and obtaining his degree in 1948. He emigrated to the United States soon after graduating in 1948.
  • 3. Education  Poole Grammar School, Poole, England (1930s); honors degree in mathematics (B.A., subsequently M.A.), Exeter College, Oxford University, England (1941 1942 and 1946 1948); M.Sc. and Ph.D., computer and communication sciences, University of Michigan, Ann Arbor, Michigan (1961 1965).
  • 4. Contribution  The relational model for database management is a database model based on first-order predicate logic, first formulated and proposed in 1969 by Edgar F. Codd.[1][2] In the relational model of a database, all data is represented in terms of tuples, grouped into relations. A database organized in terms of the relational model is a relational database. In the relational model, related records are linked together with a "key".  The purpose of the relational model is to provide a declarative method for specifying data and queries: users directly state what information the database contains and what information they want from it, and let the database management system software take care of describing data structures for storing the data and retrieval procedures for answering queries.
  • 5. Proposed Rules  Rule 0: The Foundation rule:  A relational database management system must manage its stored data using only its relational capabilities. The system must qualify as relational, as a database, and as a management system. For a system to qualify as a relational database management system (RDBMS), that system must use its relational facilities (exclusively) to manage the database.  Rule 1: The information rule:  All information in a relational database (including table and column names) is represented in only one way, namely as a value in a table.  Rule 2: The guaranteed access rule:  All data must be accessible. This rule is essentially a restatement of the fundamental requirement for primary keys. It says that every individual scalar value in the database must be logically addressable by specifying the name of the containing table, the name of the containing column and the primary key value of the containing row.  Rule 3: Systematic treatment of null values:  The DBMS must allow each field to remain null (or empty). Specifically, it must support a representation of "missing information and inapplicable information" that is systematic, distinct from all regular values (for example, "distinct from zero or any other number", in the case of numeric values), and independent of data type. It is also implied that such representations must be manipulated by the DBMS in a systematic way.  Rule 4: Active online catalog based on the relational model:  The system must support an online, inline, relational catalog that is accessible to authorized users by means of their regular query language. That is, users must be able to access the database's structure (catalog) using the same query language that they use to access the database's data.  Rule 5: The comprehensive data sublanguage rule:  The system must support at least one relational language that 1.Has a linear syntax  2.Can be used both interactively and within application programs,  3.Supports data definition operations (including view definitions), data manipulation operations (update as well as retrieval), security and integrity constraints, and transaction management operations (begin, commit, and rollback).
  • 6. Proposed Rules Cont’d.  Rule 6: The view updating rule:  All views that are theoretically updatable must be updatable by the system.  Rule 7: High-level insert, update, and delete:  The system must support set-at-a-time insert, update, and delete operators. This means that data can be retrieved from a relational database in sets constructed of data from multiple rows and/or multiple tables. This rule states that insert, update, and delete operations should be supported for any retrievable set rather than just for a single row in a single table.  Rule 8: Physical data independence:  Changes to the physical level (how the data is stored, whether in arrays or linked lists etc.) must not require a change to an application based on the structure.  Rule 9: Logical data independence:  Changes to the logical level (tables, columns, rows, and so on) must not require a change to an application based on the structure. Logical data independence is more difficult to achieve than physical data independence.  Rule 10: Integrity independence:  Integrity constraints must be specified separately from application programs and stored in the catalog. It must be possible to change such constraints as and when appropriate without unnecessarily affecting existing applications.  Rule 11: Distribution independence:  The distribution of portions of the database to various locations should be invisible to users of the database. Existing applications should continue to operate successfully: 1.when a distributed version of the DBMS is first introduced; and  2.when existing distributed data are redistributed around the system.  Rule 12: The nonsubversion rule:  If the system provides a low-level (record-at-a-time) interface, then that interface cannot be used to subvert the system, for example, bypassing a relational security or integrity constraint.
  • 7. Properties of Relational Data Model  1. Data is presented as a collection of relations.  2. Each relation is depicted as a table.  3. Columns are attributes that belong to the entity modeled by the table (ex. In a student table, you could have name, address, student ID, major, etc.).  4. Each row ("tuple") represents a single entity (ex. In a student table, John Smith, 14 Oak St, 9002342, Accounting, would represent one student entity).  5. Every table has a set of attributes that taken together as a "key" (technically, a "superkey") uniquely identifies each entity (Ex. In the student table, “student ID” would uniquely identify each student – no two students would have the same student ID).
  • 8. Rules 1. The order of tuples and attributes is not important. (Ex. Attribute order not important…if you have name before address, is the same as address before name).  2. Every tuple is unique. This means that for every record in a table there is something that uniquely identifies it from any other tuple.  3. Cells contain single values. This means that each cell in a table can contain only one value.  4. All values within an attribute are from the same domain. This means that however the attribute is defined, the values for each tuple fall into that definition. For example, if the attribute is labeled as Date, you would not enter a dollar amount, shirt size, or model number in that column, only dates.  5. Table names in the database must be unique and attribute names in tables must be unique. No two tables can have the same name in a database. Attributes (columns) cannot have the same name in a table. You can have two different tables that have similar attribute names.
  • 9.
  • 10. Later Life Codd received the Turing Award in 1981, the most prestigious award in computer science. He worked for IBM until he died in Williams Island, Florida in 2003 at the age of 79.