SlideShare a Scribd company logo
1 of 69
Download to read offline
1
Electronic Data Processing
(EDP)
Mr.Anjan Mahanta
LCCT,International Studies Program
2
Course Outline
 Managing Files : Basic Concepts
How data is Organized: The Data Storage
Hierarchy
Types of Files
 Database Management Systems
Four Types of Database Access
 Database Models
Hierarchical Database
Network Database
Relational Database
Object-Oriented Database
 Features of Database Management System
Data Dictionary
Utilities
 Databases and the New Economy
E-Commerce
Data Mining
 The Ethics of Using Storage and Databases
Manipulation of Sound, Photos, Video & Television
Accuracy and Completeness
3
Grade
Sub-Test Quiz Mid-Term Final Attendance Homeroom
20% 10% 25% 25% 10% 10%
4
Unit 1
Managing Files: Basic Concepts
 Data can be grouped into categories
 The data storage hierarchy consists of the
levels of data stored in a computer
 Bits
 Bytes
 Fields
 Records
 Files
 Databases
5
Unit 1
Managing Files: Basic Concepts
 Characters: A character (byte) is a letter,
number, or special character
Examples : A, B, C, 1, 2, 3, #, $, %
 Field: A field is a unit of data consisting of
one or more characters (bytes).
Examples: your name, address
6
Unit 1
Managing Files: Basic Concepts
 Record: A record is a collection of related
fields.
Examples : Student code, name and address
 File: A file is a collection of related records.
Examples: file of students grade information
7
Unit 1
Managing Files: Basic Concepts
 Database: is an organized collection of
related files.
Examples : Student information
8
Unit 1
Managing Files: Basic Concepts
Type of data Contains Example
Database Several files Student database
Address, Grade, Fee
File Several records Name Address
Jack Bangkok
Rocky Chiangmai
Record Several fields Name Address
Jack Bangkok
Field Several Characters Name
Jack
Character Bits (0 or 1) S
1110 0010
9
Example from MS-Access
 Student Address File
10
Exercise - 1
 What are databases?
 Write five examples of databases.
 Design one database in details showing
fields and records.
11
Primary Key Field
 A key field uniquely identify a record
 It helps to easily process the database
 Example:
student_code is a key field in a
student database
12
Types of Files
 File is the collection of data or information
 The user gives a name to each file to save
for future use
 The file names have an extension name.
 Example –
 Microsoft Word .doc
 Microsoft Excel .xls
 Microsoft PowerPoint .ppt
13
Types of Files
 There are many types of files but the
most important types are –
Program files
Data files
14
Program Files
 Program files are files containing software
instructions.
 The program files are instruction files written
by a program for a particular application
 They have a file extension. For example –
.bas for BASIC, .pas for Pascal or .jav for Java
 For the processor to use a source file at first it
must be converted to an executable file,
.exe file
15
Data files
 Data files are files that contain data –
words, numbers, pictures, sounds, etc.
 Data files are created by the users.
16
Other types of files
 ASCII files
 .txt
 Image(graphic files)
 .bmp, .gif, .jpg, .pcx, .tif, .wmf
 Audio files
 .wav, .mid, .mp3
 Animation/video files
 .avi, .mpg
 Web files
 .html, .htm, .xml, .php, .asp
17
Exercise
 What is a primary key?
 What is a file?
 What are the types of file?
18
Types of Data Files
 Master file: The master files are
updated periodically
 Transaction file: The transaction file
is a temporary file that holds all
changes to be made to the master file:
additions, deletions and updations
19
Example
20
Data Access Methods
21
Data Access Methods
 Sequential Storage: means that data is
stored and retrieved in sequence, in
alphabetically – ascending or descending
order
 Example: A tape cassette
 Advantage: less expensive
 Disadvantage: file searching is slow
22
Example
 Sequential Search
23
Data Access Methods
 Direct Access Storage: means that
computer can go directly to the information
you want. It is also known as random.
 Example: A CD Player
 Advantage: faster
 Disadvantage: more expensive
