SlideShare a Scribd company logo
UNIT III
Handling the Corporate Data
By Dr. Dhobale J V
Associate Professor
School of Engineering & Technology
RNB Global University, Bikaner
RNB Global University, Bikaner. 1Course Code - 11010700
Objectives
 Data Resource Management.
 DBMS.
 Types of DBMS.
 Data Warehousing.
 Data Mining.
 Information Quality.
 Data/Information security.
 IT Audit.
 IT Services contact Management.
 Risk Analysis.
2RNB Global University, Bikaner.Course Code - 11010700
Sources and Types of Information
 We receive and gather information from a
huge range of sources.
 In business, types of information includes:
 Customer and Employee information.
 Email, mail & faxes.
 Charts and graphs
 Monthly financial reports.
 Signs directing customers to a particular location.
 Procedures.
 Pictures & diagrams
 Industry specific.
 Demographic information 3RNB Global University, Bikaner.Course Code - 11010700
Sources and Types of Information
 Three basic types of information:
1. Strategic Information
2. Tactical Information
3. Operational Information
4RNB Global University, Bikaner.Course Code - 11010700
Sources and Types of Information
 Information comes from a variety of sources,
formal and informal:
1. Formal Sources:
1. Internal: – Computer System, Staff Record,
Accounting Records, Annual Reports, Company
Reports, Business documents, Planning
documents.
2. External: - Professional Journals, Books, Surveys,
Industry and Government reports.
5RNB Global University, Bikaner.Course Code - 11010700
Sources and Types of Information
2. Informal Sources: Includes conversation with
colleagues at lunch or from friends or other
associates external to your company.
 With Customer Contact Centers:
 Automatic Call Distribution reports.
 Other System reports.
 Call monitoring checklists.
 Customers.
 Emails.
 HR Department
 Budgets.
 Marketing Department 6RNB Global University, Bikaner.Course Code - 11010700
Database Management Systems (DBMS)
 Information form these sources needs to collect and
process for further processing.
 Organizations uses DBMS along with Data
Warehousing and Data Mining philosophies for
these.
7RNB Global University, Bikaner.Course Code - 11010700
Database Management Systems (DBMS)
 Database is a collection of related data
and data is a collection of facts and
figures that can be processed to
produce information.
 A database management
system stores data in such a way that it
becomes easier to retrieve, manipulate,
and produce information.
8RNB Global University, Bikaner.Course Code - 11010700
DBMS Characteristics
1. Real World Entity.
2. Relation based Tables.
3. Isolation of Data and Applications.
4. Less Redundancy.
5. Consistency.
6. Query Language.
7. Multiuser and Concurrent Access.
8. Multiple Views.
9. Security. 9RNB Global University, Bikaner.Course Code - 11010700
DBMS Users
10RNB Global University, Bikaner.Course Code - 11010700
DBMS Users
1. Administrators: Administrators
maintain the DBMS and are responsible
for administrating the database.
2. Designers: Designers are the group of
people who actually work on the
designing part of the database.
3. End Users: End users are those who
actually reap the benefits of having a
DBMS.
11RNB Global University, Bikaner.Course Code - 11010700
DBMS Architecture
 The design of a DBMS depends on its
architecture. It can be centralized or
decentralized or hierarchical.
 The architecture of a DBMS can be
seen as either single tier or multi-tier.
 An n-tier architecture divides the whole
system into related but
independent n modules, which can be
independently modified, altered,
changed, or replaced.
12RNB Global University, Bikaner.Course Code - 11010700
DBMS Architecture
 3-tire Architecture:
13RNB Global University, Bikaner.Course Code - 11010700
DBMS Architecture
 Database (Data) Tier: At this tier, the
database resides along with its query
processing languages. We also have
the relations that define the data and
their constraints at this level.
 Application (Middle) Tier: At this tier
reside the application server and the
programs that access the database.
 For a user, this application tier presents
an abstracted view of the database.
14RNB Global University, Bikaner.Course Code - 11010700
DBMS Architecture
 The application layer sits in the middle
and acts as a mediator between the
end-user and the database.
 User (Presentation) Tier: End-users
operate on this tier and they know
nothing about any existence of the
database beyond this layer.
 At this layer, multiple views of the
database can be provided by the
application.
15RNB Global University, Bikaner.Course Code - 11010700
Data Models
 Data models define how the logical
structure of a database is modeled.
 Data Models are fundamental entities to
introduce abstraction in a DBMS.
 Data models define how data is
connected to each other and how they
are processed and stored inside the
system.
16RNB Global University, Bikaner.Course Code - 11010700
Data Models
1. Entity-Relationship Model:
17RNB Global University, Bikaner.Course Code - 11010700
Data Models
1. Entity-Relationship Example:
18RNB Global University, Bikaner.Course Code - 11010700
Data Models (E-R Model)
1. Entity-Relationship Model: Entity-
Relationship (ER) Model is based on
the notion of real-world entities and
relationships among them.
 While formulating real-world scenario
into the database model, the ER Model
creates entity set, relationship set,
general attributes and constraints.
19RNB Global University, Bikaner.Course Code - 11010700
Data Models (E-R Model)
 ER Model is based on −
 Entities and their attributes.
 Relationships among entities.
20RNB Global University, Bikaner.Course Code - 11010700
Data Models (E-R Model)
 Entity − An entity in an ER Model is a
real-world entity having properties
called attributes.
 Every attribute is defined by its set of
values called domain.
 For example, in a school database, a
student is considered as an entity.
Student has various attributes like
name, age, class, etc.
21RNB Global University, Bikaner.Course Code - 11010700
Data Models (E-R Model)
 Relationship − The logical association
among entities is called relationship.
Relationships are mapped with entities
in various ways. Mapping cardinalities
define the number of association
between two entities.
 Mapping cardinalities − one to one; one
to many; many to one; many to many.
22RNB Global University, Bikaner.Course Code - 11010700
Data Models (Relational Model)
2. Relational Model: The most popular
data model in DBMS is the Relational
Model.
 It is more scientific a model than others.
 This model is based on first-order
predicate logic and defines a table as
an n-arry relation.
23RNB Global University, Bikaner.Course Code - 11010700
Data Models (Relational Model)
24RNB Global University, Bikaner.Course Code - 11010700
Data Models (Relational Model)
 The main highlights of this model are −
 Data is stored in tables called relations.
 Relations can be normalized.
 In normalized relations, values saved are
atomic values.
 Each row in a relation contains a unique
value.
 Each column in a relation contains values
from a same domain.
25RNB Global University, Bikaner.Course Code - 11010700
Data Schema & Instances
 A database schema is the skeleton
structure that represents the logical view
of the entire database. It defines how the
data is organized and how the relations
among them are associated.
 A database instance is a state of
operational database with data at any
given time.
26RNB Global University, Bikaner.Course Code - 11010700
Traditional File System and DBMS
 Characteristics of Traditional File
