SlideShare a Scribd company logo
Fall 2013
insert into
'Advanced_Database_Course’
('Title','Author') values(
‘Object-Based Databases‘,
‘Farzad Nozarian‘
);
•Summary
Overview1
Complex Data Types2
Structured Types and
Inheritance in SQL
3
Structured Types3.1
Type Inheritance3.2
•Summary
Table Inheritance4
Array and Multiset Types in SQL5
Querying Collection-Valued
Attributes
5.2
Nesting and Unnesting5.3
Creating and Accessing
Collection Values
5.1
Overview
• richer type system including complex data types and
object orientation
•Overview
Obstacles using the relational data model
Object-relational database systems
• limited type system support
• difficulty in accessing database data from in C++ or Java
Object-relational data model
• migrate for users who wish to use object-oriented features
•Overview
Persistence
Storage
management
Concurrency
Recovery
Querying
DBMS
Object-Oriented Database
complex objects
object identity
encapsulation
types & classes
class hierarchy
extensibility
Computational
completeness
overriding &
overloading
Object-Oriented System
+
•Overview
• Motivation for the development of complex data types
• Object-relational database systems
• Supporting persistence for data
• object-oriented database system
• object-relational mapping
• Object-relational approach Vs. object-oriented approach
Overview
Complex Data Types
•Complex Data Types
Example1 : addresses
Example 2: phone numbers
(street, address, city, state, postal code)
Atomic data item of type string
A better alternative structured data types
The alternative of normalization by creating a
new relation is expensive and artificial for this example.
Using normalization ?!
•Complex Data Types
A library application
satisfies 4NF
Several domains will be non-atomic
•Complex Data Types
The 4NF design requires queries to join multiple relations,
whereas the non-1NF design makes many types of queries
easier.
The typical user or programmer of an information-retrieval
system thinks of the database in terms of books having sets
of authors, as the non-1NF design models.
Overview
Complex Data Types
Structured Types and Inheritance in SQL
•Structured Types and Inheritance in SQL
Structured Types
Allow composite attributes of E-R designs to be
represented directly
create type Name as
(firstname varchar(20),
lastname varchar(20)) final;
create type Address as(street varchar(20),
city varchar(20),
zipcode varchar(9))
not final;
•Structured Types and Inheritance in SQL
Structured Types
We can now use these types to create
composite attributes in a relation
create table person(
name Name,
address Address,
dateOfBirth date);
The components of a composite attribute can
be accessed using a “dot” notation
•Structured Types and Inheritance in SQL
Structured Types
We can also create a table whose rows are of a
user-defined type
create type PersonType as (
name Name,
address Address,
dateOfBirth date)
not final
create table person
of PersonType;
•Structured Types and Inheritance in SQL
Structured Types
An alternative way of defining composite
attributes in SQL is to use types.
create table person_r(
name row (firstname varchar(20),lastname varchar(20)),
address row (street varchar(20),city varchar(20),zipcode
varchar(9)),
dateOfBirth date);
select name.lastname,address.city
from person;
name and address have
rows of the table also have an !
finds the last name and city of each person
•Structured Types and Inheritance in SQL
Structured Types
create type PersonType as (
name Name,
address Address,
dateOfBirth date)
not final
method ageOnDate(onDate date)
returns interval year;
A structured
type can have
methods
defined on it !
•Structured Types and Inheritance in SQL
Structured Types
Can I create the method body separately ?
create instance method ageOnDate(onDate date)
returns interval year
for PersonType
begin
return onDate−self.dateOfBirth;
end
• which type this method is for
can contain
procedural statements!
• refers to the Person instance on which the method is invoked
• this method executes on an instance of the Person type
Yes !
How to find the age
of each person ?
•Structured Types and Inheritance in SQL
Structured Types
select name.lastname,
ageOnDate(current_date)
from person;
create function Name( firstname varchar(20), lastname varchar(20) )
returns Name
begin
set self.firstname = firstname;
set self.lastname = lastname;
end
•Structured Types and Inheritance in SQL
Structured Types
constructor functions are used to create values of structured types
How we can create a value of Name type ?
new Name(’John’, ’Smith’)
•Structured Types and Inheritance in SQL
Structured Types
Example : Create a new tuple in the Person
relation
insert into Person
values
( new Name(’John’, ’Smith’),
new Address(’20 Main St’, ’New York’, ’11001’),
date ’1960-8-22’);
Note !
By default every structured type has a constructor with no arguments,
which sets the attributes to their default values
•Structured Types and Inheritance in SQL
Type Inheritance
create type Person
(name varchar(20),
address varchar(20));
create type Student
under Person
(degree varchar(20),
department varchar(20));
create type Teacher
under Person
(salary integer,
department varchar(20));
•Structured Types and Inheritance in SQL
Type Inheritance
Can you create a TeachingAssistant type ?
Methods of a structured type are inherited by its
subtypes using overriding method
The keyword final says that subtypes may not be
created from the given type
not final says that subtypes may be created.
create type TeachingAssistant
under Student, Teacher;
Yes !
•Structured Types and Inheritance in SQL
Type Inheritance
any problem ?!
name
address in
department in
Person
Teacher
Student
create type TeachingAssistant
under Student with(department as student_dept),
Teacher with(department as teacher_dept);
Note!
The SQL standard
does not support
multiple inheritance
Overview
Complex Data Types
Structured Types and Inheritance in SQL
Table Inheritance
•Table Inheritance
Subtables in SQL correspond to the E-R notion of
specialization/generalization.
create table people of Person;
create table students of Student
under people;
create table teachers of Teacher
under people;
•Table Inheritance
Question
delete from people where P ;only people
Array and Multiset Types in SQL
Overview
Complex Data Types
Structured Types and Inheritance in SQL
Table Inheritance
•Array and Multiset Types in SQL
SQL supports two collection types
arrays
multisets
SQL:1999
SQL:2003
create type Publisher as
(name varchar(20),
branch varchar(20));
create type Book as
(title varchar(20),
author_array varchar(20) array[10],
pub_date date,
publisher Publisher,
keyword_set varchar(20) multiset);
create table books of Book;
•Array and Multiset Types in SQL
Creating and Accessing Collection Values
An array of values can be created in SQL:1999 in this way:
array[’Silberschatz’, ’Korth’, ’Sudarshan’]
A multiset of keywords can be constructed as follows:
multiset[’computer’, ’database’, ’SQL’]
insert into books
values (’Compilers’, array[’Smith’, ’Jones’],
new Publisher(’McGraw-Hill’, ’New York’),
multiset [’parsing’, ’analysis’] );
But, How we
can access or
update
elements of an
array ?
•Array and Multiset Types in SQL
Querying Collection-Valued Attributes
find all books that have the
word “database” as one of
their keywords
select title from books
where ’database’ in (
unnest (keyword_set) );
select author_array[1],author_array[2],author_array[3]
from books
where title = ’Database System Concepts’;
•Array and Multiset Types in SQL
Querying Collection-Valued Attributes
select B.title, A.author
from books as B, unnest (B.authorarray) as
A(author);
select title, A.author, A.position
from books as B,
unnest(B.author_array) with ordinality as A(author,
position);
Thanks