24
Exercise
1. What is a master file?
2. What is a transaction file?
3. What is sequential storage?
4. What is direct access storage?
25
Offline Storage
 Offline storage means that data is not in
the direct control on the CPU. It maybe
saved in a CD.
 The data has to be loaded onto an input
device.
26
Online Storage
 Online storage means that data is
immediately accessible by the CPU.
 You need not wait for a CD.
 Storage is on the disk (direct access storage)
27
Database Management Systems
DBMS
 A database is an organized collection of related files
 There are many types of databases
 To manage the information a database
management system is used
 The DBMS is a program that controls the structure
of a database and access to the data
28
Advantages of DBMS
 File Sharing
 users can share files
29
Advantages of DBMS
 Reduced data redundancy
 prevent duplication
30
Advantages of DBMS
 Improved data integrity
 accurate and up to date
31
Advantages of DBMS
 Increased security
 data can be secured by the use of passwords
32
Exercise
 What is a Database Management System?
 What are the advantages of DBMS?
33
Types of Database Access
 Individual database
 used by one person
34
Types of Database Access
 Shared database
 shared by many people in one location
35
Types of Database Access
 Distributed database
 shared by many people in many locations
36
Types of Database Access
 Public databank
 information for the public
 Yahoo
 Google
 Law
 Shopping
 News
 Games
37
DBA
 The Database Administrator (DBA) coordinates all
related activities and needs for an organization’s
database.
 The DBA determines user access privileges, sets
standards.
 The DBA is responsible for system back up and
recovery.
38
Exercise
 Describe the four types of databases.
 What does a database administrator do?
39
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.
40
Database Models
41
Database Models
42
Database Models
 Network Database
 A network database is similar to a hierarchical
database, but each child record can have more than
one parent record.
43
Database Models
 Relational Database
 A relational database relates, or connects, data in
different files through the use of a key field, or
common data element.
44
Database Models
 Relational Database
45
Database Models
 Relational Database
46
Structured Query Language
SQL
 SQL is the standard language used to
 Create
 Add
 Delete
 Update
relational databases
47
Structured Query Language
SQL
 Example
 1. Select * from student
 2. Select * from student where firstname=“Andrew”
 3. Select * from student where grade > 2
 4. Select * from student where age > 18
48
Object Oriented Database
 An object oriented database uses objects.
An object consists of graphics, audio and
video.
49
Exercise
 What are the four models of database
organization?
 What is SQL?
50
Application Service Provider
ASP
 ASPs allow users to subscribe to various
software applications over the Internet.
 Example in Thailand
 ADSL
51
DBMS Components
 Data Dictionary
 It is a file that stores the definitions of the
structure of data used in the database.
 Example:
Keyword Description
Room_Id The room numbers of the hotel
Check_In The date when the guest check into the hotel
52
DBMS Components
 Utilities
 The DBMS utilities maintains the database by
creating, editing and monitoring data input
 Example
 MS-ACCESS
53
DBMS Components
 Report Generator
 It is a program that creates onscreen or printed
document
 Example
 MS-ACCESS
54
DBMS Components
 Access Security
 It specifies user access privileges
 Example
 MySQL
 ORACLE
55
Exercise
 1.What is data dictionary?
 2.What do DBMS utilities do?
 3.How does access security work?
 4.Explain the four types of system recovery.
56
DBMS Components
 System / Data Recovery
 It enables contents of database to be recovered
after system failure
 Types of Data Recovery
 Mirroring – two copies in different locations
 Reprocessing – redoing the processing from a known
past point
 Rollforward – a variant on reprocessing
 Rollback – undoing unwanted changes
57
E-Commerce
 E-Commerce or Electronic Commerce
 is the buying and selling of products and
services through computer networks
 Amazon.com, eBay, Priceline.com are the
best example for e-commerce or online
shopping
58
Process of e-commerce
59
Process of e-commerce
60
Data Mining
 Data mining (DM) is the computer-assisted process
of sifting through and analyzing vast amounts of
data
 It is used to extract meaning and discover new
