Geschreven door studenten die geslaagd zijn Direct beschikbaar na je betaling Online lezen of als PDF Verkeerd document? Gratis ruilen 4,6 TrustPilot
logo-home
Tentamen (uitwerkingen)

Test Bank For Database Systems Design Implementation and Management 12th Edition coronel Chapter 1_16 In 511 Pages

Beoordeling
-
Verkocht
1
Pagina's
511
Cijfer
A+
Geüpload op
07-08-2021
Geschreven in
2024/2025

Test Bank For Database Systems Design Implementation and Management 12th Edition coronel Chapter 1 Database Systems 1 Chapter 1 Database Systems Discussion Focus How often have your students he ard that “you have only one chance to make a good first impression?” That’s why it’s so important to sell the importance of databases and the desirability of good database design during the first class session. Start by showing your students that they interact with databases on a daily basis. For example, how many of them have bought anything using a credit card during the past day, week, month, or year? None of those transactions would be possible without a database. How many have shipped a document or a package via an overnight service or via certified or registered mail? How many have checked course catalogs and class schedules online? And surely all of your students registered for your class? Did anybody use a web search engine to look for – and find – information about almost anything? This point is easy to make: Databases are important because we depend on their existence to perform countless transactions and to provide information. If you are teaching in a classroom equipped with computers, give some “live” performances. For example, you can use the web to look up a few insurance quotes or compare car prices and models. Incidentally, this is a good place to make the very important distinction between data and information. In short, spend some time discussing the points made in Section 1.1, "Why Databases?" and Section 1.2 “Data vs. Information.” After demonstrating that modern daily life is almost inconceivable without the ever-present databases, discuss how important it is that the (database) transactions are made successfully, accurately, and quickly. That part of the discussion points to the importance of database design, which is at the heart of this book. If you want to have the keys to the information kingdom, you’ll want to know about database design and implementation. And, of course, databases don’t manage themselves … and that point leads to the importance of the database administration (DBA) function. There is a world of exciting database employment opportunities out there. After discussing why databases, database design, and database administration are important, you can move through the remainder of the chapter to develop the necessary vocabulary and concepts. The review questions help you do that … and the problems provide the chance to test the newfound knowledge Show Less

Meer zien Lees minder
Instelling
Vak

Voorbeeld van de inhoud

, Chapter 1 Database Systems


Chapter 1
Database Systems
Discussion Focus
How often have your students heard that “you have only one chance to make a good first impression?”
That’s why it’s so important to sell the importance of databases and the desirability of good database
design during the first class session.

Start by showing your students that they interact with databases on a daily basis. For example, how
many of them have bought anything using a credit card during the past day, week, month, or year? None
of those transactions would be possible without a database. How many have shipped a document or a
package via an overnight service or via certified or registered mail? How many have checked course
catalogs and class schedules online? And surely all of your students registered for your class? Did
anybody use a web search engine to look for – and find – information about almost anything? This point
is easy to make: Databases are important because we depend on their existence to perform countless
transactions and to provide information.

If you are teaching in a classroom equipped with computers, give some “live” performances. For
example, you can use the web to look up a few insurance quotes or compare car prices and models.
Incidentally, this is a good place to make the very important distinction between data and information. In
short, spend some time discussing the points made in Section 1.1, "Why Databases?" and Section 1.2
“Data vs. Information.”

After demonstrating that modern daily life is almost inconceivable without the ever-present databases,
discuss how important it is that the (database) transactions are made successfully, accurately, and
quickly. That part of the discussion points to the importance of database design, which is at the heart of
this book. If you want to have the keys to the information kingdom, you’ll want to know about database
design and implementation. And, of course, databases don’t manage themselves … and that point leads
to the importance of the database administration (DBA) function. There is a world of exciting database
employment opportunities out there.

After discussing why databases, database design, and database administration are important, you can
move through the remainder of the chapter to develop the necessary vocabulary and concepts. The
review questions help you do that … and the problems provide the chance to test the newfound
knowledge.




1

, Chapter 1 Database Systems


Answers to Review Questions

1. Define each of the following terms:

a. data

Raw facts from which the required information is derived. Data have little meaning unless they
are grouped in a logical manner.