More Related Content

What's hot

XML schemas
XML schemasXML schemas
Xml basics concepts
Xml basics conceptsXml basics concepts
Xml basics concepts
Manjeet Singh
 
Revision sql te it new syllabus
Revision sql te it new syllabusRevision sql te it new syllabus
Revision sql te it new syllabus
saurabhshertukde
 
PO WER - Piotr Mariat - Sql
PO WER - Piotr Mariat - SqlPO WER - Piotr Mariat - Sql
PO WER - Piotr Mariat - Sql
Zespół Szkół nr 26
 
Xml 2
Xml  2 Xml  2
Relational database management system
Relational database management systemRelational database management system
Relational database management system
Praveen Soni
 
Sql - Structured Query Language
Sql - Structured Query LanguageSql - Structured Query Language
Sql - Structured Query Language
Wan Hussain Wan Ishak
 
Xml schema
Xml schemaXml schema
Xml schema
Harry Potter
 
SQL Overview
SQL OverviewSQL Overview
SQL Overview
Stewart Rogers
 
Structured Query Language (SQL)
Structured Query Language (SQL)Structured Query Language (SQL)
Structured Query Language (SQL)
Syed Hassan Ali
 
XML Schema
XML SchemaXML Schema
XML Schema
Kumar
 

What's hot (11)