knowledge
 It’s main purpose is to describe past trends and
predict future trends
 It can be used to learn customer, marketing,
production and financial data
61
Data Mining
62
Data Mining Process
63
Data Mining Process
64
Applications of Data mining
 Marketing
 Health
 Science
 B2B
 In a business to business (B2B) system, a
business sells to other businesses, using the
Internet to cut transaction costs and increase
efficiencies.
65
B2B Systems
66
B2B Systems
67
Exercise
 What is data mining, and how is it used?
 What is B2B system?
68
The Ethics of Using Databases
 Morphing – transforming one image to
another
 Manipulation of sound
 With the help of new technology a song can be recorded by
the singers at different times and places
 Manipulation of photos
 Editing images
 Manipulation of Videos & Television
 Graphics and animation
69
The Ethics of Using Databases
 Accuracy and Completeness
 Public databanks Nexis/Lexis
 Matters of Privacy
 Privacy is the right of people not to
reveal information about themselves
 Monopolizing Information

More Related Content

What's hot (20)

Computer hardware and its components
Computer hardware and its componentsComputer hardware and its components
Computer hardware and its components
 
Data and information
Data and informationData and information
Data and information
 
Usage Of Application Software
Usage Of Application SoftwareUsage Of Application Software
Usage Of Application Software
 
Business information system
Business information systemBusiness information system
Business information system
 
Systems development cycle
Systems development cycleSystems development cycle
Systems development cycle
 
Application software
Application softwareApplication software
Application software
 
Word processing
Word processing  Word processing
Word processing
 
Internet, intranet and extranet
Internet, intranet and extranetInternet, intranet and extranet
Internet, intranet and extranet
 
Six major types of information systems
Six major types of information systemsSix major types of information systems
Six major types of information systems
 
Data Processing
Data ProcessingData Processing
Data Processing
 
Types of computer
Types of computerTypes of computer
Types of computer
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
File management
File managementFile management
File management
 
Introduction to spreadsheets
Introduction to spreadsheetsIntroduction to spreadsheets
Introduction to spreadsheets
 
Introduction to ms access database
Introduction to ms access databaseIntroduction to ms access database
Introduction to ms access database
 
File management
File managementFile management
File management
 
Introduction to computers
Introduction to computersIntroduction to computers
Introduction to computers
 
Concepts and components of information system
Concepts  and components of information systemConcepts  and components of information system
Concepts and components of information system
 
Os ppt
Os pptOs ppt
Os ppt
 
Input devices presentation
Input devices presentationInput devices presentation
Input devices presentation
 

Viewers also liked

Understanding EDP (Electronic Data Processing) Environment
Understanding EDP (Electronic Data Processing) EnvironmentUnderstanding EDP (Electronic Data Processing) Environment
Understanding EDP (Electronic Data Processing) EnvironmentAdetula Bunmi
 
Small scale industries..ppt
Small scale industries..pptSmall scale industries..ppt
Small scale industries..pptHems Tekwani
 
Objectives of edp's (2)
Objectives of edp's (2)Objectives of edp's (2)
Objectives of edp's (2)Poonam Dixit
 
2nd chapter Small Scale Enterprises(part 1)
2nd chapter Small Scale Enterprises(part 1)2nd chapter Small Scale Enterprises(part 1)
2nd chapter Small Scale Enterprises(part 1)venkatesh yadav
 
small scale industries opportunities and challlenges
small scale industries opportunities and challlengessmall scale industries opportunities and challlenges
small scale industries opportunities and challlengesShaalvii Sharma
 
small-scale-industries
small-scale-industriessmall-scale-industries
small-scale-industriesSavita Makond
 
Women entrepreneurs
Women entrepreneursWomen entrepreneurs
Women entrepreneursAmit7613
 
Small Scale Industries
Small Scale IndustriesSmall Scale Industries
Small Scale Industriesjennna
 
Cost Of Capital
Cost Of CapitalCost Of Capital
Cost Of Capitalyashpal01
 
