Databases

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/81

flashcard set

Earn XP

Description and Tags

Made from Ada comp. sci. and PMT comp. sci. notes

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

82 Terms

1
New cards

What is a data base?

An organised collection of data

2
New cards

What is a flat file data base?

A data base in which all the required data is stored in a single file

3
New cards

Benefits of databases

  • Improving the integrity of data

  • Reducing the amount of unnecessarily duplicated data

  • Making it quicker and easier to keep data up to date

  • Being able to combine data in different ways to produce useful information

4
New cards

What is DBMS the abreviation of?

Abreviation of database management system

5
New cards

What is a database management system?

A software application that allows a database administrator to maintain one or more relational databases

6
New cards

Typical features of a database management system

Provides a graphical user interface that allows the user to:

  • modify the database structure

  • create indexes

  • optimise the database

  • browse data

7
New cards

Whata are database applications?

Software programs designed to retrieve, manage, distribute, and present information effectively

8
New cards

What is a table?

A collection of related data that represents an entity

9
New cards

What is an entity?

An item/object of interest about which information is stored

10
New cards

Non-prime attribute

Attribute that is not part of an candidate key

11
New cards

Candidate key

F

12
New cards

Primary key

A field that uniquely identifies each record in the table. A table can only have one _____

13
New cards

Composite key

Combination of 2 or more fields that uniqualy identify each record in a table

14
New cards

Foreign key

  • An attribute in a table that appears as the primary key in another table.

  • It links two tables together

15
New cards

What is the purpose of a secondary key?

To allow a database to be searched quickly

16
New cards

What is an attribute?

A characteristic of an entity

17
New cards

What are the three main category of relationships?

  • One-to-one

  • One-to-many

  • Many-to-many

18
New cards

One-to-one relationship

When one instance of an entity is linked to only one instance of another entity

19
New cards

One-to-many relationship

When one instance of an entity is linked with multiple instances of another entity.

20
New cards

Many-to-many relationship

When multiple instances of an entity are linked with multiple instances of another entity. Not allowed in 3NF

21
New cards

What is ER diagram the abreviation of?

Abreviation of entity-relationship diagram

22
New cards

Entity-relationship diagrams

  • Entities represented as boxes

  • Relationships represented by lines, which show how many of one entity can be linked to another entity

  • Straight line at one end means one

  • Splayed line (crows foot) means many

  • Attributes of an entity can be shown in ovals connected to the entity by a line

  • Relationship can by labelled

<ul><li><p>Entities represented as boxes</p></li><li><p>Relationships represented by lines, which show how many of one entity can be linked to another entity</p></li><li><p>Straight line at one end means one</p></li><li><p>Splayed line (crows foot) means many</p></li><li><p>Attributes of an entity can be shown in ovals connected to the entity by a line</p></li><li><p>Relationship can by labelled</p></li></ul><p></p>
23
New cards

one-to-one ER diagram

knowt flashcard image
24
New cards

one-to-many ER diagram

knowt flashcard image
25
New cards

many-to-many ER diagram

knowt flashcard image
26
New cards

Pupose of a link/junction table

Allows many-to-many relationships to be implemented in a relational database by breaking this relationship into a one-to-many relationship between each of the tow entities and the _____ table.

<p>Allows many-to-many relationships to be implemented in a relational database by breaking this relationship into a one-to-many relationship between each of the tow entities and the _____ table.</p>
27
New cards

First normal form (1NF)

A database in which:

  • All cells are atomic (contains one value)

  • Has a pimary key - every record is uniquely identified

  • Each field only holds a 1 type of information

  • No Repeating fields/data

28
New cards

Second normal form (2NF)

  • Database that is in the 1NF

  • Database that has no partial dependencies - every field is dependent on the primary key. 

29
New cards

Partial dependancy

When a non-prime attribute is functionally dependant on only part of a composite key

30
New cards

Third normal form (3NF)

  • Database that is in the 2NF

  • Database has no transitive dependencies / no-key dependencies

31
New cards

Non-key dependency

When an attribute depends on value(s) of fields that are not the primary key or part of the primary key

32
New cards

Dependency

A value that varies in line with another value.

33
New cards

What does normalisation aim to achieve?

  • No redundancy (unnecessary duplicates).

  • Consistent data throughout linked tables.

  • Allow records to be added and removed without issues.

  • Allow complex queries can be carried out

34
New cards

Normalisation

Process of coming up with the best possible layout for a relational database

35
New cards

Data consistency

When a database transaction can only change data in acceptable ways - ways that follow a pre-defined set of rules

36
New cards

Data redundancy

When there is duplication of data or unnecessary data is kept in the database

37
New cards

Data integrity

The reliability of data in terms of its accuracy, completeness, and consistency

38
New cards

Transaction

A single logical unit of work. Can be made up of multiple steps. Example is transferring money from a current bank account to a svaings account.

39
New cards

Serialisation

Making sure that when two or more transactions are executed concurrently, the effect should be the same as if they had been executed serially (in order, one after the other)

40
New cards

Record locking

Process of preventing simultaneous access to records in a database. Prevents data inconsistencies or a loss of updates.

41
New cards

ACID test

