Chapter 11: Information and Data Management
36 Questions
1 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to lesson

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

What is a database?

A database is a collection of data organized in a manner that allows access, retrieval, and use of that data.

Explain the difference between data and information.

Data is raw, unprocessed facts and figures, while information is processed, organized, meaningful, and useful data.

What is data integrity?

Data integrity reflects the quality of the data. The more errors the data contains, the lower its integrity.

Which of the following are characteristics of valuable information?

<p>Accurate</p> Signup and view all the answers

What are the four layers in which data is organized?

<p>Files, records, fields, and characters.</p> Signup and view all the answers

What is a character in database terminology?

<p>A character is one byte, which can be a number, letter, space, punctuation mark, or other symbol.</p> Signup and view all the answers

What is a field?

<p>A field is a combination of one or more related characters that represent a specific piece of information.</p> Signup and view all the answers

What is a primary key in a database?

<p>A primary key is a field that uniquely identifies each record.</p> Signup and view all the answers

What is file maintenance?

<p>File maintenance refers to the procedures that keep data current, including adding, modifying, or deleting records.</p> Signup and view all the answers

What is validation in database terminology?

<p>Validation compares data with a set of rules or values to find out if the data is correct.</p> Signup and view all the answers

Which of these are examples of file maintenance techniques?

<p>Deleting records</p> Signup and view all the answers

What is the difference between file processing and the database approach?

<p>File processing uses separate files for each department, leading to data redundancy, while the database approach provides a centralized shared data source, reducing redundancy and improving data integrity.</p> Signup and view all the answers

What is a database management system (DBMS)?

<p>A database management system is software that allows users to create, manage, and access databases.</p> Signup and view all the answers

What does a data dictionary contain?

<p>A data dictionary contains data about each file and each field in those files within a database, including information on data types, size, and validation rules.</p> Signup and view all the answers

What is a query language in the context of databases?

<p>A query language is a set of commands used to retrieve, update, or manage information from a database.</p> Signup and view all the answers

What is Structured Query Language (SQL) and what is its purpose?

<p>SQL is a popular query language used to manage, update, and retrieve data from a database.</p> Signup and view all the answers

What is query by example (QBE)?

<p>QBE is a feature of DBMS tools that uses a graphical user interface to assist users in creating queries without needing to write complex SQL code.</p> Signup and view all the answers

Explain the purpose of a form in a database.

<p>A form provides areas for entering or modifying data within a database. Think of it as a user-friendly interface for inputting specific information.</p> Signup and view all the answers

What is a report writer in a database system?

<p>A report writer allows users to design and customize reports based on data from the database, retrieving, displaying, and printing the desired information.</p> Signup and view all the answers

What is a relational database?

<p>A relational database organizes data into tables, where each row represents a record and each column represents a field.</p> Signup and view all the answers

What is a relationship in a relational database?

<p>A relationship is a link between data in different tables, allowing you to connect and access related information.</p> Signup and view all the answers

What is an object-oriented database (OODB)?

<p>An OODB stores data in objects, which can be complex data structures containing both data and behavior.</p> Signup and view all the answers

What is a multidimensional database?

<p>A multidimensional database can store data in more than two dimensions, often used for analyzing data from multiple perspectives.</p> Signup and view all the answers

What is a data warehouse?

<p>A data warehouse is a large database that stores and manages historical and current data, commonly used for analyzing trends and business intelligence.</p> Signup and view all the answers

What are the responsibilities of a database analyst?

<p>A database analyst decides on the proper placement of fields, defines relationships between data, and identifies users' access privileges.</p> Signup and view all the answers

What are the responsibilities of a database administrator?

<p>A database administrator creates and maintains the data dictionary, manages database security, monitors performance, and oversees backup and recovery procedures.</p> Signup and view all the answers

What are common data types in databases?

<p>Attachment</p> Signup and view all the answers

The principle of least privilege policy dictates that users have the least amount of access necessary to perform their tasks.

<p>True</p> Signup and view all the answers

What does a DBMS provide to restore a database in case of damage?

<p>A DBMS utilizes techniques like backup, log files, recovery utilities, and continuous backup to ensure data can be restored to a usable state in case of a database failure.</p> Signup and view all the answers

Define an information system.

<p>An information system is a set of hardware, software, data, people, and procedures that work together to produce information.</p> Signup and view all the answers

What is an enterprise resource planning (ERP) system?

<p>An ERP system integrates MRP II with the information flow across an organization to manage and coordinate various business activities, including product planning, manufacturing, distribution, accounting, finance, sales, human resources, and customer support.</p> Signup and view all the answers

What is a document management system (DMS)?

<p>A DMS allows for storage and management of company documents, such as word processing documents, presentations, and spreadsheets.</p> Signup and view all the answers

What is a transaction processing system (TPS)?

<p>A TPS is an information system that captures and processes data from day-to-day business activities.</p> Signup and view all the answers

What is a management information system (MIS)?

<p>An MIS generates accurate, timely, and organized information to help managers make decisions, solve problems, supervise activities, and track progress.</p> Signup and view all the answers

What is a decision support system (DSS)?

<p>A DSS helps users analyze information and make decisions.</p> Signup and view all the answers

What is an expert system?

<p>An expert system captures and stores the knowledge of human experts and then imitates human reasoning and decision-making.</p> Signup and view all the answers

Study Notes

Chapter 11: Information and Data Management

  • Information and data are valuable assets to an organization
  • A database is a collection of data organized to allow access, retrieval, and use of the data
  • Data is a collection of unprocessed items (text, numbers, images, audio, video)
  • Information is processed data that is organized, meaningful, and useful
  • Database software, or DBMS, lets users create, modify, and remove data, organize, and create reports
  • Data integrity reflects the quality of data. The more errors data contains, the lower its integrity
  • Valuable information should be accurate, verifiable, timely, organized, accessible, useful, and cost-effective
  • Data is organized in layers: files, records, fields, characters
  • A character is one byte, which represents numbers, letters, spaces, punctuation marks, and other symbols
  • A field is a combination of one or more related characters; it has a field name, field size, and data type
  • Common data types include text, number, auto number, currency, date, memo, yes/no, hyperlink, object, and attachment
  • A record is a group of related fields
  • A primary key is a field that uniquely identifies each record
  • A data file is a collection of related records
  • File maintenance involves the procedures to keep data current (adding, modifying, and deleting records)
  • Users add new records when new data is obtained, modify records to fix inaccurate data or update information, and delete records that are no longer needed
  • Validation checks data against rules to determine correctness (alphabetic/numeric check, range check, consistency check, completeness check, and check digit)
  • File processing systems use separate files for each department, which causes data redundancy and data isolation
  • Database approaches share data across programs and users, reducing redundancy, improving integrity, providing easier access, and reducing development time
  • A data model defines how users view data organization
  • Relational databases organize data into tables with rows (tuples/records) and columns (attributes/fields). Each row has a primary key and each column has a unique name. Relationships are links within data
  • An object-oriented database (OODB) stores data in objects
  • Examples of applications appropriate for an object-oriented database are media databases, groupware databases, and CAD databases
  • A multidimensional database can store data in more than two dimensions (hypercube)
  • A data warehouse is a huge database that stores and manages data for historical analysis and current transactions
  • Web databases offer information about jobs, travel, destinations, television programming, photos, movies, videos, local and national weather, sporting events, and legislative information
  • Database analysts and administrators decide on field placement, data relationships, user access, create and maintain data dictionaries, manage database security, monitor performance, and check backups and recoveries
  • An information system is a set of hardware, software, data, people, and procedures
  • Information systems are used across functional units (human resources, engineering/product development, manufacturing, marketing, sales, and customer service)
  • Enterprise resource planning (ERP) integrates MRP II with information flow to coordinate operations across functional areas, including product planning, manufacturing, distribution, accounting, finances, sales, human resources, and customer support
  • A document management system (DMS) stores and manages documents, presentations, and spreadsheets
  • A content management system (CMS) publishes, modifies, organizes, and provides access to various documents (including media)
  • A transaction processing system (TPS) captures and processes daily business activities
  • A management information system (MIS) generates information to help managers and users make decisions

Data Models:

  • Relational: data organized into tables, rows (records), and columns (fields).
  • Object-oriented OODB: stores data as objects
  • Multidimensional: stores data in multiple dimensions, useful for analyzing trends and relationships

Database Management Systems:

  • DBMS provides tools like query language, query by example (QBE), forms, and report writers to retrieve, store, update, and manage data.
  • Includes features to ensure only authorized users access data (access privileges) and the principle of least privilege policy
  • DBMS provides techniques for restoring the database in case of damage or destruction (backup, logs, recovery utilities, and continuous backup)

Studying That Suits You

Use AI to generate personalized quizzes and flashcards to suit your learning preferences.

Quiz Team

Related Documents

Description

This quiz covers key concepts from Chapter 11, focusing on the importance of information and data management in organizations. Topics include the definition of data and information, database management systems (DBMS), and the significance of data integrity. Test your understanding of how data is structured and utilized within an organization.

More Like This

Database Systems and Applications
10 questions
Database Management System Overview
10 questions
Database Systems Overview
13 questions

Database Systems Overview

UnrestrictedQuasimodo avatar
UnrestrictedQuasimodo
Use Quizgecko on...
Browser
Browser