SlideShare a Scribd company logo
Introduction to databases
and Information Systems
Definition
• A database is a logically organized collection of related data
designed and built for a specific purpose.
• A database can be of any size and of any degree of complexity, and it
can be maintained manually or by software on computers.
How Data Is Organized: The Data Storage
Hierarchy
• The data storage hierarchy consists of the levels of data stored in a
computer database: bits, characters (bytes), fields, records, and
files.
• BITS: the bit is the smallest unit of data the computer can store in a
database—represented by 0 for off or 1 for on.
• CHARACTERS: A character (byte) is a letter, number, or special
character. A, B, C, 1, 2, 3, #, $, % are all examples of single characters.
A combination of bits represents a character. Bits and bytes are the
building blocks for representing data.
The Data Storage Hierarchy
• FIELD: A field is a unit of data consisting of one or more characters
(bytes). It is the smallest unit of meaningful information in the
database. Each field has a field name that describes the kind of data
that should be entered into the field. An example of a field is your
first name, or your street address, or your Social Security number.
• RECORD: A record is a collection of related fields. Each record stores
data about only one entity, which can be a person, a place, a thing, an
occurrence or a phenomenon.
• FILE: A file is a collection of related records. An example of a file
would be data collected on everyone employed in the same
department of a company.
Lec20.pptx introduction to data bases and information systems
Types of Files: Program Files & Data Files
• The file is the collection of data or information that is treated as a unit
by the computer. Files are given names— filenames.
• PROGRAM FILES: FOR SOFTWARE INSTRUCTIONS Program files are
files containing software instructions. Examples are word processing
or spreadsheet programs, which are made up of several different
program files. The two most important are source program files and
executable files.
• DATA FILES: FOR HOLDING DATA Data files are files that contain
data—words, numbers, pictures, sounds, and so on. These are the
files used in databases.
Data Files
• Examples of common extensions in data files are .txt (text) and .xls (Excel
worksheets). Certain proprietary computer programs apply their own
extensions, such as .ppt for PowerPoint and .mdb for Access.
• Three types of files worth particular attention are graphics, audio, and
video files.
• Graphics files: Some important ones are .bmp, .tiff, .gif, .jpeg, and .png.
• Audio files: The ones you’re most apt to encounter are .mp3, .wav, and
.mid.
• Animation/video files: Common files are .qt, .mpg, .wmv, .avi., and .rm.
DATABASE MANAGEMENT SYSTEMS
• A database management system (DBMS), or database manager, is
software written specifically to control the structure of a database
and access to the data. (Strictly speaking, the database is the
collection of the data, and the database management system is the
software—but many professionals use “database” to cover both
meanings.)
The Benefits of Database Management
Systems
• REDUCED DATA REDUNDANCY Data redundancy, or repetition, means that
the same data fields (a person’s address, say) appear over and over again in
different files and often in different formats.
• IMPROVED DATA INTEGRITY Data integrity means that data is accurate,
consistent, and up to date. In the old system, when a change was made in
one file, it might not have been made in other necessary files.
• INCREASED SECURITY Although various departments may share data,
access to specific information can be limited to selected users.
• EASE OF DATA MAINTENANCE Database management systems offer
standard procedures for adding, editing, and deleting records, as well as
validation checks to ensure that the appropriate type of data is being
entered properly and completely into each field type.
The Database Administrator
• Large databases are managed by a specialist called a database
administrator. The database administrator (DBA) coordinates all
related activities and needs for an organization’s database, ensuring
the database’s recoverability, integrity, security, availability, reliability,
and performance.
• Database administrators determine user access privileges; set
standards, guidelines, and control procedures; assist in establishing
priorities for requests; prioritize conflicting user needs; and develop
user documentation and input procedures.
DATABASE MODELS
• Hierarchical Database: In a hierarchical database, fields or records
are arranged in related groups resembling a family tree, with child
(lower-level) records subordinate to parent (higher-level) records.
The parent record at the top of the database is called the root record
or root parent.
• The hierarchical database is the oldest and simplest of the all models.
• It lent itself well to the tape storage systems used by mainframes in
the 1970s. It is still used in some types of passenger reservation
systems.
• In hierarchical databases, accessing or updating data is very fast,
because the relationships have been predefined.
Lec20.pptx introduction to data bases and information systems
Network Database
• The network database was in part developed to solve some of the
problems of the hierarchical database model. A network database is
similar to a hierarchical database, but each child record can have
more than one parent records.
• Also used principally with mainframes, the network database is more
flexible than the hierarchical arrangement, because different
relationships may be established between different branches of data.
• Although the network database was an improvement over the
hierarchical database, some people in the database community
believed there had to be a better way to manage large amounts of
data.
Lec20.pptx introduction to data bases and information systems
Relational Database
• More flexible than hierarchical and network database models, the
relational database relates, or connects, data in different files
through the use of a key, or common data element.
• HOW A RELATIONAL DATABASE WORKS In the relational database,
there are no access paths down through a hierarchy. Instead, data
elements are stored in different tables made up of rows and columns.
• In database terminology, the tables are called relations (files), the
rows are called tuples (records), and the columns are called attributes
(fields).
Lec20.pptx introduction to data bases and information systems
Relational Database
• Whereas in the hierarchical and network database models data is
arranged according to physical address, in the relational model data is
arranged logically, by content.
• Hence, the physical order of the records or fields in a table is
completely immaterial. Each record in the table is identified by a
field—the primary key—that contains a unique value. There are
following two methods through which data can be accessed in
Relational Databases.
• USING STRUCTURED QUERY LANGUAGE
• QUERY BY EXAMPLE
USING STRUCTURED QUERY LANGUAGE
• To retrieve data in a relational database, you specify the appropriate
fields and the tables to which they belong in a query to the database,
using a query language.
• Structured query language ( SQL, pronounced “sequel”) is the
standard query language used to create, modify, maintain, and
query relational databases.
• The three components of a basic SQL query are the SELECT . . . FROM
statement, the WHERE clause, and the ORDER BY clause.
• SELECT PRODUCT-NUMBER, PRODUCT-NAME FROM PRODUCT
WHERE PRICE < 100.00 ORDERBY PRODUCT-NAME;
QUERY BY EXAMPLE
• In query by example (QBE), the user asks for information in a
database by using a sample record form, or table, to define the
qualifications he or she wants for selected records; in other words,
the user fills in a form.
• For example, a university’s database of its student-loan records might
have the column headings (field names) NAME, ADDRESS, CITY, STATE,
ZIP, AMOUNT OWED.
• When you use the QBE method, the database would display an empty
record with these column headings. You would then type in the
search conditions that you want in the appropriate columns
INFORMATION SYSTEMS IN ORGANIZATIONS:
Using Database to Help Make Decisions
• The data in databases is used to build information, and information—
and how it is used—lies at the heart of every organization.
• Of course, how useful information is depends on the quality of it, as
well as the information systems used to distribute it. Let us consider
these subjects.
The Qualities of Good Information
• Correct and verifiable: This means information must be accurate and
checkable.
• Complete yet concise: Complete means information must include all
relevant data. Concise means it includes only relevant data.
• Cost effective: This means the information is efficiently obtained and
understandable.
• Current: Current means timely yet also time sensitive, based on
historical, present, or future information needs.
• Accessible: This means the information is quickly and easily
obtainable
Computer-Based Information Systems
• The purpose of a computer-based information system is to provide managers (and
various categories of employees) with the appropriate kind of information to help them
make decisions.
• It is used to collect and analyze data from all departments and is designed to provide
an organization’s management with up-to-date information at any time.
• There are several types of computer-based information systems, which serve different
levels of management:
• Office information systems
• Transaction processing systems
• Management information systems
• Decision support systems
• Executive support systems
• Expert systems
Information Systems
• Office Information Systems: Office information systems (OISs), also
called office automation systems (OASs), combine various
technologies to reduce the manual labor required in operating an
efficient office environment and to increase productivity.
• Transaction Processing Systems: A transaction processing system
(TPS) is a computer-based information system that keeps track of the
transactions needed to conduct business.
• Management Information Systems: A management information
system (MIS) (pronounced “em-eye-ess”) is a computer-based
information system that uses data recorded by a TPS as input into
programs that produce routine reports as output.
Information Systems
• Decision Support Systems: A decision support system (DSS) is a
computer-based information system that provides a flexible tool for
analysis and helps managers focus on the future.
• Executive Support Systems: executive information system (EIS), an
executive support system (ESS) is an easy-to-use DSS made especially
for strategic managers; it specifically supports strategic decision
making.
• Expert Systems: An expert system, or knowledge-based system, is a
set of interactive computer programs that helps users solve problems
that would otherwise require the assistance of a human expert.
Ad

