Chapter 16 Database Concepts Flashcards
What is a database?
structured and persistent store of data that is used on a computer system
What is an entity?
Object that data can be stored about
Example of an entity?
customers, products,sales
What does an entity become in a database?
A table
What is an attribute? What will it become in a table?
Something that an entity has , a property of it e.g. an entity of Products may have product id, stock, price etc.
It will become the columns
What do databases allow us to do?
- retrieve data quickly
- be updated easily
- change the view of it (for us or limit users)
- in 3NF avoids redundancy and limits storage use
meaning of structured in the definition of a database?
data i organised for ease of processing
meaning of persistent in the definition of a database?
can’t be lost, stored on secondary storage
What is a record?
a row in a table, it contains a number of fields containing data relating to a specific item within an entity
What is a field?
Something that stores one piece of data. property of an record in an entity
What does atomic mean?
Cannot be broken down anymore
What is a flat file database?
A database that consists of a single file/ entity
What would a flat file database be suitable for ?
e.g. all members in a club
What do flat file databases cause?
a lot of redundancy
What is redundancy?
- unnecessary repetition of data
- leads to inconsistencies
How is an entity usually written?
Entity1(Attribute1,Attribute2,Attribute3)
e.g. Customers(CustomerID,DOB,Address,Phone Number)
What is special about flat file databases?
They’re unnormalised
What is another name for a fields/row?
A tuple or a record
What is a primary key? - only relational databases
a unique identifier of each record in an entity
What is a secondary key? - relational databases
secondary key is a unique attribute used for indexing
When would a secondary key be useful? - example
When a customer calls with an enquiry about an order they may not know their ID so a secondary identifier can be used e.g. surname
What does secondary key allow?
quicker searching and easier identification(as possibilities become smaller)
What is a relational database?
Database where there is more than one entity, which share attributes using foreign keys
What is a foreign key?
A primary key used as an attirbute of another table used to link the entities together. Essentially a primary of the entity that one entity is linked with.
What is a foreign key used for ?
Linking entities in a relational database
What does having a relational database reduce? How?
- what does this improve
Data redundancy. As foreign keys are used to put primary keys into other tables - those are entered once
increases accuracy and consistency of data
What are the three types of relationships between entities
exmple for each
one to one - husband to wife
one to many - mother and child
many to many - student and course
What is a one to one relationship?
where one entity can be linked to only one entity
e. g. tutor and office
e. g. headteacher and school
What is a many to many relationship?
where multiple entites can be linked to multiple entities
e. g. teacher and student
e. g. student and course
What is a one to many relationship?
where one enity can be linked to many entites
e. g.customer and order
e. g. borrower and library books
How can we show relationships between entites visually?
using entity relationship diagrams
What is a composite key?
where 2 or more attributes are used to describe a primary key
What is indexing
The process of creating a database structure called index which will improve speed of retrieval of data
Using entity relationship diagrams how will a one to one relationship be shown?
By a line
Using entity relationship diagrams how will a one to many relationship be shown?
By a line with a chicken foot by the entity of many
Using entity relationship diagrams how will a many to many relationship be shown?
Firstly a new entity will be created. Which will be in the middle and be connected by a chicken foot both sides. Then there will be a one to many relationship between the new enitity and original entities with the new entity being the many!
Do flat file databases have a foreign key?
NO
When we have new entity created to show many to many relationship what is the name of the key of the new entity?
A composite key
What is used with indexing ?
a secondary key
What are the 4 types of query?
select (can be used for filter and sort),append,update,delete
What is a report?
A query of data from a database which is presented in a readable and clear way.
What is a query?
an action on a database
Another name for a table in a relational database?
relation