SlideShare a Scribd company logo
1 of 17
RDBMS
(Relational Database Management System)
BY,
PRIYANGA RAJARAM,M.SC(CS).,
Overview
What is DBMS
RDBMS
Relational Algebra
Structured Query Language
Difference between DBMS and RDBMS
Advantage of RDBMS
What is DBMS?
DBMS (Database Management System) is a system that is used to store
and manage data.
A DBMS is a set of programs that is used to store and manipulation data.
Manipulation of data includes the following:
 Adding new data
 Deleting unwanted data
 Changing existing data
For example adding details of new student, deleting the details of
student who have completed course and modifying the fee paid by the student.
It provides various functions like:
 Data security
 Data integrity
 Data sharing
 Data concurrence
 Data independence
 Data recovery
RDBMS(Relational Database Management System)
 RDBMS stands for Relational Database Management System. RDBMS data
is structured in database tables, fields and records.
 Each RDBMS table consists of database table rows.
 Each database table row consists of one or more database table fields.
 RDBMS store the data into collection of tables, which might be related by
common fields (database table columns).
 RDBMS also provide relational operators tomanipulate the data stored
into the database tables.
 Most RDBMS use SQL as database query language.
 The relation is the only data structure used in the relational data model
to represent both entities and relationships between them.
 Rows of the relation are referred to as tuples of the relation and
columns are its attributes.
 Each attribute of the column are drawn from the set of values known
as domain. The domain of an attribute contains the set of values that
the attribute may assume.
Tuple /Row
A single row in the table is called as tuple. Each row represents the data
of a single entity.
Attribute/Column
A column stores an attribute of the entity. For example, if details of
students are stored then student name is an attribute; course is another attribute
and so on.
Column Name
Each column in the table is given a name. This name is used to refer to
value in the column.
TableName
Each table is given a name. This is used torefer tothe table. The name
depictsthecontentofthetable.Thefollowingaretwootherterms,primarykey
andforeignkey,thatareveryimportantinrelationalmodel.
RelationalAlgebra
A setof operators used toperform operations on tables is called as
relationalalgebra.Operatorsinrelationalalgebratakeone ormoretablesas
parametersandproduceonetableastheresult.
Thefollowingareoperatorsinrelationalalgebra:
• Union
• Intersect
• Differenceor minus
• Project
• Select
• Join
Union
This takes two tables and returns all rows that are belonging to
either first or second table (or both).
Intersect
This takes two tables and returns all rows that are belonging to
first and second table.
Difference or Minus
This takes two tables and returns all rows that exist in the first
table and not in the second table.
Project
Takes a single table and returns the vertical subset of the table.
Select
Takes a single table and returns a horizontal subset of the table.
That means it returns only those rows that satisfy the condition.
Join
Rows of two table are combined based on the given column(s)
values. The tables being joined must have a common column.
SQL(Structured Query Language)
Almost all relational database management systems use
SQL(Structured Query Language) for data manipulation and retrieval.
SQL is the standard language for relational database systems.
SQL is a non-procedural language, where you need to concentrate
on what you want, not on how you get it.
Put it in other way, you need not be concerned with procedural
details.
SQL Commands are divided into four categories, depending upon what
they do.
 DDL (Data Definition Language)
commands are used to define the data. For example, CREATE TABLE.
 DML (Data Manipulation Language)
commands such as, INSERT and DELETE are used to manipulate data.
 DCL (Data Control Language)
commands are used to control access to data. For example, GRANT.
 Query (Retrieving data)
It is used to retrieve data using SELECT. DML and Query are also
collectively called as DML. And DDL and DCL are called as DDL.
Difference between DBMS and RDBMS
DBMS
A DBMS is a storage area that persist the data in files. To perform the
database operations, the file should be in use.
Relationship can be established between 2 files.
There are limitations tostore records in a single database file
depending upon the database manager used.
DBMS allows the relations to be established between 2 files.
Data is stored in flat files with metadata.
DBMS does not support client /server architecture.
DBMS does not follow normalization. Only single user can access the
data.
DBMS does not impose integrity constraints.
RDBMS
RDBMS stores the data in tabular form.
It has additional condition for supporting tabular structure
or data that enforces relationships among tables.
RDBMS supports client/server architecture.
RDBMS follows normalization.
RDBMS allows simultaneous access of users todata tables.
RDBMS imposes integrity constraints.
Advantages of RDBMS
A "relational database" is a database structured on the "relational" model.
Data are stored and presented in a tabular format, organized in rows and
columns with one record per row.
 Data Structure
 Multi-User Access
 Privileges
 Network Access
 Speed
 Maintenance
 Language
