Data Management - Applications 2 Flashcards

1
Q

Returns a set of records that include what an inner join would return but also includes other rows for which no corresponding match is found in the other table.

??? ??? : A key attribute; that is, an attribute that is part of a key or is the whole key.

A

outer join / prime attribute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

In relational algebra, an operator used to yield all possible pairs of rows from two tables. Also known as the Cartesian product.

an operator used to select a subset of columns.

A

PRODUCT / PROJECT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Short for relation variable, a variable that holds a relation. A ??? is a container (variable) for holding relation data, not the relation itself.

A detailed system data dictionary that describes all objects in a database.

A

relvar / system catalog

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

In a pair of tables to be joined, a join that yields all of the rows in the right table, including the ones with no matching values in the other table. For example, a right outer join of CUSTOMER with AGENT will yield all of the AGENT rows, including the ones that do not have a matching CUSTOMER row

A

right outer join

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A join operator that links tables using an inequality comparison operator (, <=, >=) in the join condition.

In relational algebra, an operator used to merge (append) two tables into a new table, dropping the duplicate rows. The tables must be union-compatible.

A

theta join / UNION

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

In ER modeling, a key composed of more than one attribute.

One or more attributes that uniquely identify each entity instance.

A

composite identifier / identifiers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A relationship in which the primary key of the related entity does not contain a primary key component of the parent entity.

The organization of a relational database as described by the database administrator.

A

non-identifying relationship / relational schema

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

An entity that displays existence dependence and inherits the primary key of its parent entity. For example, a DEPENDENT requires the existence of an EMPLOYEE.

A relationship in which the primary key of the related entity does not contain a primary key component of the parent entity.

A

weak entity / weak relationship

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A nested ordering sequence for a set of rows, such as a list in which all last names are alphabetically ordered and, within the last names, all first names are ordered.

A

cascading order sequence

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A SQL aggregate function that outputs the number of rows containing not null values for a given column or expression, sometimes used in conjunction with the DISTINCT clause.

A

COUNT

How well did you know this?
1
Not at all
2
3
4
5
Perfectly