XML schemas
XML schemasXML schemas
XML schemas
 
Xml basics concepts
Xml basics conceptsXml basics concepts
Xml basics concepts
 
Revision sql te it new syllabus
Revision sql te it new syllabusRevision sql te it new syllabus
Revision sql te it new syllabus
 
PO WER - Piotr Mariat - Sql
PO WER - Piotr Mariat - SqlPO WER - Piotr Mariat - Sql
PO WER - Piotr Mariat - Sql
 
Xml 2
Xml  2 Xml  2
Xml 2
 
Relational database management system
Relational database management systemRelational database management system
Relational database management system
 
Sql - Structured Query Language
Sql - Structured Query LanguageSql - Structured Query Language
Sql - Structured Query Language
 
Xml schema
Xml schemaXml schema
Xml schema
 
SQL Overview
SQL OverviewSQL Overview
SQL Overview
 
Structured Query Language (SQL)
Structured Query Language (SQL)Structured Query Language (SQL)
Structured Query Language (SQL)
 
XML Schema
XML SchemaXML Schema
XML Schema
 

Similar to Unit 1 object-baseddatabases-160503160727

9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS
koolkampus
 
Object relational and extended relational databases
Object relational and extended relational databasesObject relational and extended relational databases
Object relational and extended relational databases
Suhad Jihad
 
215 oodb
215 oodb215 oodb
215 oodb
trhtom90
 
Oodb
OodbOodb
Oodb
OodbOodb
OODB
OODBOODB
OODB
rajukc47
 
ch9
ch9ch9
Chapter2
Chapter2Chapter2
Chapter2
ssuser05420e
 
Ch9
Ch9Ch9
Alternatives of JPA/Hibernate
Alternatives of JPA/HibernateAlternatives of JPA/Hibernate
Alternatives of JPA/Hibernate
Sunghyouk Bae
 
Object oriented database
Object oriented databaseObject oriented database
Object oriented database
Md. Hasan Imam Bijoy
 
SQLITE Android
SQLITE AndroidSQLITE Android
SQLITE Android
Sourabh Sahu
 
Databases, SQL and MS SQL Server
Databases, SQL and MS SQL ServerDatabases, SQL and MS SQL Server
Databases, SQL and MS SQL Server
Doncho Minkov
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
baabtra.com - No. 1 supplier of quality freshers
 
My sql
My sqlMy sql
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
baabtra.com - No. 1 supplier of quality freshers
 
lecture5.ppt
lecture5.pptlecture5.ppt
lecture5.ppt
Javaid Iqbal
 
Tech Gupshup Meetup On MongoDB - 24/06/2016
Tech Gupshup Meetup On MongoDB - 24/06/2016Tech Gupshup Meetup On MongoDB - 24/06/2016
Tech Gupshup Meetup On MongoDB - 24/06/2016
Mukesh Tilokani
 
Obtain better data accuracy using reference tables
Obtain better data accuracy using reference tablesObtain better data accuracy using reference tables
Obtain better data accuracy using reference tables
Kiran Venna
 
Structure in C language
Structure in C languageStructure in C language
Structure in C language
CGC Technical campus,Mohali
 

Similar to Unit 1 object-baseddatabases-160503160727 (20)

9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS9. Object Relational Databases in DBMS
9. Object Relational Databases in DBMS
 
Object relational and extended relational databases
Object relational and extended relational databasesObject relational and extended relational databases
Object relational and extended relational databases
 
215 oodb
215 oodb215 oodb
215 oodb
 
Oodb
OodbOodb
Oodb
 
Oodb
OodbOodb
Oodb
 
OODB
OODBOODB
OODB
 
ch9
ch9ch9
ch9
 
Chapter2
Chapter2Chapter2
Chapter2
 
Ch9
Ch9Ch9
Ch9
 
Alternatives of JPA/Hibernate
Alternatives of JPA/HibernateAlternatives of JPA/Hibernate
Alternatives of JPA/Hibernate
 
Object oriented database
Object oriented databaseObject oriented database
Object oriented database
 
SQLITE Android
SQLITE AndroidSQLITE Android
SQLITE Android
 
Databases, SQL and MS SQL Server
Databases, SQL and MS SQL ServerDatabases, SQL and MS SQL Server
Databases, SQL and MS SQL Server
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
 
My sql
My sqlMy sql
My sql
 
Chapter 1 introduction to sql server
Chapter 1 introduction to sql serverChapter 1 introduction to sql server
Chapter 1 introduction to sql server
 
lecture5.ppt
lecture5.pptlecture5.ppt
lecture5.ppt
 
Tech Gupshup Meetup On MongoDB - 24/06/2016
Tech Gupshup Meetup On MongoDB - 24/06/2016Tech Gupshup Meetup On MongoDB - 24/06/2016
Tech Gupshup Meetup On MongoDB - 24/06/2016
 
Obtain better data accuracy using reference tables
Obtain better data accuracy using reference tablesObtain better data accuracy using reference tables
Obtain better data accuracy using reference tables
 
Structure in C language
Structure in C languageStructure in C language
Structure in C language
 

Recently uploaded

Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
sayalidalavi006
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
Celine George
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Fajar Baskoro
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
Academy of Science of South Africa
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
Scholarhat
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
paigestewart1632
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
Dr. Mulla Adam Ali
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
Celine George
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
RAHUL
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
Priyankaranawat4
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
AyyanKhan40
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Akanksha trivedi rama nursing college kanpur.
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
Nicholas Montgomery
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
Colégio Santa Teresinha
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
eBook.com.bd (প্রয়োজনীয় বাংলা বই)
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
Nicholas Montgomery
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
Nguyen Thanh Tu Collection
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Excellence Foundation for South Sudan
 

Recently uploaded (20)

Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5Community pharmacy- Social and preventive pharmacy UNIT 5
Community pharmacy- Social and preventive pharmacy UNIT 5
 
How to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold MethodHow to Build a Module in Odoo 17 Using the Scaffold Method
How to Build a Module in Odoo 17 Using the Scaffold Method
 
Pengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptxPengantar Penggunaan Flutter - Dart programming language1.pptx
Pengantar Penggunaan Flutter - Dart programming language1.pptx
 
South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)South African Journal of Science: Writing with integrity workshop (2024)
South African Journal of Science: Writing with integrity workshop (2024)
 
Azure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHatAzure Interview Questions and Answers PDF By ScholarHat
Azure Interview Questions and Answers PDF By ScholarHat
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
Cognitive Development Adolescence Psychology
Cognitive Development Adolescence PsychologyCognitive Development Adolescence Psychology
Cognitive Development Adolescence Psychology
 
Hindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdfHindi varnamala | hindi alphabet PPT.pdf
Hindi varnamala | hindi alphabet PPT.pdf
 
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptxChapter 4 - Islamic Financial Institutions in Malaysia.pptx
Chapter 4 - Islamic Financial Institutions in Malaysia.pptx
 
How to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 InventoryHow to Setup Warehouse & Location in Odoo 17 Inventory
How to Setup Warehouse & Location in Odoo 17 Inventory
 
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UPLAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
LAND USE LAND COVER AND NDVI OF MIRZAPUR DISTRICT, UP
 
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdfANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
ANATOMY AND BIOMECHANICS OF HIP JOINT.pdf
 
PIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf IslamabadPIMS Job Advertisement 2024.pdf Islamabad
PIMS Job Advertisement 2024.pdf Islamabad
 
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama UniversityNatural birth techniques - Mrs.Akanksha Trivedi Rama University
Natural birth techniques - Mrs.Akanksha Trivedi Rama University
 
writing about opinions about Australia the movie
writing about opinions about Australia the moviewriting about opinions about Australia the movie
writing about opinions about Australia the movie
 
MARY JANE WILSON, A “BOA MÃE” .
MARY JANE WILSON, A “BOA MÃE”           .MARY JANE WILSON, A “BOA MÃE”           .
MARY JANE WILSON, A “BOA MÃE” .
 
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdfবাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
বাংলাদেশ অর্থনৈতিক সমীক্ষা (Economic Review) ২০২৪ UJS App.pdf
 
Film vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movieFilm vocab for eal 3 students: Australia the movie
Film vocab for eal 3 students: Australia the movie
 
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
BÀI TẬP BỔ TRỢ TIẾNG ANH 8 CẢ NĂM - GLOBAL SUCCESS - NĂM HỌC 2023-2024 (CÓ FI...
 
Your Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective UpskillingYour Skill Boost Masterclass: Strategies for Effective Upskilling
Your Skill Boost Masterclass: Strategies for Effective Upskilling
 

Unit 1 object-baseddatabases-160503160727

  • 1. Fall 2013 insert into 'Advanced_Database_Course’ ('Title','Author') values( ‘Object-Based Databases‘, ‘Farzad Nozarian‘ );
  • 2. •Summary Overview1 Complex Data Types2 Structured Types and Inheritance in SQL 3 Structured Types3.1 Type Inheritance3.2
  • 3. •Summary Table Inheritance4 Array and Multiset Types in SQL5 Querying Collection-Valued Attributes 5.2 Nesting and Unnesting5.3 Creating and Accessing Collection Values 5.1
  • 5. • richer type system including complex data types and object orientation •Overview Obstacles using the relational data model Object-relational database systems • limited type system support • difficulty in accessing database data from in C++ or Java Object-relational data model • migrate for users who wish to use object-oriented features
  • 6. •Overview Persistence Storage management Concurrency Recovery Querying DBMS Object-Oriented Database complex objects object identity encapsulation types & classes class hierarchy extensibility Computational completeness overriding & overloading Object-Oriented System +
  • 7. •Overview • Motivation for the development of complex data types • Object-relational database systems • Supporting persistence for data • object-oriented database system • object-relational mapping • Object-relational approach Vs. object-oriented approach
  • 9. •Complex Data Types Example1 : addresses Example 2: phone numbers (street, address, city, state, postal code) Atomic data item of type string A better alternative structured data types The alternative of normalization by creating a new relation is expensive and artificial for this example. Using normalization ?!
  • 10. •Complex Data Types A library application satisfies 4NF Several domains will be non-atomic
  • 11. •Complex Data Types The 4NF design requires queries to join multiple relations, whereas the non-1NF design makes many types of queries easier. The typical user or programmer of an information-retrieval system thinks of the database in terms of books having sets of authors, as the non-1NF design models.
  • 12. Overview Complex Data Types Structured Types and Inheritance in SQL
  • 13. •Structured Types and Inheritance in SQL Structured Types Allow composite attributes of E-R designs to be represented directly create type Name as (firstname varchar(20), lastname varchar(20)) final; create type Address as(street varchar(20), city varchar(20), zipcode varchar(9)) not final;
  • 14. •Structured Types and Inheritance in SQL Structured Types We can now use these types to create composite attributes in a relation create table person( name Name, address Address, dateOfBirth date); The components of a composite attribute can be accessed using a “dot” notation
  • 15. •Structured Types and Inheritance in SQL Structured Types We can also create a table whose rows are of a user-defined type create type PersonType as ( name Name, address Address, dateOfBirth date) not final create table person of PersonType;
  • 16. •Structured Types and Inheritance in SQL Structured Types An alternative way of defining composite attributes in SQL is to use types. create table person_r( name row (firstname varchar(20),lastname varchar(20)), address row (street varchar(20),city varchar(20),zipcode varchar(9)), dateOfBirth date); select name.lastname,address.city from person; name and address have rows of the table also have an ! finds the last name and city of each person
  • 17. •Structured Types and Inheritance in SQL Structured Types create type PersonType as ( name Name, address Address, dateOfBirth date) not final method ageOnDate(onDate date) returns interval year; A structured type can have methods defined on it !
  • 18. •Structured Types and Inheritance in SQL Structured Types Can I create the method body separately ? create instance method ageOnDate(onDate date) returns interval year for PersonType begin return onDate−self.dateOfBirth; end • which type this method is for can contain procedural statements! • refers to the Person instance on which the method is invoked • this method executes on an instance of the Person type Yes !
  • 19. How to find the age of each person ? •Structured Types and Inheritance in SQL Structured Types select name.lastname, ageOnDate(current_date) from person;
  • 20. create function Name( firstname varchar(20), lastname varchar(20) ) returns Name begin set self.firstname = firstname; set self.lastname = lastname; end •Structured Types and Inheritance in SQL Structured Types constructor functions are used to create values of structured types How we can create a value of Name type ? new Name(’John’, ’Smith’)
  • 21. •Structured Types and Inheritance in SQL Structured Types Example : Create a new tuple in the Person relation insert into Person values ( new Name(’John’, ’Smith’), new Address(’20 Main St’, ’New York’, ’11001’), date ’1960-8-22’); Note ! By default every structured type has a constructor with no arguments, which sets the attributes to their default values
  • 22. •Structured Types and Inheritance in SQL Type Inheritance create type Person (name varchar(20), address varchar(20)); create type Student under Person (degree varchar(20), department varchar(20)); create type Teacher under Person (salary integer, department varchar(20));
  • 23. •Structured Types and Inheritance in SQL Type Inheritance Can you create a TeachingAssistant type ? Methods of a structured type are inherited by its subtypes using overriding method The keyword final says that subtypes may not be created from the given type not final says that subtypes may be created. create type TeachingAssistant under Student, Teacher; Yes !
  • 24. •Structured Types and Inheritance in SQL Type Inheritance any problem ?! name address in department in Person Teacher Student create type TeachingAssistant under Student with(department as student_dept), Teacher with(department as teacher_dept); Note! The SQL standard does not support multiple inheritance
  • 25. Overview Complex Data Types Structured Types and Inheritance in SQL Table Inheritance
  • 26. •Table Inheritance Subtables in SQL correspond to the E-R notion of specialization/generalization. create table people of Person; create table students of Student under people; create table teachers of Teacher under people;
  • 27. •Table Inheritance Question delete from people where P ;only people
  • 28. Array and Multiset Types in SQL Overview Complex Data Types Structured Types and Inheritance in SQL Table Inheritance
  • 29. •Array and Multiset Types in SQL SQL supports two collection types arrays multisets SQL:1999 SQL:2003 create type Publisher as (name varchar(20), branch varchar(20)); create type Book as (title varchar(20), author_array varchar(20) array[10], pub_date date, publisher Publisher, keyword_set varchar(20) multiset); create table books of Book;
  • 30. •Array and Multiset Types in SQL Creating and Accessing Collection Values An array of values can be created in SQL:1999 in this way: array[’Silberschatz’, ’Korth’, ’Sudarshan’] A multiset of keywords can be constructed as follows: multiset[’computer’, ’database’, ’SQL’] insert into books values (’Compilers’, array[’Smith’, ’Jones’], new Publisher(’McGraw-Hill’, ’New York’), multiset [’parsing’, ’analysis’] ); But, How we can access or update elements of an array ?
  • 31. •Array and Multiset Types in SQL Querying Collection-Valued Attributes find all books that have the word “database” as one of their keywords select title from books where ’database’ in ( unnest (keyword_set) ); select author_array[1],author_array[2],author_array[3] from books where title = ’Database System Concepts’;
  • 32. •Array and Multiset Types in SQL Querying Collection-Valued Attributes select B.title, A.author from books as B, unnest (B.authorarray) as A(author); select title, A.author, A.position from books as B, unnest(B.author_array) with ordinality as A(author, position);