System:
1. It is a group of files storing data of an
organization.
2. Each file is independent from one another.
3. Each file is called a flat file.
4. Each file contained and processed
information for one specific function, such
as accounting or inventory.
27RNB Global University, Bikaner.Course Code - 11010700
Traditional File System and DBMS
 Characteristics of Traditional File
System:
5. As systems became more complex, file
processing systems offered little flexibility,
presented many limitations, and were
difficult to maintain.
6. Files are designed by using programs
written in programming languages such as
COBOL, C, C++.
28RNB Global University, Bikaner.Course Code - 11010700
Traditional File System and DBMS
 Limitations of Traditional File System:
1. Separated and Isolated Data.
2. Duplication of data.
3. Data Dependence.
4. Difficulty in representing data from the
user's view.
5. Data Inflexibility.
6. Incompatible file formats.
7. Data Security.
8. Concurrency problems.
29RNB Global University, Bikaner.Course Code - 11010700
Data Warehouse
 The term "Data Warehouse" was first
coined by Bill Inmon in 1990.
 According to Inmon, a data warehouse
is a subject oriented, integrated, time-
variant, and non-volatile collection of
data.
 This data helps analysts to take
informed decisions in an organization.
30RNB Global University, Bikaner.Course Code - 11010700
Data Warehouse
 A data warehouses provides us
generalized and consolidated data in
multidimensional view.
 Along with generalized and
consolidated view of data, a data
warehouses also provides us Online
Analytical Processing (OLAP) tools.
 These tools help us in interactive and
effective analysis of data in a
multidimensional space.
31RNB Global University, Bikaner.Course Code - 11010700
Data Warehouse
 Data mining functions such as
association, clustering, classification,
prediction can be integrated with OLAP
operations to enhance the interactive
mining of knowledge at multiple level of
abstraction.
 A data warehouse is a database, which
is kept separate from the organization's
operational databas..
32RNB Global University, Bikaner.Course Code - 11010700
Data Warehouse
 There is no frequent updating done in a
data warehouse.
 It possesses consolidated historical
data, which helps the organization to
analyze its business.
 A data warehouse helps executives to
organize, understand, and use their
data to take strategic decisions.
33RNB Global University, Bikaner.Course Code - 11010700
Data Warehouse
 Data warehouse systems help in the
integration of diversity of application
systems.
 A data warehouse system helps in
consolidated historical data analysis.
34RNB Global University, Bikaner.Course Code - 11010700
Data Warehouse - Features
1. Subject Oriented.
2. Integrated.
3. Time Variant.
4. Non-volatile
35RNB Global University, Bikaner.Course Code - 11010700
Data Warehouse Applications
1. Financial services.
2. Banking services.
3. Consumer goods.
4. Retail sectors.
5. Controlled manufacturing.
36RNB Global University, Bikaner.Course Code - 11010700
Types of Data Warehouse
1. Information Processing: A data
warehouse allows to process the data
stored in it. The data can be processed
by means of querying, basic statistical
analysis, reporting using crosstabs,
tables, charts, or graphs.
37RNB Global University, Bikaner.Course Code - 11010700
Types of Data Warehouse
2. Analytical Processing : A data
warehouse supports analytical
processing of the information stored in
it. The data can be analyzed by means
of basic OLAP operations, including
slice-and-dice, drill down, drill up, and
pivoting.
.
38RNB Global University, Bikaner.Course Code - 11010700
Types of Data Warehouse
3. Data Mining: Data mining supports
knowledge discovery by finding hidden
patterns and associations, constructing
analytical models, performing
classification and prediction.
 These mining results can be presented
using the visualization tools.
. 39RNB Global University, Bikaner.Course Code - 11010700
Data Warehousing
 Data warehousing is the process of
constructing and using a data
warehouse.
 A data warehouse is constructed by
integrating data from multiple
heterogeneous sources that support
analytical reporting, structured and/or ad
hoc queries, and decision making.
 Data warehousing involves data
cleaning, data integration, and data
consolidations. 40RNB Global University, Bikaner.
Data Warehousing
 There are decision support technologies
that help utilize the data available in a
data warehouse.
 These technologies help executives to
use the warehouse quickly and
effectively.
 They can gather data, analyze it, and
take decisions based on the information
present in the warehouse.
41RNB Global University, Bikaner.Course Code - 11010700
Functions of Data Warehouse
1. Data Extraction.
2. Data Cleaning.
3. Data Transformation.
4. Data Loading.
5. Refreshing.
42RNB Global University, Bikaner.Course Code - 11010700
Process Flow in Data Warehouse
 There are four major processes that
contribute to a data warehouse:
1. Extract and load the data.
2. Cleaning and transforming the data.
3. Backup and archive the data.
4. Managing queries and directing them to
the appropriate data sources.
. 43RNB Global University, Bikaner.Course Code - 11010700
Data Mining
 Data Mining is defined as extracting
information from huge sets of data.
 The information or knowledge extracted
so can be used for any of the following
applications:
 Market Analysis
 Fraud Detection
 Customer Retention
 Production Control
 Science Exploration
44RNB Global University, Bikaner.Course Code - 11010700
Data Mining - Applications
 Market Analysis:
1. Customer Profiling
2. Identifying Customer Requirements
3. Cross Market Analysis
4. Target Marketing
5. Determining Customer purchasing pattern
6. Providing Summary Information
45RNB Global University, Bikaner.Course Code - 11010700
Data Mining - Applications
 Corporate Analysis and Risk Management:
1. Finance Planning and Asset Evaluation
2. Resource Planning
3. Competition
46RNB Global University, Bikaner.Course Code - 11010700
Data Mining - Applications
 Fraud Detection:
 Data mining is also used in the fields of credit
card services and telecommunication to
detect frauds
47RNB Global University, Bikaner.Course Code - 11010700
IT Service Contract Management
 Bid Processing: is an offer
(often competitive) to set a price by an
individual or business for a product or
service or a demand that something be
done
 RFI, RFQ, RFT and RFP, These
processes have steadily grown in
popularity in procurement and purchasing,
especially amongst larger buying
organisations.
48RNB Global University, Bikaner.Course Code - 11010700
IT Service Contract Management
 RFI – Request for Information
An open enquiry that spans the market
seeking broad data and understanding.
 RFQ – Request for Quotation
An opportunity for potential suppliers
to competitively cost the final chosen
solution(s).
49RNB Global University, Bikaner.Course Code - 11010700
IT Service Contract Management
 RFT – Request for Tender
An opportunity for potential suppliers to
submit an offer to supply goods or services
against a detailed tender.
 RFP – Request for Proposal
Sometimes based on a prior RFI; a
business requirements-based request for
specific solutions to the sourcing
problem.
50RNB Global University, Bikaner.Course Code - 11010700
IT Audit
 In general an IT audit is the process of
examining information systems to ensure
they are storing, processing, controlling
and reporting organizational data
according to internal and external
procedures and regulations.
51RNB Global University, Bikaner.Course Code - 11010700
IT Audit
 The results of an IT audit can help an
