2022-11-30T03:46:58+03:00[Europe/Moscow] en true <p>a relation is</p>, <p>Name of column</p>, <p>Domain</p>, <p>tuple </p>, <p>degree is</p>, <p>cardinality</p>, <p>Relation schema</p>, <p>Relational database schema</p>, <p>Relation instance</p>, <p><strong>Properties of Relations</strong></p>, <p>Relational keys</p>, <p>Super key</p>, <p>Candidate key</p>, <p>Candidate key properties</p>, <p>composite key</p>, <p>primary key</p>, <p>Alternate key</p>, <p>Foreign key</p>, <p>Integrity constraints function</p>, <p>integrity rules</p>, <p>two integrity principal rules;</p>, <p>Null</p>, <p>Entity integrity</p>, <p>referential integrity</p>, <p>general constraints </p>, <p>Base relation</p>, <p>View</p>, <p>Purpose/benefits of view</p>, <p>Updating views</p>, <p>restrictions on types of modifications that can be made through views?</p> flashcards
Chapter 2 Database

Chapter 2 Database

  • a relation is

    a table with columns and rows

  • Name of column

    Attribute

  • Domain

    Set of allowable rules for once or more attributes

  • tuple

    name of row

  • degree is

    number of attributes

  • cardinality

    number of tuples

  • Relation schema

    set of attribute and domain name pairs

    eg; RelationName (attribute1)

  • Relational database schema

    set of relation schemas,

  • Relation instance

    a tuple at a specific moment of time

  • Properties of Relations

    - relation name is distinct

    - each cell rotation contains one value

    - attribute name is distinct

    - value of attributes are all from same domain

    - tuple is distinct

    - order of attributes no significance

    - order of tuples no significance

  • Relational keys

    one or more attributes in a relation that uniquely identifies each tuple in a relation

  • Super key

    attribute or set of attributes that uniquely identifies a tuple within a relation

  • Candidate key

    a superkey with no proper subset within the relation

  • Candidate key properties

    •(uniqueness).

    • (irreducibility).

    •If subset of K is a superkey itself, then K is not a candidate key

    •one candidate keys in a relation

  • composite key

    key consists of more than one attribute

  • primary key

    candidate key that is selected to identify tuples uniquely within the relation

  • Alternate key

    candidate keys that are not selected to be primary key

  • Foreign key

    an attribute, or set of attributes within one relation that matches the primary key of one relation.

  • Integrity constraints function

    to ensure correctness/accuracy of data

  • integrity rules

    constraints or restrictions that apply to all instances of the database

  • two integrity principal rules;

    entity integrity, referential integrity

  • Null

    • value for tuple unknown.

    •Deals with incomplete or exceptional data.

    •Represents the absence of a value and is not the same as zero or spaces, which are values

  • Entity integrity

    in base relation, no attribute of primary key can be null

  • referential integrity

    If foreign key exists in a relation, the foreign key value:

    1.must match a candidate key value of some tuple in its home relation; OR

    2.foreign key value must be wholly null.

  • general constraints

    additional rules specified by user or database admins that define or constrain some aspect of the enterprise

  • Base relation

    named relation corresponding to an entity in a conceptual schema, whose tuples are physically stored in the database

  • View

    •The dynamic result of one or more relational operations operating on base relations to produce another relation

    •A virtual relation that produced upon request.

    •Contents of a view are defined as a query on one or more base relations.

    •Dynamic - changes made are immediately reflected

  • Purpose/benefits of view

    •Provides powerful and flexible security mechanism by hiding parts of database from certain users.

    •Permits users to access data in a customized way, so that same data can be seen by different users in different ways, at same time.

    •Can simplify complex operations on base relations.

  • Updating views

    updates to a base relation should be immediately reflected in all views that reference that base relation.

  • restrictions on types of modifications that can be made through views?

    •Updates are allowed if query involves a single base relation and contains a candidate key of base relation.

    •Updates are not allowed when query involves multiple base relations.

    •Updates are not allowed when query involves aggregation or grouping operations.