More Related Content

What's hot (20)

Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
philipsinter
 
Database backup and recovery
Database backup and recoveryDatabase backup and recovery
Database backup and recovery
Anne Lee
 
Network File System in Distributed Computing
Network File System in Distributed ComputingNetwork File System in Distributed Computing
Network File System in Distributed Computing
Chandan Padalkar
 
UNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdfUNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdf
Nancykumari47
 
User administration concepts and mechanisms
User administration concepts and mechanismsUser administration concepts and mechanisms
User administration concepts and mechanisms
Duressa Teshome
 
File based approach
File based approachFile based approach
File based approach
PreethaAS
 
Files
FilesFiles
Files
kirtidhamija16
 
Object Oriented Design
Object Oriented Design Object Oriented Design
Object Oriented Design
DivyaSure
 
Methodologies in OOAD
Methodologies in OOADMethodologies in OOAD
Methodologies in OOAD
Vivek Raj Agarwal
 
NTFS file system
NTFS file systemNTFS file system
NTFS file system
Ravi Yasas
 
File organization 1
File organization 1File organization 1
File organization 1
Rupali Rana
 
Database, Lecture-1.ppt
Database, Lecture-1.pptDatabase, Lecture-1.ppt
Database, Lecture-1.ppt
MatshushimaSumaya
 