organization learn about exposure to
different threats, highlight areas of non-
compliance with industry and government
standards and regulations, and can help
organizations improve efficiency and
strategic planning by identifying redundant
or inefficient processes.
 In general IT Auditors tend to either work
as “external auditors” or “internal auditors”.
52RNB Global University, Bikaner.Course Code - 11010700
Role of IT Auditors
1. Planning the Audit.
2. Interviews/Research.
3. System Interrogation.
4. Reporting.
53RNB Global University, Bikaner.Course Code - 11010700
SLA
 A service-level agreement (SLA) is
defined as an official commitment that
prevails between a service provider and
the customer.
 Particular aspects of the service – quality,
availability, responsibilities – are agreed
between the service provider and the
service user.
54RNB Global University, Bikaner.Course Code - 11010700
SLA
 The most common component of SLA is
that the services should be provided to
the customer as agreed upon in the
contract.
 Service level agreements are also defined
at different levels:
55RNB Global University, Bikaner.Course Code - 11010700
SLA
 Customer-based SLA.
 Service-based SLA.
 Multilevel SLA – Corporate Level,
Customer Level, Services Level.
56RNB Global University, Bikaner.Course Code - 11010700
SLA - Components
1. Type of service to be provided.
2. The service's desired performance level,
especially its reliability and
responsiveness.
3. The steps for reporting issues with the
service.
4. Response and issue resolution time-
frame.
5. Monitoring process and service level
reporting.
6. Repercussions for service provider not
meeting its commitment.
57RNB Global University, Bikaner.Course Code - 11010700
Arbitration clause
 An arbitration clause is a clause in
a contract that requires the parties to
resolve their disputes through
an arbitration process.
 Although such a clause may or may not
specify that arbitration occur within a
specific jurisdiction, it always binds the
parties to a type of resolution outside of
the courts, and is therefore considered a
kind of forum selection clause.
58RNB Global University, Bikaner.Course Code - 11010700
Exit / Escape clause
 An escape clause is any clause, term, or
condition in a contract that allows a party
to that contract to avoid having to perform
the contract.
 If an agreement was drawn up for the sale
of a house, for example, the purchaser
could include some kind of escape clause
in the contract, which will allow him to
"escape" from the contract without being
liable for breach of contract.
59RNB Global University, Bikaner.Course Code - 11010700
Information Quality
 Information is a vital resource for the success of any
organization.
 Future of an organization lies in using and
disseminating information wisely.
 Good quality information placed in right context in right
time tells us about opportunities and problems well in
advance.
 According to Wang and Strong, following are the
dimensions or elements of Information Quality.
60RNB Global University, Bikaner.Course Code - 11010700
Information Quality
 Intrinsic: Accuracy, Objectivity, Believability, Reputation.
 Contextual: Relevancy, Value-Added, Timeliness,
Completeness, Amount of information.
 Representational: Interpretability, Format, Coherence,
Compatibility.
 Accessibility: Accessibility, Access security.
61RNB Global University, Bikaner.Course Code - 11010700
Information Quality
 Most essential characteristic features for information
quality are:
1. Reliability - It should be verifiable and dependable.
2. Timely - It must be current and it must reach the users
well in time, so that important decisions can be made in
time.
3. Relevant - It should be current and valid information and
it should reduce uncertainties.
4. Accurate - It should be free of errors and mistakes, true,
and not deceptive.
62RNB Global University, Bikaner.Course Code - 11010700
Information Quality
5. Sufficient - It should be adequate in quantity, so that
decisions can be made on its basis.
6. Unambiguous - It should be expressed in clear terms.
In other words, it should be comprehensive.
7. Complete - It should meet all the needs in the current
context.
63RNB Global University, Bikaner.Course Code - 11010700
Information Quality
6. Unbiased - It should be impartial, free from any bias. In
other words, it should have integrity.
7. Explicit - It should not need any further explanation.
8. Comparable - It should be of uniform collection,
analysis, content, and format.
9. Reproducible - It could be used by documented
methods on the same data set to achieve a consistent
result.
64RNB Global University, Bikaner.Course Code - 11010700
Information Security
 Three basic security concepts important to
information on the internet are
confidentiality, integrity, and availability.
 Concepts relating to the people who use
that information are authentication,
authorization, and nonrepudiation.
65RNB Global University, Bikaner.Course Code - 11010700
Review
 Data Resource Management.
 DBMS.
 Types of DBMS.
 Data Warehousing.
 Data Mining.
 Information Quality.
 Data/Information security.
 IT Audit.
 IT Services contact Management.
 Risk Analysis.
66RNB Global University, Bikaner.Course Code - 11010700
Thank You!
RNB Global University, Bikaner. 67Course Code - 11010700

More Related Content

What's hot

Dbms
DbmsDbms
Dbms
saurav-IT
 
Introduction to Object Oriented databases
Introduction to Object Oriented databasesIntroduction to Object Oriented databases
Introduction to Object Oriented databases
Dr. C.V. Suresh Babu
 
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...
Dipen Parmar
 
Asif nosql
Asif nosqlAsif nosql
Asif nosql
Asif Ali
 
Mi0034 database management systems
Mi0034  database management systemsMi0034  database management systems
Mi0034 database management systems
smumbahelp
 
Sulthan's DBMS for_Computer_Science
Sulthan's DBMS for_Computer_ScienceSulthan's DBMS for_Computer_Science
Sulthan's DBMS for_Computer_Science
SULTHAN BASHA
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
Dr. C.V. Suresh Babu
 
Database Systems - introduction
Database Systems - introductionDatabase Systems - introduction
Database Systems - introduction
Jananath Banuka
 
Database Concepts
Database ConceptsDatabase Concepts
Database Concepts
Upendra Reddy Vuyyuru
 
Introduction To Database Management System
Introduction To Database Management SystemIntroduction To Database Management System
Introduction To Database Management System
cpjcollege
 
Data models
Data modelsData models
Data models
RituBhargava7
 
Birthof Relation Database
Birthof Relation DatabaseBirthof Relation Database
Birthof Relation DatabaseRaj Bhat
 
Smarter Documentation: Shedding Light on the Black Box of Reporting Data
Smarter Documentation: Shedding Light on the Black Box of Reporting DataSmarter Documentation: Shedding Light on the Black Box of Reporting Data
Smarter Documentation: Shedding Light on the Black Box of Reporting Data
Kelly Raposo
 
A Comparative Study of RDBMs and OODBMs in Relation to Security of Data
A Comparative Study of RDBMs and OODBMs in Relation to Security of DataA Comparative Study of RDBMs and OODBMs in Relation to Security of Data
A Comparative Study of RDBMs and OODBMs in Relation to Security of Data
inscit2006
 
Computer lecture (1) m.nasir
Computer lecture (1) m.nasirComputer lecture (1) m.nasir
Computer lecture (1) m.nasir
Muhammad Nasir
 
Unit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 CompleteUnit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 Complete
Raj vardhan
 

What's hot (20)

Dbms
DbmsDbms
Dbms
 