Updated_rdbms-161216100344 (1).pptx

More Related Content

Similar to Updated_rdbms-161216100344 (1).pptx

Similar to Updated_rdbms-161216100344 (1).pptx (20)

Lecture on DBMS & MySQL.pdf v. C. .
Lecture on DBMS & MySQL.pdf v.  C.     .Lecture on DBMS & MySQL.pdf v.  C.     .
Lecture on DBMS & MySQL.pdf v. C. .
 
Database Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdfDatabase Concepts & SQL(1).pdf
Database Concepts & SQL(1).pdf
 
Dbms Basics
Dbms BasicsDbms Basics
Dbms Basics
 
unit 1.pptx
unit 1.pptxunit 1.pptx
unit 1.pptx
 
Codds rules & keys
Codds rules & keysCodds rules & keys
Codds rules & keys
 
COMPUTERS Database
COMPUTERS Database COMPUTERS Database
COMPUTERS Database
 
lovely
lovelylovely
lovely
 
Rdbms
RdbmsRdbms
Rdbms
 
Chapter02
Chapter02Chapter02
Chapter02
 
Bca examination 2017 dbms
Bca examination 2017 dbmsBca examination 2017 dbms
Bca examination 2017 dbms
 
csedatabasemanagementsystemppt-170825044344.pdf
csedatabasemanagementsystemppt-170825044344.pdfcsedatabasemanagementsystemppt-170825044344.pdf
csedatabasemanagementsystemppt-170825044344.pdf
 
Database Management System ppt
Database Management System pptDatabase Management System ppt
Database Management System ppt
 
Database system concepts
Database system conceptsDatabase system concepts
Database system concepts
 
Database-management-system-dbms-ppt.pptx
Database-management-system-dbms-ppt.pptxDatabase-management-system-dbms-ppt.pptx
Database-management-system-dbms-ppt.pptx
 
Mysql
MysqlMysql
Mysql
 
DBMS (1).pptx
DBMS (1).pptxDBMS (1).pptx
DBMS (1).pptx
 
Dbms relational model
Dbms relational modelDbms relational model
Dbms relational model
 
SQL2.pptx
SQL2.pptxSQL2.pptx
SQL2.pptx
 
DATABASE PRESENTATION
DATABASE PRESENTATIONDATABASE PRESENTATION
DATABASE PRESENTATION
 
SQL_Introduction_Updated.pptx
SQL_Introduction_Updated.pptxSQL_Introduction_Updated.pptx
SQL_Introduction_Updated.pptx
 

More from THEFPS

Classification of Lipids By Danish Shafi MIr.pptx
Classification of Lipids By Danish Shafi MIr.pptxClassification of Lipids By Danish Shafi MIr.pptx
Classification of Lipids By Danish Shafi MIr.pptxTHEFPS
 
Types of Operating System
Types of Operating SystemTypes of Operating System
Types of Operating SystemTHEFPS
 
1.3.6 Autoimmune disease.pptx
1.3.6 Autoimmune disease.pptx1.3.6 Autoimmune disease.pptx
1.3.6 Autoimmune disease.pptxTHEFPS
 
OS powerpoint
OS powerpointOS powerpoint
OS powerpointTHEFPS
 
Super Computers
Super ComputersSuper Computers
Super ComputersTHEFPS
 
Lecture 1.1.2-DNA(1).pptx
Lecture 1.1.2-DNA(1).pptxLecture 1.1.2-DNA(1).pptx
Lecture 1.1.2-DNA(1).pptxTHEFPS
 
RDB-fundamentals-1-intro.ppt
RDB-fundamentals-1-intro.pptRDB-fundamentals-1-intro.ppt
RDB-fundamentals-1-intro.pptTHEFPS
 
MICROBIOLOGY 22MBI20019_2.pptx
MICROBIOLOGY 22MBI20019_2.pptxMICROBIOLOGY 22MBI20019_2.pptx
MICROBIOLOGY 22MBI20019_2.pptxTHEFPS
 
