Midterm Flashcards
database design has 2 levels - logical and discrete
false
OLAP focuses on analytical processing
True
relational DBs leading advantage is speed of processing
false
SQL is a DB that helps user create, modify, maintain and query data
false
a field is represented as a row in a table
false
the primary key value must be unique in each row of a table
true
information is data that is processed in a way that is meaningful to a user
true
NULL is a value in a DB that can also be described as 0
false
lowest level structure in a relational table is the ________
field
a view is a virtual table composed of fields from one or more tables
true
a many to many relationship is not a valid table relationship
false
SELECT cust_number, cust_name
FROM customer;
This is a valid SQL statement that will return output composed of one column showing all customer numbers in a DB
false
SELECT cust_number, cust_name
FROM customer;
above SQL statement output will be in ascending order by cust-name
fasle
looking for subjects is a good technique for identifying your table list
true
calculated fields should be stored in a values table for easy access
false
field level integrity ensures no duplicate records in a table
false
relationship level integrity is also known as referential integrity
true
mission statements need to make it clear how your database will work
false
The collection of data used for modeling processes is the:
a. Database
b. RDBMS
c. OSI layers
d. OLTP
e. none of these
a
2 main DB types are:
a. operational & analytical
b. logical & discrete
c. analytical & logical
d. all valid types
a
The advantages of a relational database include:
a. data integrity at multiple levels
b. data accuracy
c. ease of access
d. all of these
e. “b” and “c”
d
The most common SQL statement to pull information from a DB uses the syntax:
a. PULL
b. PICK
c. SELECT
d. GET
e. EXTRACT
c
Set of rules that decomposes data tables to minimize redundancy, minimize dependency, and enforce relationship integrity is known as:
a. Abstraction
b. Normalization
c. Data modeling
d. 3 Tiered Architecture
b
In order to store acceptable values that a program can use for reference checks, one creates a:
a. Data table
b. Normalization table
c. Reference check table
d. Validation table
d
In order to establish a relationship between 2 tables, one would take the primary key of one subject table and set up a ________ in the other table.
a. cross reference key
b. secondary key
c.foreign key
d. index
c