Introduction to Object Oriented databases
Introduction to Object Oriented databasesIntroduction to Object Oriented databases
Introduction to Object Oriented databases
 
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...Kskv kutch university DBMS unit 1  basic concepts, data,information,database,...
Kskv kutch university DBMS unit 1 basic concepts, data,information,database,...
 
Asif nosql
Asif nosqlAsif nosql
Asif nosql
 
Mba 758 database management system
Mba 758 database management systemMba 758 database management system
Mba 758 database management system
 
Mi0034 database management systems
Mi0034  database management systemsMi0034  database management systems
Mi0034 database management systems
 
Sulthan's DBMS for_Computer_Science
Sulthan's DBMS for_Computer_ScienceSulthan's DBMS for_Computer_Science
Sulthan's DBMS for_Computer_Science
 
Introduction to XML
Introduction to XMLIntroduction to XML
Introduction to XML
 
Database Systems - introduction
Database Systems - introductionDatabase Systems - introduction
Database Systems - introduction
 
Database Concepts
Database ConceptsDatabase Concepts
Database Concepts
 
Types dbms
Types dbmsTypes dbms
Types dbms
 
Introduction To Database Management System
Introduction To Database Management SystemIntroduction To Database Management System
Introduction To Database Management System
 
ch1
ch1ch1
ch1
 
Data models
Data modelsData models
Data models
 
Birthof Relation Database
Birthof Relation DatabaseBirthof Relation Database
Birthof Relation Database
 
Smarter Documentation: Shedding Light on the Black Box of Reporting Data
Smarter Documentation: Shedding Light on the Black Box of Reporting DataSmarter Documentation: Shedding Light on the Black Box of Reporting Data
Smarter Documentation: Shedding Light on the Black Box of Reporting Data
 
A Comparative Study of RDBMs and OODBMs in Relation to Security of Data
A Comparative Study of RDBMs and OODBMs in Relation to Security of DataA Comparative Study of RDBMs and OODBMs in Relation to Security of Data
A Comparative Study of RDBMs and OODBMs in Relation to Security of Data
 
Computer lecture (1) m.nasir
Computer lecture (1) m.nasirComputer lecture (1) m.nasir
Computer lecture (1) m.nasir
 
Unit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 CompleteUnit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 Complete
 
Cs501 intro
Cs501 introCs501 intro
Cs501 intro
 

Similar to Corporate data handling

Introduction to DBMS.pptx
Introduction to DBMS.pptxIntroduction to DBMS.pptx
Introduction to DBMS.pptx
Sreenivas R
 
Database Management System ( Dbms )
Database Management System ( Dbms )Database Management System ( Dbms )
Database Management System ( Dbms )
Kimberly Brooks
 
Database Management System Introduction
Database Management System IntroductionDatabase Management System Introduction
Database Management System Introduction
Smriti Jain
 
Db lec 01
Db lec 01Db lec 01
DBMS and its Models
DBMS and its ModelsDBMS and its Models
DBMS and its Models
AhmadShah Sultani
 
Computer applications.pptx
Computer applications.pptxComputer applications.pptx
Computer applications.pptx
Emmanuel235416
 
DBMS Part1.pptx
DBMS Part1.pptxDBMS Part1.pptx
DBMS Part1.pptx
Prof. Dr. K. Adisesha
 
DBMS.pptx
DBMS.pptxDBMS.pptx
Unit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptxUnit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptx
Nirmalavenkatachalam
 
Lecture 1 to 3intro to normalization in database
Lecture 1 to 3intro to  normalization in databaseLecture 1 to 3intro to  normalization in database
Lecture 1 to 3intro to normalization in database
maqsoodahmedbscsfkhp
 
Chapter one
Chapter oneChapter one
Chapter one
Dawod Yimer
 
Database v1
Database v1Database v1
Database v1
engahmadhassan
 
Database System Concepts
Database System ConceptsDatabase System Concepts
Database System Concepts
Ranilesh Raveendran
 
Db lec 04_new
Db lec 04_newDb lec 04_new
Db lec 04_new
Ramadan Babers, PhD
 
Dbms unit 1
Dbms unit   1Dbms unit   1
Dbms unit 1
devineni66
 

Similar to Corporate data handling (20)

Introduction to DBMS.pptx
Introduction to DBMS.pptxIntroduction to DBMS.pptx
Introduction to DBMS.pptx
 
Database Management System ( Dbms )
Database Management System ( Dbms )Database Management System ( Dbms )
Database Management System ( Dbms )
 
Database Management System Introduction
Database Management System IntroductionDatabase Management System Introduction
Database Management System Introduction
 
Dbms 1
Dbms 1Dbms 1
Dbms 1
 
Db lec 01
Db lec 01Db lec 01
Db lec 01
 
Dbms models
Dbms modelsDbms models
Dbms models
 
DBMS and its Models
DBMS and its ModelsDBMS and its Models
DBMS and its Models
 
Computer applications.pptx
Computer applications.pptxComputer applications.pptx
Computer applications.pptx
 
DBMS Part1.pptx
DBMS Part1.pptxDBMS Part1.pptx
DBMS Part1.pptx
 
DBMS.pptx
DBMS.pptxDBMS.pptx
DBMS.pptx
 
Unit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptxUnit 2 DATABASE ESSENTIALS.pptx
Unit 2 DATABASE ESSENTIALS.pptx
 
Lecture 1 to 3intro to normalization in database
Lecture 1 to 3intro to  normalization in databaseLecture 1 to 3intro to  normalization in database
Lecture 1 to 3intro to normalization in database
 
Chapter one
Chapter oneChapter one
Chapter one
 
27 fcs157al2
27 fcs157al227 fcs157al2
27 fcs157al2
 
Comp107 chep6
Comp107 chep6Comp107 chep6
Comp107 chep6
 
Database v1
Database v1Database v1
Database v1
 
Unit01 dbms
Unit01 dbmsUnit01 dbms
Unit01 dbms
 
Database System Concepts
Database System ConceptsDatabase System Concepts
Database System Concepts
 
Db lec 04_new
Db lec 04_newDb lec 04_new
Db lec 04_new
 
Dbms unit 1
Dbms unit   1Dbms unit   1
Dbms unit 1
 

More from Jaipal Dhobale

Research Paper Network-Driven Monitoring
Research Paper Network-Driven MonitoringResearch Paper Network-Driven Monitoring
Research Paper Network-Driven Monitoring
Jaipal Dhobale
 
Computer Network Performance evaluation based on Network scalability using OM...
Computer Network Performance evaluation based on Network scalability using OM...Computer Network Performance evaluation based on Network scalability using OM...
Computer Network Performance evaluation based on Network scalability using OM...
Jaipal Dhobale
 
WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...
WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...
WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...
Jaipal Dhobale
 
Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...
Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...
Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...
Jaipal Dhobale
 
Computer Network Performance Evaluation Based on Different Data Packet Size U...
Computer Network Performance Evaluation Based on Different Data Packet Size U...Computer Network Performance Evaluation Based on Different Data Packet Size U...
Computer Network Performance Evaluation Based on Different Data Packet Size U...
Jaipal Dhobale
 