Small scale industry
Small scale industrySmall scale industry
Small scale industry17somya
 

Viewers also liked (12)

Understanding EDP (Electronic Data Processing) Environment
Understanding EDP (Electronic Data Processing) EnvironmentUnderstanding EDP (Electronic Data Processing) Environment
Understanding EDP (Electronic Data Processing) Environment
 
Small scale industries..ppt
Small scale industries..pptSmall scale industries..ppt
Small scale industries..ppt
 
Objectives of edp's (2)
Objectives of edp's (2)Objectives of edp's (2)
Objectives of edp's (2)
 
2nd chapter Small Scale Enterprises(part 1)
2nd chapter Small Scale Enterprises(part 1)2nd chapter Small Scale Enterprises(part 1)
2nd chapter Small Scale Enterprises(part 1)
 
small scale industries opportunities and challlenges
small scale industries opportunities and challlengessmall scale industries opportunities and challlenges
small scale industries opportunities and challlenges
 
Small scale industries
Small scale industriesSmall scale industries
Small scale industries
 
small-scale-industries
small-scale-industriessmall-scale-industries
small-scale-industries
 
Women entrepreneurs
Women entrepreneursWomen entrepreneurs
Women entrepreneurs
 
Small Scale Industries
Small Scale IndustriesSmall Scale Industries
Small Scale Industries
 
Cost Of Capital
Cost Of CapitalCost Of Capital
Cost Of Capital
 
Cost Of Capital
Cost Of CapitalCost Of Capital
Cost Of Capital
 
Small scale industry
Small scale industrySmall scale industry
Small scale industry
 

Similar to Electronic Data Processing

L3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxL3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxUsamaSatti11
 
L3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxL3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxUsamaSatti11
 
L3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxL3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxUsamaSatti11
 
TID Chapter 10 Introduction To Database
TID Chapter 10 Introduction To DatabaseTID Chapter 10 Introduction To Database
TID Chapter 10 Introduction To DatabaseWanBK Leo
 
Database administration
Database administrationDatabase administration
Database administrationAnish Gupta
 
Database Systems
Database SystemsDatabase Systems
Database SystemsUsman Tariq
 
Database Systems
Database SystemsDatabase Systems
Database SystemsUsman Tariq
 
Chapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdfChapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdfTamiratDejene1
 
Chapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdfChapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdfTamiratDejene1
 
Chapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptxChapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptxMaxamedAbiib1
 
Database Systems-Lec 1.ppt
Database Systems-Lec 1.pptDatabase Systems-Lec 1.ppt
Database Systems-Lec 1.pptsara591850
 
Database Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqwDatabase Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqwadrianantopina1
 
Bba ii cam u ii-introduction to dbms
Bba ii cam  u ii-introduction to dbmsBba ii cam  u ii-introduction to dbms
Bba ii cam u ii-introduction to dbmsRai University
 
Digital Asset Management Forum Chicago 2011
Digital Asset Management Forum Chicago 2011Digital Asset Management Forum Chicago 2011
Digital Asset Management Forum Chicago 2011Extensis
 

Similar to Electronic Data Processing (20)

L3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxL3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptx
 
L3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxL3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptx
 
L3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptxL3_Electronic Data Processing.pptx
L3_Electronic Data Processing.pptx
 
Db lecture 1
Db lecture 1Db lecture 1
Db lecture 1
 
Database part1-
Database part1-Database part1-
Database part1-
 
TID Chapter 10 Introduction To Database
TID Chapter 10 Introduction To DatabaseTID Chapter 10 Introduction To Database
TID Chapter 10 Introduction To Database
 
Dbms 1
Dbms 1Dbms 1
Dbms 1
 
Database administration
Database administrationDatabase administration
Database administration
 
Database Systems
Database SystemsDatabase Systems
Database Systems
 
Database Systems
Database SystemsDatabase Systems
Database Systems
 
Chapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdfChapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdf
 
Chapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdfChapter – 1 Intro to DBS.pdf
Chapter – 1 Intro to DBS.pdf
 
Chapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptxChapter 1 Database Systems.pptx
Chapter 1 Database Systems.pptx
 
Database Systems-Lec 1.ppt
Database Systems-Lec 1.pptDatabase Systems-Lec 1.ppt
Database Systems-Lec 1.ppt
 
Dbms unit01
Dbms unit01Dbms unit01
Dbms unit01
 
data base manage ment
data base manage mentdata base manage ment
data base manage ment
 
Database Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqwDatabase Management.pptxqqwwqwqwqqweqwqw
Database Management.pptxqqwwqwqwqqweqwqw
 
Bba ii cam u ii-introduction to dbms
Bba ii cam  u ii-introduction to dbmsBba ii cam  u ii-introduction to dbms
Bba ii cam u ii-introduction to dbms
 
Digital Asset Management Forum Chicago 2011
Digital Asset Management Forum Chicago 2011Digital Asset Management Forum Chicago 2011
Digital Asset Management Forum Chicago 2011
 
DBMS Lecture 1.ppt
DBMS Lecture 1.pptDBMS Lecture 1.ppt
DBMS Lecture 1.ppt
 

More from Anjan Mahanta

Paper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdfPaper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdfAnjan Mahanta
 
Project management part 2
Project management part 2Project management part 2
Project management part 2Anjan Mahanta
 
Project management part 1
Project management part 1Project management part 1
Project management part 1Anjan Mahanta
 
13.03 - Satellite communication systems
13.03 - Satellite communication systems13.03 - Satellite communication systems
13.03 - Satellite communication systemsAnjan Mahanta
 
13.02 Network Security
13.02   Network Security13.02   Network Security
13.02 Network SecurityAnjan Mahanta
 
13.01 Network Components
13.01   Network Components13.01   Network Components
13.01 Network ComponentsAnjan Mahanta
 
The role and impact of IT in society
The role and impact of IT in societyThe role and impact of IT in society
The role and impact of IT in societyAnjan Mahanta
 
Emerging Technologies
Emerging TechnologiesEmerging Technologies
Emerging TechnologiesAnjan Mahanta
 
Conditional statistical functions
Conditional statistical functionsConditional statistical functions
Conditional statistical functionsAnjan Mahanta
 
Spreadsheet if and nested if function
Spreadsheet if and nested if functionSpreadsheet if and nested if function
Spreadsheet if and nested if functionAnjan Mahanta
 
Spreadsheet lookup functions
Spreadsheet lookup functionsSpreadsheet lookup functions
Spreadsheet lookup functionsAnjan Mahanta
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functionsAnjan Mahanta
 
Spreadsheet Date & Time Functions
Spreadsheet Date & Time FunctionsSpreadsheet Date & Time Functions
Spreadsheet Date & Time FunctionsAnjan Mahanta
 
Networks and the effects of using them
Networks and the effects of using themNetworks and the effects of using them
Networks and the effects of using themAnjan Mahanta
 
Storage devices and media
Storage devices and mediaStorage devices and media
Storage devices and mediaAnjan Mahanta
 
Chapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & SafetyChapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & SafetyAnjan Mahanta
 

More from Anjan Mahanta (20)

Paper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdfPaper 2 – Exam Revision Notes.pdf
Paper 2 – Exam Revision Notes.pdf
 
Project management part 2
Project management part 2Project management part 2
Project management part 2
 
Project management part 1
Project management part 1Project management part 1
Project management part 1
 
13.03 - Satellite communication systems
13.03 - Satellite communication systems13.03 - Satellite communication systems
13.03 - Satellite communication systems
 
13.02 Network Security
13.02   Network Security13.02   Network Security
13.02 Network Security
 
13.01 Network Components
13.01   Network Components13.01   Network Components
13.01 Network Components
 
The role and impact of IT in society
The role and impact of IT in societyThe role and impact of IT in society
The role and impact of IT in society
 
Emerging Technologies
Emerging TechnologiesEmerging Technologies
Emerging Technologies
 
Conditional statistical functions
Conditional statistical functionsConditional statistical functions
Conditional statistical functions
 
