You are on page 1of 7

DBD631

WELCOME TO
LEARNING UNIT 1

Prescribed Book:
Please refer to the “Study Guide
DBD631_V_2020“ and work through the
prescribed book’s sections that are associated
with this presentation’s Learning Unit(s).

Title: Developing SQL Databases, First Edition


Book Author: Stacia Varga, Louis Davidson
Book ISBN: 9781509304929

2020 CTU Training Solutions | All Rights Reserved | ctutraining.ac.za


TEXTBOOK AND VIDEOS
Watch the following videos (1 hour 10 min):
TEXTBOOK AND VIDEOS

Exam Reference 70-762 (Safari Nr. 9781509304929):


Do Skill 1.1 in the text book.

2020 CTU Training Solutions | All Rights Reserved | ctutraining.ac.za


SCHEMAS
A Database without Schemas:
If you have a business with multiple branches, all tables in the DB must be linked to the Branch
table, so that their individual records can be linked to the specific Branch.

Parents_tbl
ParentID (PK)
ParentName
BranchID (FK)
Branch_tbl
BranchID (PK)
BranchName
Children_tbl
ChildID (PK)
ChildName
ParentID (FK)
BranchID (FK)
SCHEMAS
A Database with Schemas:
Each Branch gets its own schema and they could all have identical tables.

Stellenbosch Schema Pretoria Schema

Parents_tbl Parents_tbl
ParentID (PK) ParentID (PK)
ParentName ParentName

Children_tbl Children_tbl
ChildID (PK) ChildID (PK)
ChildName ChildName
ParentID (FK) ParentID (FK)
TEXTBOOK AND VIDEOS
To show the creation of files in different scemas, work trough
TEXTBOOK AND VIDEOS

file: SQL Create TestDB

2020 CTU Training Solutions | All Rights Reserved | ctutraining.ac.za


HOMEWORK
Work through these examples on normalization
https://www.studytonight.com/dbms/first-normal-form.php
HOMEWORK

Exam Reference 70-762 (Safari Nr. 9781509304929):


Work through Skill 1.1 in detail.

2020 CTU Training Solutions | All Rights Reserved | ctutraining.ac.za

You might also like