lipidsu-160413072006.pptx
lipidsu-160413072006.pptxlipidsu-160413072006.pptx
lipidsu-160413072006.pptxTHEFPS
 
Presentation.HTML.pptx
Presentation.HTML.pptxPresentation.HTML.pptx
Presentation.HTML.pptxTHEFPS
 
Concept of Genes by Danish Shafi Mir 22MBI20005.pptx
Concept of Genes by Danish Shafi Mir 22MBI20005.pptxConcept of Genes by Danish Shafi Mir 22MBI20005.pptx
Concept of Genes by Danish Shafi Mir 22MBI20005.pptxTHEFPS
 

More from THEFPS (11)

Classification of Lipids By Danish Shafi MIr.pptx
Classification of Lipids By Danish Shafi MIr.pptxClassification of Lipids By Danish Shafi MIr.pptx
Classification of Lipids By Danish Shafi MIr.pptx
 
Types of Operating System
Types of Operating SystemTypes of Operating System
Types of Operating System
 
1.3.6 Autoimmune disease.pptx
1.3.6 Autoimmune disease.pptx1.3.6 Autoimmune disease.pptx
1.3.6 Autoimmune disease.pptx
 
OS powerpoint
OS powerpointOS powerpoint
OS powerpoint
 
Super Computers
Super ComputersSuper Computers
Super Computers
 
Lecture 1.1.2-DNA(1).pptx
Lecture 1.1.2-DNA(1).pptxLecture 1.1.2-DNA(1).pptx
Lecture 1.1.2-DNA(1).pptx
 
RDB-fundamentals-1-intro.ppt
RDB-fundamentals-1-intro.pptRDB-fundamentals-1-intro.ppt
RDB-fundamentals-1-intro.ppt
 
MICROBIOLOGY 22MBI20019_2.pptx
MICROBIOLOGY 22MBI20019_2.pptxMICROBIOLOGY 22MBI20019_2.pptx
MICROBIOLOGY 22MBI20019_2.pptx
 
lipidsu-160413072006.pptx
lipidsu-160413072006.pptxlipidsu-160413072006.pptx
lipidsu-160413072006.pptx
 
Presentation.HTML.pptx
Presentation.HTML.pptxPresentation.HTML.pptx
Presentation.HTML.pptx
 
Concept of Genes by Danish Shafi Mir 22MBI20005.pptx
Concept of Genes by Danish Shafi Mir 22MBI20005.pptxConcept of Genes by Danish Shafi Mir 22MBI20005.pptx
Concept of Genes by Danish Shafi Mir 22MBI20005.pptx
 

Recently uploaded

Recombination DNA Technology (Microinjection)
Recombination DNA Technology (Microinjection)Recombination DNA Technology (Microinjection)
Recombination DNA Technology (Microinjection)Jshifa
 
Work, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE PhysicsWork, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE Physicsvishikhakeshava1
 
Analytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptxAnalytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptxSwapnil Therkar
 
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Physiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptxPhysiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptxAArockiyaNisha
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoSérgio Sacani
 
The Black hole shadow in Modified Gravity
The Black hole shadow in Modified GravityThe Black hole shadow in Modified Gravity
The Black hole shadow in Modified GravitySubhadipsau21168
 
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsSérgio Sacani
 
Disentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOSTDisentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOSTSérgio Sacani
 
Ahmedabad Call Girls Service 9537192988 can satisfy every one of your dreams
Ahmedabad Call Girls Service 9537192988 can satisfy every one of your dreamsAhmedabad Call Girls Service 9537192988 can satisfy every one of your dreams
Ahmedabad Call Girls Service 9537192988 can satisfy every one of your dreamsoolala9823
 
Luciferase in rDNA technology (biotechnology).pptx
Luciferase in rDNA technology (biotechnology).pptxLuciferase in rDNA technology (biotechnology).pptx
Luciferase in rDNA technology (biotechnology).pptxAleenaTreesaSaji
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...anilsa9823
 
Neurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 trNeurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 trssuser06f238
 
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCESTERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCEPRINCE C P
 
Biopesticide (2).pptx .This slides helps to know the different types of biop...
Biopesticide (2).pptx  .This slides helps to know the different types of biop...Biopesticide (2).pptx  .This slides helps to know the different types of biop...
Biopesticide (2).pptx .This slides helps to know the different types of biop...RohitNehra6
 
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.PraveenaKalaiselvan1
 
Grafana in space: Monitoring Japan's SLIM moon lander in real time
Grafana in space: Monitoring Japan's SLIM moon lander  in real timeGrafana in space: Monitoring Japan's SLIM moon lander  in real time
Grafana in space: Monitoring Japan's SLIM moon lander in real timeSatoshi NAKAHIRA
 
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Sérgio Sacani
 

Recently uploaded (20)

Recombination DNA Technology (Microinjection)
Recombination DNA Technology (Microinjection)Recombination DNA Technology (Microinjection)
Recombination DNA Technology (Microinjection)
 
Work, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE PhysicsWork, Energy and Power for class 10 ICSE Physics
Work, Energy and Power for class 10 ICSE Physics
 
Analytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptxAnalytical Profile of Coleus Forskohlii | Forskolin .pptx
Analytical Profile of Coleus Forskohlii | Forskolin .pptx
 
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Munirka Delhi 💯Call Us 🔝8264348440🔝
 
Physiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptxPhysiochemical properties of nanomaterials and its nanotoxicity.pptx
Physiochemical properties of nanomaterials and its nanotoxicity.pptx
 
Isotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on IoIsotopic evidence of long-lived volcanism on Io
Isotopic evidence of long-lived volcanism on Io
 
The Black hole shadow in Modified Gravity
The Black hole shadow in Modified GravityThe Black hole shadow in Modified Gravity
The Black hole shadow in Modified Gravity
 
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroidsHubble Asteroid Hunter III. Physical properties of newly found asteroids
Hubble Asteroid Hunter III. Physical properties of newly found asteroids
 
Engler and Prantl system of classification in plant taxonomy
Engler and Prantl system of classification in plant taxonomyEngler and Prantl system of classification in plant taxonomy
Engler and Prantl system of classification in plant taxonomy
 
Disentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOSTDisentangling the origin of chemical differences using GHOST
Disentangling the origin of chemical differences using GHOST
 
Ahmedabad Call Girls Service 9537192988 can satisfy every one of your dreams
Ahmedabad Call Girls Service 9537192988 can satisfy every one of your dreamsAhmedabad Call Girls Service 9537192988 can satisfy every one of your dreams
Ahmedabad Call Girls Service 9537192988 can satisfy every one of your dreams
 
Luciferase in rDNA technology (biotechnology).pptx
Luciferase in rDNA technology (biotechnology).pptxLuciferase in rDNA technology (biotechnology).pptx
Luciferase in rDNA technology (biotechnology).pptx
 
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
Lucknow 💋 Russian Call Girls Lucknow Finest Escorts Service 8923113531 Availa...
 
Neurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 trNeurodevelopmental disorders according to the dsm 5 tr
Neurodevelopmental disorders according to the dsm 5 tr
 
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCESTERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
STERILITY TESTING OF PHARMACEUTICALS ppt by DR.C.P.PRINCE
 
Biopesticide (2).pptx .This slides helps to know the different types of biop...
Biopesticide (2).pptx  .This slides helps to know the different types of biop...Biopesticide (2).pptx  .This slides helps to know the different types of biop...
Biopesticide (2).pptx .This slides helps to know the different types of biop...
 
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
BIOETHICS IN RECOMBINANT DNA TECHNOLOGY.
 
Grafana in space: Monitoring Japan's SLIM moon lander in real time
Grafana in space: Monitoring Japan's SLIM moon lander  in real timeGrafana in space: Monitoring Japan's SLIM moon lander  in real time
Grafana in space: Monitoring Japan's SLIM moon lander in real time
 
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
Discovery of an Accretion Streamer and a Slow Wide-angle Outflow around FUOri...
 
The Philosophy of Science
The Philosophy of ScienceThe Philosophy of Science
The Philosophy of Science
 

Updated_rdbms-161216100344 (1).pptx

  • 1. RDBMS (Relational Database Management System) BY, PRIYANGA RAJARAM,M.SC(CS).,
  • 2. Overview What is DBMS RDBMS Relational Algebra Structured Query Language Difference between DBMS and RDBMS Advantage of RDBMS
  • 3. What is DBMS? DBMS (Database Management System) is a system that is used to store and manage data. A DBMS is a set of programs that is used to store and manipulation data. Manipulation of data includes the following:  Adding new data  Deleting unwanted data  Changing existing data For example adding details of new student, deleting the details of student who have completed course and modifying the fee paid by the student.
  • 4. It provides various functions like:  Data security  Data integrity  Data sharing  Data concurrence  Data independence  Data recovery
  • 5. RDBMS(Relational Database Management System)  RDBMS stands for Relational Database Management System. RDBMS data is structured in database tables, fields and records.  Each RDBMS table consists of database table rows.  Each database table row consists of one or more database table fields.  RDBMS store the data into collection of tables, which might be related by common fields (database table columns).  RDBMS also provide relational operators tomanipulate the data stored into the database tables.
  • 6.  Most RDBMS use SQL as database query language.  The relation is the only data structure used in the relational data model to represent both entities and relationships between them.  Rows of the relation are referred to as tuples of the relation and columns are its attributes.  Each attribute of the column are drawn from the set of values known as domain. The domain of an attribute contains the set of values that the attribute may assume.
  • 7.
  • 8. Tuple /Row A single row in the table is called as tuple. Each row represents the data of a single entity. Attribute/Column A column stores an attribute of the entity. For example, if details of students are stored then student name is an attribute; course is another attribute and so on. Column Name Each column in the table is given a name. This name is used to refer to value in the column.
  • 9. TableName Each table is given a name. This is used torefer tothe table. The name depictsthecontentofthetable.Thefollowingaretwootherterms,primarykey andforeignkey,thatareveryimportantinrelationalmodel. RelationalAlgebra A setof operators used toperform operations on tables is called as relationalalgebra.Operatorsinrelationalalgebratakeone ormoretablesas parametersandproduceonetableastheresult. Thefollowingareoperatorsinrelationalalgebra: • Union • Intersect • Differenceor minus • Project • Select • Join
  • 10. Union This takes two tables and returns all rows that are belonging to either first or second table (or both). Intersect This takes two tables and returns all rows that are belonging to first and second table. Difference or Minus This takes two tables and returns all rows that exist in the first table and not in the second table.
  • 11. Project Takes a single table and returns the vertical subset of the table. Select Takes a single table and returns a horizontal subset of the table. That means it returns only those rows that satisfy the condition. Join Rows of two table are combined based on the given column(s) values. The tables being joined must have a common column.
  • 12. SQL(Structured Query Language) Almost all relational database management systems use SQL(Structured Query Language) for data manipulation and retrieval. SQL is the standard language for relational database systems. SQL is a non-procedural language, where you need to concentrate on what you want, not on how you get it. Put it in other way, you need not be concerned with procedural details.
  • 13. SQL Commands are divided into four categories, depending upon what they do.  DDL (Data Definition Language) commands are used to define the data. For example, CREATE TABLE.  DML (Data Manipulation Language) commands such as, INSERT and DELETE are used to manipulate data.  DCL (Data Control Language) commands are used to control access to data. For example, GRANT.  Query (Retrieving data) It is used to retrieve data using SELECT. DML and Query are also collectively called as DML. And DDL and DCL are called as DDL.
  • 14. Difference between DBMS and RDBMS DBMS A DBMS is a storage area that persist the data in files. To perform the database operations, the file should be in use. Relationship can be established between 2 files. There are limitations tostore records in a single database file depending upon the database manager used. DBMS allows the relations to be established between 2 files. Data is stored in flat files with metadata. DBMS does not support client /server architecture. DBMS does not follow normalization. Only single user can access the data. DBMS does not impose integrity constraints.
  • 15. RDBMS RDBMS stores the data in tabular form. It has additional condition for supporting tabular structure or data that enforces relationships among tables. RDBMS supports client/server architecture. RDBMS follows normalization. RDBMS allows simultaneous access of users todata tables. RDBMS imposes integrity constraints.
  • 16. Advantages of RDBMS A "relational database" is a database structured on the "relational" model. Data are stored and presented in a tabular format, organized in rows and columns with one record per row.  Data Structure  Multi-User Access  Privileges  Network Access  Speed  Maintenance  Language