b. field

A character or a group of characters (numeric or alphanumeric) that describes a specific
characteristic. A field may define a telephone number, a date, or other specific characteristics
that the end user wants to keep track of.

c. record

A logically connected set of one or more fields that describes a person, place, event, or thing. For
example, a CUSTOMER record may be composed of the fields CUST_NUMBER,
CUST_LNAME, CUST_FNAME, CUST_INITIAL, CUST_ADDRESS, CUST_CITY,
CUST_STATE, CUST_ZIPCODE, CUST_AREACODE, and CUST_PHONE.

d. file

Historically, a collection of file folders, properly tagged and kept in a filing cabinet. Although
such manual files still exist, we more commonly think of a (computer) file as a collection of
related records that contain information of interest to the end user. For example, a sales
organization is likely to keep a file containing customer data. Keep in mind that the phrase
related records reflects a relationship based on function. For example, customer data are kept in
a file named CUSTOMER. The records in this customer file are related by the fact that they all
pertain to customers. Similarly, a file named PRODUCT would contain records that describe
products – the records in this file are all related by the fact that they all pertain to products. You
would not expect to find customer data in a product file, or vice versa.

NOTE
Note: Field, record, and file are computer terms, created to help describe how data are
stored in secondary memory. Emphasize that computer file data storage does not match
the human perception of such data storage.




2

, Chapter 1 Database Systems


2. What is data redundancy, and which characteristics of the file system can lead to it?

Data redundancy exists when unnecessarily duplicated data are found in the database. For example, a
customer's telephone number may be found in the customer file, in the sales agent file, and in the
invoice file. Data redundancy is symptomatic of a (computer) file system, given its inability to
represent and manage data relationships. Data redundancy may also be the result of poorly-designed
databases that allow the same data to be kept in different locations. (Here's another opportunity to
emphasize the need for good database design!)

3. What is data independence, and why is it lacking in file systems?

Data independence is a condition in which the programs that access data are not dependent on the
data storage characteristics of the data. Systems that lack data independence are said to exhibit data
dependence. File systems exhibit data dependence because file access is dependent on a file's data
characteristics. Therefore, any time the file data characteristics are changed, the programs that access
the data within those files must be modified.

Data independence exists when changes in the data characteristics don't require changes in the
programs that access those data. File systems lack data independence because all data access
programs are subject to change when any of the file system’s data storage characteristics – such as
changing a data type -- change.

4. What is a DBMS, and what are its functions?

A DBMS is best described as a collection of programs that manage the database structure and that
control shared access to the data in the database. Current DBMSes also store the relationships
between the database components; they also take care of defining the required access paths to those
components. The functions of a current-generation DBMS may be summarized as follows:
 The DBMS stores the definitions of data and their relationships (metadata) in a data
dictionary; any changes made are automatically recorded in the data dictionary.
 The DBMS creates the complex structures required for data storage.
 The DBMS transforms entered data to conform to the data structures in item 2.
 The DBMS creates a security system and enforces security within that system.
 The DBMS creates complex structures that allow multiple-user access to the data.
 The DBMS performs backup and data recovery procedures to ensure data safety.
 The DBMS promotes and enforces integrity rules to eliminate data integrity problems.
 The DBMS provides access to the data via utility programs and from programming
languages interfaces.
 The DBMS provides end-user access to data within a computer network environment.

5. What is structual independence, and why is it important?

Structural independence exists when data access programs are not subject to change when the file's
structural characteristics, such as the number or order of the columns in a table, change. Structural
independence is important because it substantially decreases programming effort and program
maintenance costs.


3

Geschreven voor

Instelling
Vak

Documentinformatie

Geüpload op
7 augustus 2021
Aantal pagina's
511
Geschreven in
2024/2025
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

$27.99
Krijg toegang tot het volledige document:

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kun je een ander document kiezen. Je kunt het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
Succeed Havard University
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
1826
Lid sinds
6 jaar
Aantal volgers
1499
Documenten
5757
Laatst verkocht
3 dagen geleden

3.9

293 beoordelingen

5
167
4
34
3
36
2
9
1
47

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen