Exam 3 Flashcards
Information Levels
Individual, Department, Enterprise
Information Formats
Document, Presentation, Spreadsheet, Database
Information Granularities
Detail (fine), Summary, Aggregate (coarse)
Typical organization structure
Pyramid
As you move up the pyramid, people deal…
less with the details and more with meaningful aggregations of information
Transactional Information
Encompasses the information contained within a single business process or unit of work. Its primary purpose is to support daily operational tasks (OLTP).
- repetitive tasks
ex:
- Withdrawing cash from an ATM
- Making an airline reservation
- purchasing stocks
- daily sales
- hourly employee payroll
- product orders
- shipping an order
Analytical information
Encompasses all organizational information. Its primary purpose is to support managerial analysis tasks (OLAP).
- Includes transactional information along with external organizational information such as market, industry, and economic conditions.
- Used to make ad-hoc decisions
ex:
- trends
- sales
- product statistics
- future growth projections
- cost/benefit analysis
- sales forecast
- market trends
- industry trends
- regulations
Ad-hoc decisions
Based on analytical information
ex:
- building a new plant
- hiring people
- reducing workforces
- introducing a new product
Real-time information
immediate, up-to-date information
Real-time systems
provide information in response to query requests
Batch systems
information is processed once a day or once a week
What is relative to each business decision?
The interpretation of the work “timely.”
- 911 needs immediate information (real-time)
- stock trading needs immediate information (real-time)
Problems with the proliferation of master files:
- often the same information was stored in multiple master files
- it was more difficult to effectively integrate data and obtain an organization-wide view of the data
- the same information may not have been consistent between files
–> if a student changed his or her name, it may be updated in one master file but not another
How does the database approach view information?
As an organizational resource that should be used by, and managed for, the entire organization, not just the originating department or function.
- Focus = integration, consistency, and sharing
How is integration achieved?
By combining master files into larger pools of data that can be accessed by many application programs.
What is the Database System.
The combination of the database, the DBMS, and the application programs that access the database.
Data Model
An abstract representation of the contents of a database.
Relational Data
Represents everything in the database as being stored in tables.
Data Dictionary
Also known as a Data Encyclopedia:
- contains ALL information about the structure of the database.
For each data element stored in the database…
There is a corresponding record in the data dictionary describing it.
Every DBMS must provide a means of performing the three basic functions:
1) Creating/maintaining the structure of the database
2) Maintaining the data in the database
3) Querying the data from the database
–> the sets of commands used to perform these functions are referred to a the data definition, data manipulation, and data query languages
The data definition language (DDL) is used to…
- build the data dictionary
- create and maintain the structure of the database
- describe the logical views for each individual user or programmer
- specify any limitations or constraints on security imposed to database records or fields
What is the data manipulation language (DML) used for?
data maintenance
What does DML include?
- inserting rows in the database
- updating data in the database
- deleting rows in the database