0% found this document useful (0 votes)
34 views5 pages

Mapping

The document describes transforming data from a source database to a target data warehouse. It includes tables, columns and data types from the source database and target data warehouse. Transformation rules are defined to break names into first and last, and move phone numbers to the correct type while matching data constraints. Test cases are loaded to validate the data transfer.

Uploaded by

John Perry E
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
34 views5 pages

Mapping

The document describes transforming data from a source database to a target data warehouse. It includes tables, columns and data types from the source database and target data warehouse. Transformation rules are defined to break names into first and last, and move phone numbers to the correct type while matching data constraints. Test cases are loaded to validate the data transfer.

Uploaded by

John Perry E
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as XLSX, PDF, TXT or read online on Scribd
You are on page 1/ 5

Database

Database
Database

Table
Person
Person
Contact
Contact
Contact

Column
Full Name
Full Name
PhoneNumber
PhoneNumber
PhoneNumber

Data Type
Char(10)
Char(10)
Number
Number
Number

Nullability
NULL
NULL
Null
Null
Null

Source Database
Notes
Break the name in to first after the first space
Break the full name and move only second half of the name after first space
Check the respective type number and while moving it should match target constraint

Type

Personal
Work
Mobile

Transforamtion rule

Constraints

Database
Datawarehouse
Datawarehouse

Table
Informations
Informations
Contact
Contact
Contact

Column
First Name
Second Name
PersonalNumber
WorkNumber
MobileNumber

Target Database
Data Type Nullability Notes
Varchar(15) Not Null
Varchar(15) Not Null
Varchar(13)
Varchar(13)
Varchar(13)

Test Case Loaded


Yes

Constraints

(123)456-7890
(123)456-7891
(123)456-7892

You might also like