Data Management - Applications 1 Flashcards
In DB2, a named section of permanent storage space that is reserved to store the database.
??? ??? = attributes that form a primary key.
AREA / key attribute
An entity designed to transform an M:N relationship into two 1:M relationships. The ??? ??? primary key comprises at least the primary keys of the entities that it connects. Also known as a bridge entity or associative entity.
composite key = multiple-attribute key.
composite entity etc …
In relational algebra, an operator used to yield all rows from one table that are not found in another union-compatible table.
DIFFERENCE
In relational algebra, an operator that answers queries about one set of data being associated with all values of data in another set of data.
DIVIDE
A join operator that links tables based on an equality condition that compares specified columns of the tables.
equijoin
A join operation in which only rows that meet a given criterion are selected.
In relational algebra, a type of operator used to yield rows from two tables based on criteria.
inner join / join
In relational algebra, an operator used to yield only the rows that are common to two union-compatible tables.
INTERSECT
Columns that are used in the criteria of join operations. The join columns generally share similar values (have a compatible domain).
join columns
In a pair of tables to be joined, a join that yields all the rows in the left table, including those that have no matching values in the other table. For example, a left outer join of CUSTOMER with AGENT will yield all of the CUSTOMER rows, including the ones that do not have a matching AGENT row.
left outer join
A relational operation that yields a new table composed of only the rows with common values in their common attribute(s).
natural join