Unit no 08_dm_insights on challenges in management of disaster
Unit no 08_dm_insights on challenges in management of disasterUnit no 08_dm_insights on challenges in management of disaster
Unit no 08_dm_insights on challenges in management of disaster
Jaipal Dhobale
 
Unit no 07_dm_ascertaining roles
Unit no 07_dm_ascertaining rolesUnit no 07_dm_ascertaining roles
Unit no 07_dm_ascertaining roles
Jaipal Dhobale
 
Unit no 05 disaster response
Unit no 05 disaster responseUnit no 05 disaster response
Unit no 05 disaster response
Jaipal Dhobale
 
Disaster management and planning
Disaster management and planningDisaster management and planning
Disaster management and planning
Jaipal Dhobale
 
Unit no 14_the written research report
Unit no 14_the written research reportUnit no 14_the written research report
Unit no 14_the written research report
Jaipal Dhobale
 
Unit no 09_developing sampling plan
Unit no 09_developing sampling planUnit no 09_developing sampling plan
Unit no 09_developing sampling plan
Jaipal Dhobale
 
Unit no 08_designing questionnaire
Unit no 08_designing questionnaireUnit no 08_designing questionnaire
Unit no 08_designing questionnaire
Jaipal Dhobale
 
Unit no 07_measurement of scaling
Unit no 07_measurement of scalingUnit no 07_measurement of scaling
Unit no 07_measurement of scaling
Jaipal Dhobale
 
Unit no 06_collecting primary data by communication
Unit no 06_collecting primary data by communicationUnit no 06_collecting primary data by communication
Unit no 06_collecting primary data by communication
Jaipal Dhobale
 
Unit no 05_collecting primary data by observation
Unit no 05_collecting primary data by observationUnit no 05_collecting primary data by observation
Unit no 05_collecting primary data by observation
Jaipal Dhobale
 
Unit no 04_collecting secondary data from inside & outside the organization
Unit no 04_collecting secondary data from inside & outside the organizationUnit no 04_collecting secondary data from inside & outside the organization
Unit no 04_collecting secondary data from inside & outside the organization
Jaipal Dhobale
 
Unit no 03_types of research design
Unit no 03_types of research designUnit no 03_types of research design
Unit no 03_types of research design
Jaipal Dhobale
 
Unit no 02_research design formulation
Unit no 02_research design formulationUnit no 02_research design formulation
Unit no 02_research design formulation
Jaipal Dhobale
 
Unit no 01_introduction to research
Unit no 01_introduction to researchUnit no 01_introduction to research
Unit no 01_introduction to research
Jaipal Dhobale
 
Unit no 05_dm_disaster recovery
Unit no 05_dm_disaster recoveryUnit no 05_dm_disaster recovery
Unit no 05_dm_disaster recovery
Jaipal Dhobale
 

More from Jaipal Dhobale (20)

Research Paper Network-Driven Monitoring
Research Paper Network-Driven MonitoringResearch Paper Network-Driven Monitoring
Research Paper Network-Driven Monitoring
 
Computer Network Performance evaluation based on Network scalability using OM...
Computer Network Performance evaluation based on Network scalability using OM...Computer Network Performance evaluation based on Network scalability using OM...
Computer Network Performance evaluation based on Network scalability using OM...
 
WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...
WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...
WIRELESS - HOST TO HOST NETWORK PERFORMANCE EVALUATION BASED ON BITRATE AND N...
 
Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...
Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...
Wired and Wireless Computer Network Performance Evaluation Using OMNeT++ Simu...
 
Computer Network Performance Evaluation Based on Different Data Packet Size U...
Computer Network Performance Evaluation Based on Different Data Packet Size U...Computer Network Performance Evaluation Based on Different Data Packet Size U...
Computer Network Performance Evaluation Based on Different Data Packet Size U...
 
Unit no 08_dm_insights on challenges in management of disaster
Unit no 08_dm_insights on challenges in management of disasterUnit no 08_dm_insights on challenges in management of disaster
Unit no 08_dm_insights on challenges in management of disaster
 
Unit no 07_dm_ascertaining roles
Unit no 07_dm_ascertaining rolesUnit no 07_dm_ascertaining roles
Unit no 07_dm_ascertaining roles
 
Unit no 05 disaster response
Unit no 05 disaster responseUnit no 05 disaster response
Unit no 05 disaster response
 
Disaster management and planning
Disaster management and planningDisaster management and planning
Disaster management and planning
 
Unit no 14_the written research report
Unit no 14_the written research reportUnit no 14_the written research report
Unit no 14_the written research report
 
Unit no 09_developing sampling plan
Unit no 09_developing sampling planUnit no 09_developing sampling plan
Unit no 09_developing sampling plan
 
Unit no 08_designing questionnaire
Unit no 08_designing questionnaireUnit no 08_designing questionnaire
Unit no 08_designing questionnaire
 
Unit no 07_measurement of scaling
Unit no 07_measurement of scalingUnit no 07_measurement of scaling
Unit no 07_measurement of scaling
 
Unit no 06_collecting primary data by communication
Unit no 06_collecting primary data by communicationUnit no 06_collecting primary data by communication
Unit no 06_collecting primary data by communication
 
Unit no 05_collecting primary data by observation
Unit no 05_collecting primary data by observationUnit no 05_collecting primary data by observation
Unit no 05_collecting primary data by observation
 
Unit no 04_collecting secondary data from inside & outside the organization
Unit no 04_collecting secondary data from inside & outside the organizationUnit no 04_collecting secondary data from inside & outside the organization
Unit no 04_collecting secondary data from inside & outside the organization
 
Unit no 03_types of research design
Unit no 03_types of research designUnit no 03_types of research design
Unit no 03_types of research design
 
Unit no 02_research design formulation
Unit no 02_research design formulationUnit no 02_research design formulation
Unit no 02_research design formulation
 
Unit no 01_introduction to research
Unit no 01_introduction to researchUnit no 01_introduction to research
Unit no 01_introduction to research
 
Unit no 05_dm_disaster recovery
Unit no 05_dm_disaster recoveryUnit no 05_dm_disaster recovery
Unit no 05_dm_disaster recovery
 

Recently uploaded

一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
ukgaet
 
Opendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptxOpendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptx
Opendatabay
 
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Subhajit Sahu
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
vcaxypu
 
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
Tiktokethiodaily
 
standardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghhstandardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghh
ArpitMalhotra16
 
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape ReportSOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar
 
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdfCh03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
haila53
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
oz8q3jxlp
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
v3tuleee
 
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
nscud
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
slg6lamcq
 
一比一原版(CBU毕业证)卡普顿大学毕业证如何办理
一比一原版(CBU毕业证)卡普顿大学毕业证如何办理一比一原版(CBU毕业证)卡普顿大学毕业证如何办理
一比一原版(CBU毕业证)卡普顿大学毕业证如何办理
ahzuo
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
axoqas
 
一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单
ewymefz
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
vcaxypu
 
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
mbawufebxi
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
ewymefz
 
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
axoqas
 

Recently uploaded (20)

一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
一比一原版(UVic毕业证)维多利亚大学毕业证成绩单
 
Opendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptxOpendatabay - Open Data Marketplace.pptx
Opendatabay - Open Data Marketplace.pptx
 
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
Algorithmic optimizations for Dynamic Levelwise PageRank (from STICD) : SHORT...
 
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
一比一原版(RUG毕业证)格罗宁根大学毕业证成绩单
 
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
1.Seydhcuxhxyxhccuuxuxyxyxmisolids 2019.pptx
 
standardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghhstandardisation of garbhpala offhgfffghh
standardisation of garbhpala offhgfffghh
 
SOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape ReportSOCRadar Germany 2024 Threat Landscape Report
SOCRadar Germany 2024 Threat Landscape Report
 
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdfCh03-Managing the Object-Oriented Information Systems Project a.pdf
Ch03-Managing the Object-Oriented Information Systems Project a.pdf
 
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
一比一原版(Deakin毕业证书)迪肯大学毕业证如何办理
 
Criminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdfCriminal IP - Threat Hunting Webinar.pdf
Criminal IP - Threat Hunting Webinar.pdf
 
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理一比一原版(UofS毕业证书)萨省大学毕业证如何办理
一比一原版(UofS毕业证书)萨省大学毕业证如何办理
 
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
一比一原版(CBU毕业证)卡普顿大学毕业证成绩单
 
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
一比一原版(Adelaide毕业证书)阿德莱德大学毕业证如何办理
 
一比一原版(CBU毕业证)卡普顿大学毕业证如何办理
一比一原版(CBU毕业证)卡普顿大学毕业证如何办理一比一原版(CBU毕业证)卡普顿大学毕业证如何办理
一比一原版(CBU毕业证)卡普顿大学毕业证如何办理
 
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
做(mqu毕业证书)麦考瑞大学毕业证硕士文凭证书学费发票原版一模一样
 
一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单一比一原版(BU毕业证)波士顿大学毕业证成绩单
一比一原版(BU毕业证)波士顿大学毕业证成绩单
 
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
一比一原版(ArtEZ毕业证)ArtEZ艺术学院毕业证成绩单
 
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
一比一原版(Bradford毕业证书)布拉德福德大学毕业证如何办理
 
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
一比一原版(UPenn毕业证)宾夕法尼亚大学毕业证成绩单
 
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
哪里卖(usq毕业证书)南昆士兰大学毕业证研究生文凭证书托福证书原版一模一样
 