Distributed design alternatives
Distributed design alternativesDistributed design alternatives
Distributed design alternatives
Pooja Dixit
 
distributed shared memory
 distributed shared memory distributed shared memory
distributed shared memory
Ashish Kumar
 
Introduction to Network and System Administration
Introduction to Network and System AdministrationIntroduction to Network and System Administration
Introduction to Network and System Administration
Duressa Teshome
 
Database fragmentation
Database fragmentationDatabase fragmentation
Database fragmentation
Punjab College Of Technical Education
 
Modern database management jeffrey a. hoffer, mary b. prescott,
Modern database management   jeffrey a. hoffer, mary b. prescott,  Modern database management   jeffrey a. hoffer, mary b. prescott,
Modern database management jeffrey a. hoffer, mary b. prescott,
BlackIce86
 
Database as information system
Database as information systemDatabase as information system
Database as information system
KAZEMBETVOnline
 
Dbms architecture
Dbms architectureDbms architecture
Dbms architecture
Shubham Dwivedi
 
Metadata in data warehouse
Metadata in data warehouseMetadata in data warehouse
Metadata in data warehouse
Siddique Ibrahim
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
philipsinter
 
Database backup and recovery
Database backup and recoveryDatabase backup and recovery
Database backup and recovery
Anne Lee
 
Network File System in Distributed Computing
Network File System in Distributed ComputingNetwork File System in Distributed Computing
Network File System in Distributed Computing
Chandan Padalkar
 
UNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdfUNIT 1- Data Warehouse.pdf
UNIT 1- Data Warehouse.pdf
Nancykumari47
 
User administration concepts and mechanisms
User administration concepts and mechanismsUser administration concepts and mechanisms
User administration concepts and mechanisms
Duressa Teshome
 
File based approach
File based approachFile based approach
File based approach
PreethaAS
 
Object Oriented Design
Object Oriented Design Object Oriented Design
Object Oriented Design
DivyaSure
 
NTFS file system
NTFS file systemNTFS file system
NTFS file system
Ravi Yasas
 
File organization 1
File organization 1File organization 1
File organization 1
Rupali Rana
 
Distributed design alternatives
Distributed design alternativesDistributed design alternatives
Distributed design alternatives
Pooja Dixit
 
distributed shared memory
 distributed shared memory distributed shared memory
distributed shared memory
Ashish Kumar
 
Introduction to Network and System Administration
Introduction to Network and System AdministrationIntroduction to Network and System Administration
Introduction to Network and System Administration
Duressa Teshome
 
Modern database management jeffrey a. hoffer, mary b. prescott,
Modern database management   jeffrey a. hoffer, mary b. prescott,  Modern database management   jeffrey a. hoffer, mary b. prescott,
Modern database management jeffrey a. hoffer, mary b. prescott,
BlackIce86
 
Database as information system
Database as information systemDatabase as information system
Database as information system
KAZEMBETVOnline
 
Metadata in data warehouse
Metadata in data warehouseMetadata in data warehouse
Metadata in data warehouse
Siddique Ibrahim
 

Similar to Lec20.pptx introduction to data bases and information systems (20)

Data concepts
Data conceptsData concepts
Data concepts
Sachidananda M H
 
Fundamentals of information systems chapter 3.ppt
Fundamentals of information systems chapter 3.pptFundamentals of information systems chapter 3.ppt
Fundamentals of information systems chapter 3.ppt
ArebuMaruf
 
Fundamentals of information systems chapter 3.pptx
Fundamentals of information systems chapter 3.pptxFundamentals of information systems chapter 3.pptx
Fundamentals of information systems chapter 3.pptx
ArebuMaruf
 
Database management system lecture notes
Database management system lecture notesDatabase management system lecture notes
Database management system lecture notes
UTSAHSINGH2
 
DATABASE MANAGEMENT SYSTEMS CS 3492.pptx
DATABASE MANAGEMENT SYSTEMS CS 3492.pptxDATABASE MANAGEMENT SYSTEMS CS 3492.pptx
DATABASE MANAGEMENT SYSTEMS CS 3492.pptx
venigkrish89
 
System Analysis And Design
System Analysis And DesignSystem Analysis And Design
System Analysis And Design
Lijo Stalin
 
Data base and data entry presentation by mj n somya
Data base and data entry presentation by mj n somyaData base and data entry presentation by mj n somya
Data base and data entry presentation by mj n somya
Mukesh Jaiswal
 
DATA RESOURCE MANAGEMENT
DATA RESOURCE MANAGEMENT DATA RESOURCE MANAGEMENT
DATA RESOURCE MANAGEMENT
huma sh
 
Database Management Systems.pptx
Database Management Systems.pptxDatabase Management Systems.pptx
Database Management Systems.pptx
CallplanetsDeveloper
 
6.2 software
6.2 software6.2 software
6.2 software
fahrie_khai_sab_taufiq
 
UNIT machine learning unit 1,algorithm pdf
UNIT machine learning  unit 1,algorithm pdfUNIT machine learning  unit 1,algorithm pdf
UNIT machine learning unit 1,algorithm pdf
OmarFarooque9
 
MIS-3rd Unit.pptx
MIS-3rd Unit.pptxMIS-3rd Unit.pptx
MIS-3rd Unit.pptx
ssuser5e8d69
 
MIS-3rd Unit.pptx
MIS-3rd Unit.pptxMIS-3rd Unit.pptx
MIS-3rd Unit.pptx
Sumit Kumar
 
Unit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptxUnit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptx
Nirmalavenkatachalam
 
Info systems databases
Info systems databasesInfo systems databases
Info systems databases
MR Z
 
01-Database Administration and Management.pdf
01-Database Administration and Management.pdf01-Database Administration and Management.pdf
01-Database Administration and Management.pdf
TOUSEEQHAIDER14
 
REC-UNIT-I-DataBaseManagementSystems.pptx
REC-UNIT-I-DataBaseManagementSystems.pptxREC-UNIT-I-DataBaseManagementSystems.pptx
REC-UNIT-I-DataBaseManagementSystems.pptx
Uma Kakarlapudi
 
Management information system database management
Management information system database managementManagement information system database management
Management information system database management
Online
 
Data Manipulation ppt. for BSIT students
Data Manipulation ppt. for BSIT studentsData Manipulation ppt. for BSIT students
Data Manipulation ppt. for BSIT students
julie4baxtii
 
DBMS 1.pdf from computer application for business
DBMS 1.pdf from computer application for businessDBMS 1.pdf from computer application for business
DBMS 1.pdf from computer application for business
sudeshnachand
 
Fundamentals of information systems chapter 3.ppt
Fundamentals of information systems chapter 3.pptFundamentals of information systems chapter 3.ppt
Fundamentals of information systems chapter 3.ppt
ArebuMaruf
 
Fundamentals of information systems chapter 3.pptx
Fundamentals of information systems chapter 3.pptxFundamentals of information systems chapter 3.pptx
Fundamentals of information systems chapter 3.pptx
ArebuMaruf
 
Database management system lecture notes
Database management system lecture notesDatabase management system lecture notes
Database management system lecture notes
UTSAHSINGH2
 
DATABASE MANAGEMENT SYSTEMS CS 3492.pptx
DATABASE MANAGEMENT SYSTEMS CS 3492.pptxDATABASE MANAGEMENT SYSTEMS CS 3492.pptx
DATABASE MANAGEMENT SYSTEMS CS 3492.pptx
venigkrish89
 
System Analysis And Design
System Analysis And DesignSystem Analysis And Design
System Analysis And Design
Lijo Stalin
 
Data base and data entry presentation by mj n somya
Data base and data entry presentation by mj n somyaData base and data entry presentation by mj n somya
Data base and data entry presentation by mj n somya
Mukesh Jaiswal
 
DATA RESOURCE MANAGEMENT
DATA RESOURCE MANAGEMENT DATA RESOURCE MANAGEMENT
DATA RESOURCE MANAGEMENT
huma sh
 
UNIT machine learning unit 1,algorithm pdf
UNIT machine learning  unit 1,algorithm pdfUNIT machine learning  unit 1,algorithm pdf
UNIT machine learning unit 1,algorithm pdf
OmarFarooque9
 
MIS-3rd Unit.pptx
MIS-3rd Unit.pptxMIS-3rd Unit.pptx
MIS-3rd Unit.pptx
Sumit Kumar
 
Info systems databases
Info systems databasesInfo systems databases
Info systems databases
MR Z
 
01-Database Administration and Management.pdf
01-Database Administration and Management.pdf01-Database Administration and Management.pdf
01-Database Administration and Management.pdf
TOUSEEQHAIDER14
 
REC-UNIT-I-DataBaseManagementSystems.pptx
REC-UNIT-I-DataBaseManagementSystems.pptxREC-UNIT-I-DataBaseManagementSystems.pptx
REC-UNIT-I-DataBaseManagementSystems.pptx
Uma Kakarlapudi
 
Management information system database management
Management information system database managementManagement information system database management
Management information system database management
Online
 
Data Manipulation ppt. for BSIT students
Data Manipulation ppt. for BSIT studentsData Manipulation ppt. for BSIT students
Data Manipulation ppt. for BSIT students
julie4baxtii
 
DBMS 1.pdf from computer application for business
DBMS 1.pdf from computer application for businessDBMS 1.pdf from computer application for business
DBMS 1.pdf from computer application for business
sudeshnachand
 
Ad

Recently uploaded (20)

Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-3-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 5-3-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 5-3-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 5-3-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
Unit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdfUnit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdf
KanchanPatil34
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
P-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 finalP-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 final
bs22n2s
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
Introduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe EngineeringIntroduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe Engineering
Damian T. Gordon
 
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetCBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
Sritoma Majumder
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
Stein, Hunt, Green letter to Congress April 2025
Stein, Hunt, Green letter to Congress April 2025Stein, Hunt, Green letter to Congress April 2025
Stein, Hunt, Green letter to Congress April 2025
Mebane Rash
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdfExploring-Substances-Acidic-Basic-and-Neutral.pdf
Exploring-Substances-Acidic-Basic-and-Neutral.pdf
Sandeep Swamy
 
Unit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdfUnit 6_Introduction_Phishing_Password Cracking.pdf
Unit 6_Introduction_Phishing_Password Cracking.pdf
KanchanPatil34
 
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public SchoolsK12 Tableau Tuesday  - Algebra Equity and Access in Atlanta Public Schools
K12 Tableau Tuesday - Algebra Equity and Access in Atlanta Public Schools
dogden2
 
P-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 finalP-glycoprotein pamphlet: iteration 4 of 4 final
P-glycoprotein pamphlet: iteration 4 of 4 final
bs22n2s
 
Introduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe EngineeringIntroduction to Vibe Coding and Vibe Engineering
Introduction to Vibe Coding and Vibe Engineering
Damian T. Gordon
 
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - WorksheetCBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
CBSE - Grade 8 - Science - Chemistry - Metals and Non Metals - Worksheet
Sritoma Majumder
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
One Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learningOne Hot encoding a revolution in Machine learning
One Hot encoding a revolution in Machine learning
momer9505
 
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Phoenix – A Collaborative Renewal of Children’s and Young People’s Services C...
Library Association of Ireland
 
Stein, Hunt, Green letter to Congress April 2025
Stein, Hunt, Green letter to Congress April 2025Stein, Hunt, Green letter to Congress April 2025
Stein, Hunt, Green letter to Congress April 2025
Mebane Rash
 
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptxSCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
SCI BIZ TECH QUIZ (OPEN) PRELIMS XTASY 2025.pptx
Ronisha Das
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Sinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_NameSinhala_Male_Names.pdf Sinhala_Male_Name
Sinhala_Male_Names.pdf Sinhala_Male_Name
keshanf79
 
LDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini UpdatesLDMMIA Reiki Master Spring 2025 Mini Updates
LDMMIA Reiki Master Spring 2025 Mini Updates
LDM Mia eStudios
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
Presentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem KayaPresentation of the MIPLM subject matter expert Erdem Kaya
Presentation of the MIPLM subject matter expert Erdem Kaya
MIPLM
 
Ad

Lec20.pptx introduction to data bases and information systems

  • 1. Introduction to databases and Information Systems
  • 2. Definition • A database is a logically organized collection of related data designed and built for a specific purpose. • A database can be of any size and of any degree of complexity, and it can be maintained manually or by software on computers.
  • 3. How Data Is Organized: The Data Storage Hierarchy • The data storage hierarchy consists of the levels of data stored in a computer database: bits, characters (bytes), fields, records, and files. • BITS: the bit is the smallest unit of data the computer can store in a database—represented by 0 for off or 1 for on. • CHARACTERS: A character (byte) is a letter, number, or special character. A, B, C, 1, 2, 3, #, $, % are all examples of single characters. A combination of bits represents a character. Bits and bytes are the building blocks for representing data.
  • 4. The Data Storage Hierarchy • FIELD: A field is a unit of data consisting of one or more characters (bytes). It is the smallest unit of meaningful information in the database. Each field has a field name that describes the kind of data that should be entered into the field. An example of a field is your first name, or your street address, or your Social Security number. • RECORD: A record is a collection of related fields. Each record stores data about only one entity, which can be a person, a place, a thing, an occurrence or a phenomenon. • FILE: A file is a collection of related records. An example of a file would be data collected on everyone employed in the same department of a company.
  • 6. Types of Files: Program Files & Data Files • The file is the collection of data or information that is treated as a unit by the computer. Files are given names— filenames. • PROGRAM FILES: FOR SOFTWARE INSTRUCTIONS Program files are files containing software instructions. Examples are word processing or spreadsheet programs, which are made up of several different program files. The two most important are source program files and executable files. • DATA FILES: FOR HOLDING DATA Data files are files that contain data—words, numbers, pictures, sounds, and so on. These are the files used in databases.
  • 7. Data Files • Examples of common extensions in data files are .txt (text) and .xls (Excel worksheets). Certain proprietary computer programs apply their own extensions, such as .ppt for PowerPoint and .mdb for Access. • Three types of files worth particular attention are graphics, audio, and video files. • Graphics files: Some important ones are .bmp, .tiff, .gif, .jpeg, and .png. • Audio files: The ones you’re most apt to encounter are .mp3, .wav, and .mid. • Animation/video files: Common files are .qt, .mpg, .wmv, .avi., and .rm.
  • 8. DATABASE MANAGEMENT SYSTEMS • A database management system (DBMS), or database manager, is software written specifically to control the structure of a database and access to the data. (Strictly speaking, the database is the collection of the data, and the database management system is the software—but many professionals use “database” to cover both meanings.)
  • 9. The Benefits of Database Management Systems • REDUCED DATA REDUNDANCY Data redundancy, or repetition, means that the same data fields (a person’s address, say) appear over and over again in different files and often in different formats. • IMPROVED DATA INTEGRITY Data integrity means that data is accurate, consistent, and up to date. In the old system, when a change was made in one file, it might not have been made in other necessary files. • INCREASED SECURITY Although various departments may share data, access to specific information can be limited to selected users. • EASE OF DATA MAINTENANCE Database management systems offer standard procedures for adding, editing, and deleting records, as well as validation checks to ensure that the appropriate type of data is being entered properly and completely into each field type.
  • 10. The Database Administrator • Large databases are managed by a specialist called a database administrator. The database administrator (DBA) coordinates all related activities and needs for an organization’s database, ensuring the database’s recoverability, integrity, security, availability, reliability, and performance. • Database administrators determine user access privileges; set standards, guidelines, and control procedures; assist in establishing priorities for requests; prioritize conflicting user needs; and develop user documentation and input procedures.
  • 11. DATABASE MODELS • Hierarchical Database: In a hierarchical database, fields or records are arranged in related groups resembling a family tree, with child (lower-level) records subordinate to parent (higher-level) records. The parent record at the top of the database is called the root record or root parent. • The hierarchical database is the oldest and simplest of the all models. • It lent itself well to the tape storage systems used by mainframes in the 1970s. It is still used in some types of passenger reservation systems. • In hierarchical databases, accessing or updating data is very fast, because the relationships have been predefined.
  • 13. Network Database • The network database was in part developed to solve some of the problems of the hierarchical database model. A network database is similar to a hierarchical database, but each child record can have more than one parent records. • Also used principally with mainframes, the network database is more flexible than the hierarchical arrangement, because different relationships may be established between different branches of data. • Although the network database was an improvement over the hierarchical database, some people in the database community believed there had to be a better way to manage large amounts of data.
  • 15. Relational Database • More flexible than hierarchical and network database models, the relational database relates, or connects, data in different files through the use of a key, or common data element. • HOW A RELATIONAL DATABASE WORKS In the relational database, there are no access paths down through a hierarchy. Instead, data elements are stored in different tables made up of rows and columns. • In database terminology, the tables are called relations (files), the rows are called tuples (records), and the columns are called attributes (fields).
  • 17. Relational Database • Whereas in the hierarchical and network database models data is arranged according to physical address, in the relational model data is arranged logically, by content. • Hence, the physical order of the records or fields in a table is completely immaterial. Each record in the table is identified by a field—the primary key—that contains a unique value. There are following two methods through which data can be accessed in Relational Databases. • USING STRUCTURED QUERY LANGUAGE • QUERY BY EXAMPLE
  • 18. USING STRUCTURED QUERY LANGUAGE • To retrieve data in a relational database, you specify the appropriate fields and the tables to which they belong in a query to the database, using a query language. • Structured query language ( SQL, pronounced “sequel”) is the standard query language used to create, modify, maintain, and query relational databases. • The three components of a basic SQL query are the SELECT . . . FROM statement, the WHERE clause, and the ORDER BY clause. • SELECT PRODUCT-NUMBER, PRODUCT-NAME FROM PRODUCT WHERE PRICE < 100.00 ORDERBY PRODUCT-NAME;
  • 19. QUERY BY EXAMPLE • In query by example (QBE), the user asks for information in a database by using a sample record form, or table, to define the qualifications he or she wants for selected records; in other words, the user fills in a form. • For example, a university’s database of its student-loan records might have the column headings (field names) NAME, ADDRESS, CITY, STATE, ZIP, AMOUNT OWED. • When you use the QBE method, the database would display an empty record with these column headings. You would then type in the search conditions that you want in the appropriate columns
  • 20. INFORMATION SYSTEMS IN ORGANIZATIONS: Using Database to Help Make Decisions • The data in databases is used to build information, and information— and how it is used—lies at the heart of every organization. • Of course, how useful information is depends on the quality of it, as well as the information systems used to distribute it. Let us consider these subjects.
  • 21. The Qualities of Good Information • Correct and verifiable: This means information must be accurate and checkable. • Complete yet concise: Complete means information must include all relevant data. Concise means it includes only relevant data. • Cost effective: This means the information is efficiently obtained and understandable. • Current: Current means timely yet also time sensitive, based on historical, present, or future information needs. • Accessible: This means the information is quickly and easily obtainable
  • 22. Computer-Based Information Systems • The purpose of a computer-based information system is to provide managers (and various categories of employees) with the appropriate kind of information to help them make decisions. • It is used to collect and analyze data from all departments and is designed to provide an organization’s management with up-to-date information at any time. • There are several types of computer-based information systems, which serve different levels of management: • Office information systems • Transaction processing systems • Management information systems • Decision support systems • Executive support systems • Expert systems
  • 23. Information Systems • Office Information Systems: Office information systems (OISs), also called office automation systems (OASs), combine various technologies to reduce the manual labor required in operating an efficient office environment and to increase productivity. • Transaction Processing Systems: A transaction processing system (TPS) is a computer-based information system that keeps track of the transactions needed to conduct business. • Management Information Systems: A management information system (MIS) (pronounced “em-eye-ess”) is a computer-based information system that uses data recorded by a TPS as input into programs that produce routine reports as output.
  • 24. Information Systems • Decision Support Systems: A decision support system (DSS) is a computer-based information system that provides a flexible tool for analysis and helps managers focus on the future. • Executive Support Systems: executive information system (EIS), an executive support system (ESS) is an easy-to-use DSS made especially for strategic managers; it specifically supports strategic decision making. • Expert Systems: An expert system, or knowledge-based system, is a set of interactive computer programs that helps users solve problems that would otherwise require the assistance of a human expert.