Spreadsheet if and nested if function
Spreadsheet if and nested if functionSpreadsheet if and nested if function
Spreadsheet if and nested if function
 
Spreadsheet lookup functions
Spreadsheet lookup functionsSpreadsheet lookup functions
Spreadsheet lookup functions
 
Spreadsheet text functions
Spreadsheet text functionsSpreadsheet text functions
Spreadsheet text functions
 
Spreadsheet Date & Time Functions
Spreadsheet Date & Time FunctionsSpreadsheet Date & Time Functions
Spreadsheet Date & Time Functions
 
Networks and the effects of using them
Networks and the effects of using themNetworks and the effects of using them
Networks and the effects of using them
 
Scratch Animation
Scratch AnimationScratch Animation
Scratch Animation
 
Expert Systems
Expert SystemsExpert Systems
Expert Systems
 
Storage devices and media
Storage devices and mediaStorage devices and media
Storage devices and media
 
Using Network
Using NetworkUsing Network
Using Network
 
The Digital Divide
The Digital DivideThe Digital Divide
The Digital Divide
 
Chapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & SafetyChapter 4 E-Safety and Health & Safety
Chapter 4 E-Safety and Health & Safety
 

Recently uploaded

USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...Postal Advocate Inc.
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...Nguyen Thanh Tu Collection
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfMr Bounab Samir
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfTechSoup
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxAshokKarra1
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parentsnavabharathschool99
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Celine George
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxChelloAnnAsuncion2
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptxmary850239
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxMaryGraceBautista27
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designMIPLM
 

Recently uploaded (20)

USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
USPS® Forced Meter Migration - How to Know if Your Postage Meter Will Soon be...
 
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
HỌC TỐT TIẾNG ANH 11 THEO CHƯƠNG TRÌNH GLOBAL SUCCESS ĐÁP ÁN CHI TIẾT - CẢ NĂ...
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdfLike-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
Like-prefer-love -hate+verb+ing & silent letters & citizenship text.pdf
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdfInclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
Inclusivity Essentials_ Creating Accessible Websites for Nonprofits .pdf
 
Karra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptxKarra SKD Conference Presentation Revised.pptx
Karra SKD Conference Presentation Revised.pptx
 
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptxYOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
YOUVE_GOT_EMAIL_PRELIMS_EL_DORADO_2024.pptx
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Choosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for ParentsChoosing the Right CBSE School A Comprehensive Guide for Parents
Choosing the Right CBSE School A Comprehensive Guide for Parents
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17Field Attribute Index Feature in Odoo 17
Field Attribute Index Feature in Odoo 17
 
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptxGrade 9 Q4-MELC1-Active and Passive Voice.pptx
Grade 9 Q4-MELC1-Active and Passive Voice.pptx
 
4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx4.18.24 Movement Legacies, Reflection, and Review.pptx
4.18.24 Movement Legacies, Reflection, and Review.pptx
 
Science 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptxScience 7 Quarter 4 Module 2: Natural Resources.pptx
Science 7 Quarter 4 Module 2: Natural Resources.pptx
 
Keynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-designKeynote by Prof. Wurzer at Nordex about IP-design
Keynote by Prof. Wurzer at Nordex about IP-design
 