Corporate data handling

  • 1. UNIT III Handling the Corporate Data By Dr. Dhobale J V Associate Professor School of Engineering & Technology RNB Global University, Bikaner RNB Global University, Bikaner. 1Course Code - 11010700
  • 2. Objectives  Data Resource Management.  DBMS.  Types of DBMS.  Data Warehousing.  Data Mining.  Information Quality.  Data/Information security.  IT Audit.  IT Services contact Management.  Risk Analysis. 2RNB Global University, Bikaner.Course Code - 11010700
  • 3. Sources and Types of Information  We receive and gather information from a huge range of sources.  In business, types of information includes:  Customer and Employee information.  Email, mail & faxes.  Charts and graphs  Monthly financial reports.  Signs directing customers to a particular location.  Procedures.  Pictures & diagrams  Industry specific.  Demographic information 3RNB Global University, Bikaner.Course Code - 11010700
  • 4. Sources and Types of Information  Three basic types of information: 1. Strategic Information 2. Tactical Information 3. Operational Information 4RNB Global University, Bikaner.Course Code - 11010700
  • 5. Sources and Types of Information  Information comes from a variety of sources, formal and informal: 1. Formal Sources: 1. Internal: – Computer System, Staff Record, Accounting Records, Annual Reports, Company Reports, Business documents, Planning documents. 2. External: - Professional Journals, Books, Surveys, Industry and Government reports. 5RNB Global University, Bikaner.Course Code - 11010700
  • 6. Sources and Types of Information 2. Informal Sources: Includes conversation with colleagues at lunch or from friends or other associates external to your company.  With Customer Contact Centers:  Automatic Call Distribution reports.  Other System reports.  Call monitoring checklists.  Customers.  Emails.  HR Department  Budgets.  Marketing Department 6RNB Global University, Bikaner.Course Code - 11010700
  • 7. Database Management Systems (DBMS)  Information form these sources needs to collect and process for further processing.  Organizations uses DBMS along with Data Warehousing and Data Mining philosophies for these. 7RNB Global University, Bikaner.Course Code - 11010700
  • 8. Database Management Systems (DBMS)  Database is a collection of related data and data is a collection of facts and figures that can be processed to produce information.  A database management system stores data in such a way that it becomes easier to retrieve, manipulate, and produce information. 8RNB Global University, Bikaner.Course Code - 11010700
  • 9. DBMS Characteristics 1. Real World Entity. 2. Relation based Tables. 3. Isolation of Data and Applications. 4. Less Redundancy. 5. Consistency. 6. Query Language. 7. Multiuser and Concurrent Access. 8. Multiple Views. 9. Security. 9RNB Global University, Bikaner.Course Code - 11010700
  • 10. DBMS Users 10RNB Global University, Bikaner.Course Code - 11010700
  • 11. DBMS Users 1. Administrators: Administrators maintain the DBMS and are responsible for administrating the database. 2. Designers: Designers are the group of people who actually work on the designing part of the database. 3. End Users: End users are those who actually reap the benefits of having a DBMS. 11RNB Global University, Bikaner.Course Code - 11010700
  • 12. DBMS Architecture  The design of a DBMS depends on its architecture. It can be centralized or decentralized or hierarchical.  The architecture of a DBMS can be seen as either single tier or multi-tier.  An n-tier architecture divides the whole system into related but independent n modules, which can be independently modified, altered, changed, or replaced. 12RNB Global University, Bikaner.Course Code - 11010700
  • 13. DBMS Architecture  3-tire Architecture: 13RNB Global University, Bikaner.Course Code - 11010700
  • 14. DBMS Architecture  Database (Data) Tier: At this tier, the database resides along with its query processing languages. We also have the relations that define the data and their constraints at this level.  Application (Middle) Tier: At this tier reside the application server and the programs that access the database.  For a user, this application tier presents an abstracted view of the database. 14RNB Global University, Bikaner.Course Code - 11010700
  • 15. DBMS Architecture  The application layer sits in the middle and acts as a mediator between the end-user and the database.  User (Presentation) Tier: End-users operate on this tier and they know nothing about any existence of the database beyond this layer.  At this layer, multiple views of the database can be provided by the application. 15RNB Global University, Bikaner.Course Code - 11010700
  • 16. Data Models  Data models define how the logical structure of a database is modeled.  Data Models are fundamental entities to introduce abstraction in a DBMS.  Data models define how data is connected to each other and how they are processed and stored inside the system. 16RNB Global University, Bikaner.Course Code - 11010700
  • 17. Data Models 1. Entity-Relationship Model: 17RNB Global University, Bikaner.Course Code - 11010700
  • 18. Data Models 1. Entity-Relationship Example: 18RNB Global University, Bikaner.Course Code - 11010700
  • 19. Data Models (E-R Model) 1. Entity-Relationship Model: Entity- Relationship (ER) Model is based on the notion of real-world entities and relationships among them.  While formulating real-world scenario into the database model, the ER Model creates entity set, relationship set, general attributes and constraints. 19RNB Global University, Bikaner.Course Code - 11010700
  • 20. Data Models (E-R Model)  ER Model is based on −  Entities and their attributes.  Relationships among entities. 20RNB Global University, Bikaner.Course Code - 11010700
  • 21. Data Models (E-R Model)  Entity − An entity in an ER Model is a real-world entity having properties called attributes.  Every attribute is defined by its set of values called domain.  For example, in a school database, a student is considered as an entity. Student has various attributes like name, age, class, etc. 21RNB Global University, Bikaner.Course Code - 11010700
  • 22. Data Models (E-R Model)  Relationship − The logical association among entities is called relationship. Relationships are mapped with entities in various ways. Mapping cardinalities define the number of association between two entities.  Mapping cardinalities − one to one; one to many; many to one; many to many. 22RNB Global University, Bikaner.Course Code - 11010700
  • 23. Data Models (Relational Model) 2. Relational Model: The most popular data model in DBMS is the Relational Model.  It is more scientific a model than others.  This model is based on first-order predicate logic and defines a table as an n-arry relation. 23RNB Global University, Bikaner.Course Code - 11010700
  • 24. Data Models (Relational Model) 24RNB Global University, Bikaner.Course Code - 11010700
  • 25. Data Models (Relational Model)  The main highlights of this model are −  Data is stored in tables called relations.  Relations can be normalized.  In normalized relations, values saved are atomic values.  Each row in a relation contains a unique value.  Each column in a relation contains values from a same domain. 25RNB Global University, Bikaner.Course Code - 11010700
  • 26. Data Schema & Instances  A database schema is the skeleton structure that represents the logical view of the entire database. It defines how the data is organized and how the relations among them are associated.  A database instance is a state of operational database with data at any given time. 26RNB Global University, Bikaner.Course Code - 11010700
  • 27. Traditional File System and DBMS  Characteristics of Traditional File System: 1. It is a group of files storing data of an organization. 2. Each file is independent from one another. 3. Each file is called a flat file. 4. Each file contained and processed information for one specific function, such as accounting or inventory. 27RNB Global University, Bikaner.Course Code - 11010700
  • 28. Traditional File System and DBMS  Characteristics of Traditional File System: 5. As systems became more complex, file processing systems offered little flexibility, presented many limitations, and were difficult to maintain. 6. Files are designed by using programs written in programming languages such as COBOL, C, C++. 28RNB Global University, Bikaner.Course Code - 11010700
  • 29. Traditional File System and DBMS  Limitations of Traditional File System: 1. Separated and Isolated Data. 2. Duplication of data. 3. Data Dependence. 4. Difficulty in representing data from the user's view. 5. Data Inflexibility. 6. Incompatible file formats. 7. Data Security. 8. Concurrency problems. 29RNB Global University, Bikaner.Course Code - 11010700
  • 30. Data Warehouse  The term "Data Warehouse" was first coined by Bill Inmon in 1990.  According to Inmon, a data warehouse is a subject oriented, integrated, time- variant, and non-volatile collection of data.  This data helps analysts to take informed decisions in an organization. 30RNB Global University, Bikaner.Course Code - 11010700
  • 31. Data Warehouse  A data warehouses provides us generalized and consolidated data in multidimensional view.  Along with generalized and consolidated view of data, a data warehouses also provides us Online Analytical Processing (OLAP) tools.  These tools help us in interactive and effective analysis of data in a multidimensional space. 31RNB Global University, Bikaner.Course Code - 11010700
  • 32. Data Warehouse  Data mining functions such as association, clustering, classification, prediction can be integrated with OLAP operations to enhance the interactive mining of knowledge at multiple level of abstraction.  A data warehouse is a database, which is kept separate from the organization's operational databas.. 32RNB Global University, Bikaner.Course Code - 11010700
  • 33. Data Warehouse  There is no frequent updating done in a data warehouse.  It possesses consolidated historical data, which helps the organization to analyze its business.  A data warehouse helps executives to organize, understand, and use their data to take strategic decisions. 33RNB Global University, Bikaner.Course Code - 11010700
  • 34. Data Warehouse  Data warehouse systems help in the integration of diversity of application systems.  A data warehouse system helps in consolidated historical data analysis. 34RNB Global University, Bikaner.Course Code - 11010700
  • 35. Data Warehouse - Features 1. Subject Oriented. 2. Integrated. 3. Time Variant. 4. Non-volatile 35RNB Global University, Bikaner.Course Code - 11010700
  • 36. Data Warehouse Applications 1. Financial services. 2. Banking services. 3. Consumer goods. 4. Retail sectors. 5. Controlled manufacturing. 36RNB Global University, Bikaner.Course Code - 11010700
  • 37. Types of Data Warehouse 1. Information Processing: A data warehouse allows to process the data stored in it. The data can be processed by means of querying, basic statistical analysis, reporting using crosstabs, tables, charts, or graphs. 37RNB Global University, Bikaner.Course Code - 11010700
  • 38. Types of Data Warehouse 2. Analytical Processing : A data warehouse supports analytical processing of the information stored in it. The data can be analyzed by means of basic OLAP operations, including slice-and-dice, drill down, drill up, and pivoting. . 38RNB Global University, Bikaner.Course Code - 11010700
  • 39. Types of Data Warehouse 3. Data Mining: Data mining supports knowledge discovery by finding hidden patterns and associations, constructing analytical models, performing classification and prediction.  These mining results can be presented using the visualization tools. . 39RNB Global University, Bikaner.Course Code - 11010700
  • 40. Data Warehousing  Data warehousing is the process of constructing and using a data warehouse.  A data warehouse is constructed by integrating data from multiple heterogeneous sources that support analytical reporting, structured and/or ad hoc queries, and decision making.  Data warehousing involves data cleaning, data integration, and data consolidations. 40RNB Global University, Bikaner.
  • 41. Data Warehousing  There are decision support technologies that help utilize the data available in a data warehouse.  These technologies help executives to use the warehouse quickly and effectively.  They can gather data, analyze it, and take decisions based on the information present in the warehouse. 41RNB Global University, Bikaner.Course Code - 11010700
  • 42. Functions of Data Warehouse 1. Data Extraction. 2. Data Cleaning. 3. Data Transformation. 4. Data Loading. 5. Refreshing. 42RNB Global University, Bikaner.Course Code - 11010700
  • 43. Process Flow in Data Warehouse  There are four major processes that contribute to a data warehouse: 1. Extract and load the data. 2. Cleaning and transforming the data. 3. Backup and archive the data. 4. Managing queries and directing them to the appropriate data sources. . 43RNB Global University, Bikaner.Course Code - 11010700
  • 44. Data Mining  Data Mining is defined as extracting information from huge sets of data.  The information or knowledge extracted so can be used for any of the following applications:  Market Analysis  Fraud Detection  Customer Retention  Production Control  Science Exploration 44RNB Global University, Bikaner.Course Code - 11010700
  • 45. Data Mining - Applications  Market Analysis: 1. Customer Profiling 2. Identifying Customer Requirements 3. Cross Market Analysis 4. Target Marketing 5. Determining Customer purchasing pattern 6. Providing Summary Information 45RNB Global University, Bikaner.Course Code - 11010700
  • 46. Data Mining - Applications  Corporate Analysis and Risk Management: 1. Finance Planning and Asset Evaluation 2. Resource Planning 3. Competition 46RNB Global University, Bikaner.Course Code - 11010700
  • 47. Data Mining - Applications  Fraud Detection:  Data mining is also used in the fields of credit card services and telecommunication to detect frauds 47RNB Global University, Bikaner.Course Code - 11010700
  • 48. IT Service Contract Management  Bid Processing: is an offer (often competitive) to set a price by an individual or business for a product or service or a demand that something be done  RFI, RFQ, RFT and RFP, These processes have steadily grown in popularity in procurement and purchasing, especially amongst larger buying organisations. 48RNB Global University, Bikaner.Course Code - 11010700
  • 49. IT Service Contract Management  RFI – Request for Information An open enquiry that spans the market seeking broad data and understanding.  RFQ – Request for Quotation An opportunity for potential suppliers to competitively cost the final chosen solution(s). 49RNB Global University, Bikaner.Course Code - 11010700
  • 50. IT Service Contract Management  RFT – Request for Tender An opportunity for potential suppliers to submit an offer to supply goods or services against a detailed tender.  RFP – Request for Proposal Sometimes based on a prior RFI; a business requirements-based request for specific solutions to the sourcing problem. 50RNB Global University, Bikaner.Course Code - 11010700
  • 51. IT Audit  In general an IT audit is the process of examining information systems to ensure they are storing, processing, controlling and reporting organizational data according to internal and external procedures and regulations. 51RNB Global University, Bikaner.Course Code - 11010700
  • 52. IT Audit  The results of an IT audit can help an organization learn about exposure to different threats, highlight areas of non- compliance with industry and government standards and regulations, and can help organizations improve efficiency and strategic planning by identifying redundant or inefficient processes.  In general IT Auditors tend to either work as “external auditors” or “internal auditors”. 52RNB Global University, Bikaner.Course Code - 11010700
  • 53. Role of IT Auditors 1. Planning the Audit. 2. Interviews/Research. 3. System Interrogation. 4. Reporting. 53RNB Global University, Bikaner.Course Code - 11010700
  • 54. SLA  A service-level agreement (SLA) is defined as an official commitment that prevails between a service provider and the customer.  Particular aspects of the service – quality, availability, responsibilities – are agreed between the service provider and the service user. 54RNB Global University, Bikaner.Course Code - 11010700
  • 55. SLA  The most common component of SLA is that the services should be provided to the customer as agreed upon in the contract.  Service level agreements are also defined at different levels: 55RNB Global University, Bikaner.Course Code - 11010700
  • 56. SLA  Customer-based SLA.  Service-based SLA.  Multilevel SLA – Corporate Level, Customer Level, Services Level. 56RNB Global University, Bikaner.Course Code - 11010700
  • 57. SLA - Components 1. Type of service to be provided. 2. The service's desired performance level, especially its reliability and responsiveness. 3. The steps for reporting issues with the service. 4. Response and issue resolution time- frame. 5. Monitoring process and service level reporting. 6. Repercussions for service provider not meeting its commitment. 57RNB Global University, Bikaner.Course Code - 11010700
  • 58. Arbitration clause  An arbitration clause is a clause in a contract that requires the parties to resolve their disputes through an arbitration process.  Although such a clause may or may not specify that arbitration occur within a specific jurisdiction, it always binds the parties to a type of resolution outside of the courts, and is therefore considered a kind of forum selection clause. 58RNB Global University, Bikaner.Course Code - 11010700
  • 59. Exit / Escape clause  An escape clause is any clause, term, or condition in a contract that allows a party to that contract to avoid having to perform the contract.  If an agreement was drawn up for the sale of a house, for example, the purchaser could include some kind of escape clause in the contract, which will allow him to "escape" from the contract without being liable for breach of contract. 59RNB Global University, Bikaner.Course Code - 11010700
  • 60. Information Quality  Information is a vital resource for the success of any organization.  Future of an organization lies in using and disseminating information wisely.  Good quality information placed in right context in right time tells us about opportunities and problems well in advance.  According to Wang and Strong, following are the dimensions or elements of Information Quality. 60RNB Global University, Bikaner.Course Code - 11010700
  • 61. Information Quality  Intrinsic: Accuracy, Objectivity, Believability, Reputation.  Contextual: Relevancy, Value-Added, Timeliness, Completeness, Amount of information.  Representational: Interpretability, Format, Coherence, Compatibility.  Accessibility: Accessibility, Access security. 61RNB Global University, Bikaner.Course Code - 11010700
  • 62. Information Quality  Most essential characteristic features for information quality are: 1. Reliability - It should be verifiable and dependable. 2. Timely - It must be current and it must reach the users well in time, so that important decisions can be made in time. 3. Relevant - It should be current and valid information and it should reduce uncertainties. 4. Accurate - It should be free of errors and mistakes, true, and not deceptive. 62RNB Global University, Bikaner.Course Code - 11010700
  • 63. Information Quality 5. Sufficient - It should be adequate in quantity, so that decisions can be made on its basis. 6. Unambiguous - It should be expressed in clear terms. In other words, it should be comprehensive. 7. Complete - It should meet all the needs in the current context. 63RNB Global University, Bikaner.Course Code - 11010700
  • 64. Information Quality 6. Unbiased - It should be impartial, free from any bias. In other words, it should have integrity. 7. Explicit - It should not need any further explanation. 8. Comparable - It should be of uniform collection, analysis, content, and format. 9. Reproducible - It could be used by documented methods on the same data set to achieve a consistent result. 64RNB Global University, Bikaner.Course Code - 11010700
  • 65. Information Security  Three basic security concepts important to information on the internet are confidentiality, integrity, and availability.  Concepts relating to the people who use that information are authentication, authorization, and nonrepudiation. 65RNB Global University, Bikaner.Course Code - 11010700
  • 66. Review  Data Resource Management.  DBMS.  Types of DBMS.  Data Warehousing.  Data Mining.  Information Quality.  Data/Information security.  IT Audit.  IT Services contact Management.  Risk Analysis. 66RNB Global University, Bikaner.Course Code - 11010700
  • 67. Thank You! RNB Global University, Bikaner. 67Course Code - 11010700