Data Management Foundations

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/59

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

60 Terms

1
New cards


Which requirement within large, complex databases ensures users have limited access to the database?

Authorization

2
New cards

Which design type specifies database requirements without regard to a specific database system?

Conceptual design

3
New cards

What characterizes the rules of relational databases?

They are logical constraints that ensure the data is valid.

4
New cards

Which event will result in an error code and error description when using MySQL Server?

When an SQL statement is syntactically incorrect

5
New cards

Which data type should be used to store whole integer values, such as age?

INT

6
New cards

Which text-based interface is included in the MySQL Server Download?

MySQL Command-Line Client

7
New cards

Which database system includes the World database during its installation?

MySQL

8
New cards

What is the standardized language of relational database systems?

Structured Query Language

9
New cards

Which SQL sublanguage is used to manage database access?

Data Control Language (DCL)

10
New cards


Which SQL sublanguage is used to roll back database changes?

Data Transaction Language (DTL)

11
New cards

Which format is used by the TIME data type in MySQL?

hh:mm:ss

12
New cards

Which MySQL operator is the last in the order of operator precedence?

OR

13
New cards

Which operator is used to compare columns from the left and right tables in MySQL?

=

14
New cards

Which type of join combines two tables without comparing columns?

CROSS

15
New cards


Which type of join compares columns using only the = operator?

Equijoin

16
New cards


Which type of join is demonstrated by the following query?
 
SELECT Dog.Nickname, Kennel.Address
FROM Dog, Kennel
WHERE Dog.KennelID = Kennel.ID

EQUIJOIN

17
New cards

What is another name for a subquery?

Nested query

18
New cards

Which operator is used to compare against a list of values when determining a match in a WHERE clause?

IN

19
New cards

Which wildcard character is used to represent zero or more characters when searching for a specified pattern using a LIKE operator?

%

20
New cards

Which function is considered an aggregating function in SQL?

MIN

21
New cards

Which clause or function is used with aggregate functions to produce summary rows?

GROUP BY

22
New cards

Which type of join returns only the matching values when selecting rows from two or more tables?

Inner Join

23
New cards

Which join type selects only matching left and right table rows?

Inner Join

24
New cards


Which phrase refers to the view in which data is persisted and is automatically changed as the underlying data is changed?

Materialized View

25
New cards

Which SQL command uses the correct syntax to update the salary of an employee in the Employee table?

UPDATE Employee SET Salary = 50000 WHERE ID = 1;

26
New cards

What describes elements such as column name and data type?

Metadata

27
New cards

Which term identifies an ordered collection of elements enclosed in parenthesis in a tablespace?

Tuple

28
New cards

Which SQL command uses the correct syntax to select the name and salary columns from the Employee table, where the salary is greater than 50000, and sort the results by salary in descending order?

SELECT name, salary FROM Employee WHERE salary > 50000 ORDER BY salary DESC;

29
New cards

Which INSERT statement demonstrates valid syntax in SQL?

INSERT INTO table_name (column1, column2) VALUES (value1, value2);

30
New cards


Which UPDATE statement uses valid syntax in SQL?

UPDATE table_name SET column1 = value1, column2 = value2 WHERE condition;

31
New cards

Which statement used to remove data from temporary tables?

TRUNCATE

32
New cards

Which keyword is a DDL (data definition language) keyword in SQL?

CREATE

33
New cards

Which property is enforced by a primary key field?

Not Null

34
New cards

Which property or function allows SQL to insert a field value?

Auto-increment

35
New cards

Which property specifies an expression on one or more columns of a table?

CHECK

36
New cards

Which type of key is a single column in a table used to identify a row?

Simple primary key

37
New cards

Which type of key is often represented by parentheses to show multiple columns?

Composite

38
New cards


Which primary key characteristic means it includes information that is easy to type and store?

Simple

39
New cards

Which part of a junction table in a relational database establishes a many-to-many relationship between two tables?

Foreign key

40
New cards

Which type of relationship is established by a foreign key in a relational database? 

One-to-many

41
New cards

Which statements may be rejected when a foreign key constraint is specified? 

INSERT

42
New cards

Which key describes the unique columns in a table that do not contain a primary key? 

Candidate key

43
New cards

Which type of development activity is used to convert an entity-relationship model (ERM) into tables, columns, and keys?

Logical design

44
New cards

Which term addresses columns of A being a subset of the columns of B, with A always depending on B? 

Trivial dependency

45
New cards

Which term describes the process of denormalization?

Merging tables

46
New cards

A database designer is working with a table that has a primary key and no duplicate rows.

What can be concluded about the table?

It is a first normal form table.

47
New cards


Which process eliminates redundancy by decomposing a table into two or more tables in a higher normal form?

Normalization

48
New cards

Which term describes the optimal normal form for frequent inserts, updates, and deletes of data? 

Boyce-Codd normal form

49
New cards
<p><span><strong>Which relationship is depicted in the following entity-relationship (ER) diagram?</strong></span></p>

Which relationship is depicted in the following entity-relationship (ER) diagram?

One-to-many

50
New cards

Which relationship or association exists between a supertype entity and its subtype entities? 

IsA relationship

51
New cards

Which symbol is used in an entity-relationship (ER) diagram for an entity?

Square

52
New cards

Which symbol is used in an entity-relationship (ER) diagram to indicate an attribute?

Circle

53
New cards

What must be done before creating supertype and subtype entities?

Identify entities.

54
New cards

Which real-world object can be distinctly identified and grouped, such as all employees in a company?

Entity

55
New cards

Which item in an entity-relationship (ER) diagram follows the attribute name and is placed outside of parentheses?

Attribute maximum

56
New cards

Which strategy can be used to identify primary keys when investigating data relationships? 

Unique identifier analysis

57
New cards
<p><span><strong>How should an entity relationship phrase be read to correctly understand how one entity relates to another entity in an entity-relationship diagram (ER diagram)?</strong></span></p>

How should an entity relationship phrase be read to correctly understand how one entity relates to another entity in an entity-relationship diagram (ER diagram)?

In the direction the relationship verb is facing

58
New cards

Which index stores column values and row pointers in a hierarchy?

Multi-level index

59
New cards

Which type of index refers to entries that are assigned to buckets?

Hash index

60
New cards

Which type of index is a grid of bits where each index row corresponds to a unique row in a table?

Bitmap index