Electronic Data Processing

  • 1. 1 Electronic Data Processing (EDP) Mr.Anjan Mahanta LCCT,International Studies Program
  • 2. 2 Course Outline  Managing Files : Basic Concepts How data is Organized: The Data Storage Hierarchy Types of Files  Database Management Systems Four Types of Database Access  Database Models Hierarchical Database Network Database Relational Database Object-Oriented Database  Features of Database Management System Data Dictionary Utilities  Databases and the New Economy E-Commerce Data Mining  The Ethics of Using Storage and Databases Manipulation of Sound, Photos, Video & Television Accuracy and Completeness
  • 3. 3 Grade Sub-Test Quiz Mid-Term Final Attendance Homeroom 20% 10% 25% 25% 10% 10%
  • 4. 4 Unit 1 Managing Files: Basic Concepts  Data can be grouped into categories  The data storage hierarchy consists of the levels of data stored in a computer  Bits  Bytes  Fields  Records  Files  Databases
  • 5. 5 Unit 1 Managing Files: Basic Concepts  Characters: A character (byte) is a letter, number, or special character Examples : A, B, C, 1, 2, 3, #, $, %  Field: A field is a unit of data consisting of one or more characters (bytes). Examples: your name, address
  • 6. 6 Unit 1 Managing Files: Basic Concepts  Record: A record is a collection of related fields. Examples : Student code, name and address  File: A file is a collection of related records. Examples: file of students grade information
  • 7. 7 Unit 1 Managing Files: Basic Concepts  Database: is an organized collection of related files. Examples : Student information
  • 8. 8 Unit 1 Managing Files: Basic Concepts Type of data Contains Example Database Several files Student database Address, Grade, Fee File Several records Name Address Jack Bangkok Rocky Chiangmai Record Several fields Name Address Jack Bangkok Field Several Characters Name Jack Character Bits (0 or 1) S 1110 0010
  • 9. 9 Example from MS-Access  Student Address File
  • 10. 10 Exercise - 1  What are databases?  Write five examples of databases.  Design one database in details showing fields and records.
  • 11. 11 Primary Key Field  A key field uniquely identify a record  It helps to easily process the database  Example: student_code is a key field in a student database
  • 12. 12 Types of Files  File is the collection of data or information  The user gives a name to each file to save for future use  The file names have an extension name.  Example –  Microsoft Word .doc  Microsoft Excel .xls  Microsoft PowerPoint .ppt
  • 13. 13 Types of Files  There are many types of files but the most important types are – Program files Data files
  • 14. 14 Program Files  Program files are files containing software instructions.  The program files are instruction files written by a program for a particular application  They have a file extension. For example – .bas for BASIC, .pas for Pascal or .jav for Java  For the processor to use a source file at first it must be converted to an executable file, .exe file
  • 15. 15 Data files  Data files are files that contain data – words, numbers, pictures, sounds, etc.  Data files are created by the users.
  • 16. 16 Other types of files  ASCII files  .txt  Image(graphic files)  .bmp, .gif, .jpg, .pcx, .tif, .wmf  Audio files  .wav, .mid, .mp3  Animation/video files  .avi, .mpg  Web files  .html, .htm, .xml, .php, .asp
  • 17. 17 Exercise  What is a primary key?  What is a file?  What are the types of file?
  • 18. 18 Types of Data Files  Master file: The master files are updated periodically  Transaction file: The transaction file is a temporary file that holds all changes to be made to the master file: additions, deletions and updations
  • 21. 21 Data Access Methods  Sequential Storage: means that data is stored and retrieved in sequence, in alphabetically – ascending or descending order  Example: A tape cassette  Advantage: less expensive  Disadvantage: file searching is slow
  • 23. 23 Data Access Methods  Direct Access Storage: means that computer can go directly to the information you want. It is also known as random.  Example: A CD Player  Advantage: faster  Disadvantage: more expensive
  • 24. 24 Exercise 1. What is a master file? 2. What is a transaction file? 3. What is sequential storage? 4. What is direct access storage?
  • 25. 25 Offline Storage  Offline storage means that data is not in the direct control on the CPU. It maybe saved in a CD.  The data has to be loaded onto an input device.
  • 26. 26 Online Storage  Online storage means that data is immediately accessible by the CPU.  You need not wait for a CD.  Storage is on the disk (direct access storage)
  • 27. 27 Database Management Systems DBMS  A database is an organized collection of related files  There are many types of databases  To manage the information a database management system is used  The DBMS is a program that controls the structure of a database and access to the data
  • 28. 28 Advantages of DBMS  File Sharing  users can share files
  • 29. 29 Advantages of DBMS  Reduced data redundancy  prevent duplication
  • 30. 30 Advantages of DBMS  Improved data integrity  accurate and up to date
  • 31. 31 Advantages of DBMS  Increased security  data can be secured by the use of passwords
  • 32. 32 Exercise  What is a Database Management System?  What are the advantages of DBMS?
  • 33. 33 Types of Database Access  Individual database  used by one person
  • 34. 34 Types of Database Access  Shared database  shared by many people in one location
  • 35. 35 Types of Database Access  Distributed database  shared by many people in many locations
  • 36. 36 Types of Database Access  Public databank  information for the public  Yahoo  Google  Law  Shopping  News  Games
  • 37. 37 DBA  The Database Administrator (DBA) coordinates all related activities and needs for an organization’s database.  The DBA determines user access privileges, sets standards.  The DBA is responsible for system back up and recovery.
  • 38. 38 Exercise  Describe the four types of databases.  What does a database administrator do?
  • 39. 39 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.
  • 42. 42 Database Models  Network Database  A network database is similar to a hierarchical database, but each child record can have more than one parent record.
  • 43. 43 Database Models  Relational Database  A relational database relates, or connects, data in different files through the use of a key field, or common data element.
  • 46. 46 Structured Query Language SQL  SQL is the standard language used to  Create  Add  Delete  Update relational databases
  • 47. 47 Structured Query Language SQL  Example  1. Select * from student  2. Select * from student where firstname=“Andrew”  3. Select * from student where grade > 2  4. Select * from student where age > 18
  • 48. 48 Object Oriented Database  An object oriented database uses objects. An object consists of graphics, audio and video.
  • 49. 49 Exercise  What are the four models of database organization?  What is SQL?
  • 50. 50 Application Service Provider ASP  ASPs allow users to subscribe to various software applications over the Internet.  Example in Thailand  ADSL
  • 51. 51 DBMS Components  Data Dictionary  It is a file that stores the definitions of the structure of data used in the database.  Example: Keyword Description Room_Id The room numbers of the hotel Check_In The date when the guest check into the hotel
  • 52. 52 DBMS Components  Utilities  The DBMS utilities maintains the database by creating, editing and monitoring data input  Example  MS-ACCESS
  • 53. 53 DBMS Components  Report Generator  It is a program that creates onscreen or printed document  Example  MS-ACCESS
  • 54. 54 DBMS Components  Access Security  It specifies user access privileges  Example  MySQL  ORACLE
  • 55. 55 Exercise  1.What is data dictionary?  2.What do DBMS utilities do?  3.How does access security work?  4.Explain the four types of system recovery.
  • 56. 56 DBMS Components  System / Data Recovery  It enables contents of database to be recovered after system failure  Types of Data Recovery  Mirroring – two copies in different locations  Reprocessing – redoing the processing from a known past point  Rollforward – a variant on reprocessing  Rollback – undoing unwanted changes
  • 57. 57 E-Commerce  E-Commerce or Electronic Commerce  is the buying and selling of products and services through computer networks  Amazon.com, eBay, Priceline.com are the best example for e-commerce or online shopping
  • 60. 60 Data Mining  Data mining (DM) is the computer-assisted process of sifting through and analyzing vast amounts of data  It is used to extract meaning and discover new knowledge  It’s main purpose is to describe past trends and predict future trends  It can be used to learn customer, marketing, production and financial data
  • 64. 64 Applications of Data mining  Marketing  Health  Science  B2B  In a business to business (B2B) system, a business sells to other businesses, using the Internet to cut transaction costs and increase efficiencies.
  • 67. 67 Exercise  What is data mining, and how is it used?  What is B2B system?
  • 68. 68 The Ethics of Using Databases  Morphing – transforming one image to another  Manipulation of sound  With the help of new technology a song can be recorded by the singers at different times and places  Manipulation of photos  Editing images  Manipulation of Videos & Television  Graphics and animation
  • 69. 69 The Ethics of Using Databases  Accuracy and Completeness  Public databanks Nexis/Lexis  Matters of Privacy  Privacy is the right of people not to reveal information about themselves  Monopolizing Information