Untitled Deck Flashcards
What is the purpose of keys in a database?
To uniquely identify a row in a table using the minimum number of attributes.
Define a composite key.
A key consisting of two or more attributes used to uniquely identify an entity.
What is a primary key?
A candidate key selected to uniquely identify each occurrence of an entity type.
What is a foreign key?
A field in a table that points to a key field in a related table.
Differentiate between surrogate keys and natural keys.
Surrogate keys are system-generated (e.g., auto-incremented IDs), while natural keys are derived from unique table columns.
What is an insertion anomaly?
An issue where data cannot be inserted without additional dependent data.
What is a deletion anomaly?
An issue where deleting data inadvertently removes other essential data.
What is an update anomaly?
An issue where updating one instance of repeating data causes inconsistencies.
What are the types of dependencies?
Partial, Functional, Transitive
What is a partial dependency?
When a non-primary attribute depends on part of a composite primary key.
What is a functional dependency?
A relationship where one set of attributes determines another set of attributes.
What is a transitive dependency?
When a non-primary attribute depends on another non-primary attribute.
What is clustering indexing?
An indexing method where rows are stored in the order of the clustered index key, improving data retrieval efficiency.
What is the main goal of a hashing algorithm in clustering?
To distribute logical keys evenly across physical records and minimize collisions.
What is key distribution?
The spread of keys across an index structure, ideally uniform for efficient lookups.
What is UML?
Unified Modeling Language, a notation system for describing systems, including data processing.
What are connection traps?
Issues in ER models due to misinterpreted relationships, like fan traps and chasm traps.
What is a fan trap?
Ambiguous pathways between entity occurrences.
What is a chasm trap?
A model suggesting relationships that do not exist between certain entity occurrences.
What is a strong entity type?
An entity type that exists independently of other entity types.
What is a weak entity type?
An entity type that depends on another entity type for existence.
What are the degrees of relationships?
Binary (2 entities), Ternary (3 entities), Quaternary (4 entities).
What is a recursive relationship?
A relationship where the same entity type participates multiple times with different roles.
What is a composite attribute?
An attribute composed of multiple components with independent existence.
What are structural constraints in relationships?
Multiplicities, including cardinality (maximum occurrences) and participation (mandatory or optional occurrences).
What are the common types of participation in relationships?
One-to-one (1:1), One-to-many (1:), Many-to-many (:*).
What is NoSQL?
A DBMS designed to handle large volumes of unstructured/semi-structured data with flexible models.
Name categories of NoSQL databases.
Document-based (e.g., MongoDB), Key-value stores (e.g., DynamoDB), Column-family stores (e.g., Cassandra), Graph databases (e.g., GraphQL).
What are advantages of NoSQL?
High scalability, flexibility, and agility.
What are disadvantages of NoSQL?
Lack of standardization, narrow focus, and inconsistent backup approaches.