Set of properties of database transactions that will guarantee the integrity of data:

  • Atomicity - components of a transaction are atomic, i.e. indivisible. The whole transaction must succeed or fail.

  • Consistency - ensures that an illegal transaction is rejected so that the integrity of the database is upheld.

  • Isolation - ensures that each transaction will be isolated and dealt with in a way that does not affect others.

  • Durability - ensures that data is saved once a transaction has been completed. Even if there is a hardware failure immediately after a transaction, the data will be safe.

42
New cards

Indexing

Method used to store the position of each record ordered by a certain attribute (normally secondary key). This is used to look up and access data quickly.

43
New cards

Relational database

A database which recognises the difference between entities and uses different tables for each entity.

44
New cards

What is capturing data?

The process of getting the information that will be stored in the database.

45
New cards

What method do banks use to capture data from cheques?

Magnetic Ink Character Recognition (MICR) is used for all of the details apart from the amount which must be entered manually.

46
New cards

Selecting data

The process of removing excess information to extract only the data you require.

47
New cards

Managing data

Manipulating the information collected in any type of way such as through sorting through it or selecting certain parts using SQL

48
New cards

What is the most common language used to manipulate data in databases?

SQL

49
New cards

What is SQL an abreviation for

Abreviation of Structured Query Language

50
New cards

Structured Query Language (SQL)

  • A declarative language used to manipulate databases.

  • It enables the creating, removing and updating of databases

51
New cards

Record

  • One row of the table

  • It holds all the related fields of data about that one entry

52
New cards

Field

One item of data in a record

53
New cards

Is SQL case sensitive?

____ is not case sensitive

54
New cards

What case are SQL keywords written in, and why?

  • ___ keywords written in upercase

  • This helps with readability

55
New cards

What do SQL statments always end with?

___ statements are terminated with a semicolon

56
New cards

5 SQL data types you need to know

  • Text

  • Date fields

  • Time fields

  • Numeric fields

  • Boolean fields

57
New cards

Format of text in SQL

  • A string value contained in single quotation marks

  • Example: ‘Some random text’

58
New cards

Format of data field in SQL

  • Contained in single quotation marks and usually written in the form ‘YYYY-MM-DD’

  • Example: ‘1912-06-23’

59
New cards

Format of time fields in SQL

  • Contained in single quotation marks and commonly written in the 24h fromat ‘hh:mm:ss’

  • Example: ‘21:12:12’

60
New cards

Format of numeric fields in SQL

  • Not conatained in quotation marks

  • Stored as pure numbers (so no characters like currency symbols or other formating characters)

61
New cards

Format of boolean fields in SQL

  • Either TRUE or FALSE

  • Used without quotation marks

62
New cards

Rules for identifiers in SQL

  • Names must begin with a letter

  • Names can only consist of letters, numbers, and underscores

  • Names cannot be SQL keywords (watch out for ORDER)

  • Names should not include spaces

63
New cards

How to create table in SQL

Use the CREATE keyword. For example:

CREATE TABLE TableName
(
    Attribute1 INTEGER NOT NULL, PRIMARY KEY,
    Attribute2 VARCHAR(20) NOT NULL,
    …
);

64
New cards

What must be specified for each attribute when createing a table in SQL?

  • Whether it is the primary key

  • Its data type

  • Whether it must be filled in (‘Not Null’)

65
New cards

How to retrieve fields from a given table in SQL?

  • Use a SELECT statement

  • SELECT, FROM, WHERE, ORDER BY:

SELECT first_name, fav_num, date_of_birth
FROM some_info
WHERE first_name = 'John' AND fav_num > 12 AND date_of_birth < '2012-12-12'
ORDER BY fav_num DESC;

66
New cards

How to get all available fields from the table my_table in SQL

SELECT *
FROM my_table

67
New cards

FROM statement

Specifies which table is being accessed or modified

68
New cards

WHERE statment

Specifies a criteria used to select which records will be accessed or modified

69
New cards

ORDER BY statement

  • Specifies how to sort results

  • Used with ASC or DESC for ascending and descending respectively

70
New cards

JOIN statement

Provides a method of combining rows from multiple tables based on a common field between them. For example:

SELECT Movie.MovieTitle, Director.DirectorName, Movie.MovieCompany
FROM Movie
JOIN Director
ON Movie.DirectorName = Director.DirectorName;

71
New cards

How to add new record to a table

Use INSERT INTO statement. For example:

INSERT INTO (column1, column2, ...)
VALUES (value1, value2, ...)

72
New cards

INSERT INTO statment

Used to insert a new record into a database table

73
New cards

How to update records in a table

Use and UPDATE, SET, WHERE. For example:

UPDATE TableName
SET column1 = value1, column2 = value2, ... 
Where columnX = value

74
New cards

UPDATE statment

Used to update a record in a database table

75
New cards

How to delete records from a table

Use DELETE, WHERE. For example:

DELETE FROM TableName
WHERE columnX = value

76
New cards

DELETE statement

Used to delete records from a table

77
New cards

How to add a column to a table using SQL

ALTER TABLE TableName
ADD AttributeX and their dataTypes

78
New cards

How to delete a column of a table using SQL

ALTER TABLE TableName
DROP COLUMN AttributeX

79
New cards

How to change the data type of a column using SQL

ALTER TABLE TableName
MODIFY COLUMN AttributeX NewDataType

80
New cards

ALTER statement

Used to add, delete or modify the columns in a table

81
New cards

How to delete a table using SQL

DROP TABLE table_name;

82
New cards

How to delete a databse using SQL

DROP DATABASE DB_name;