DMS Question Bank ANS
DMS Question Bank ANS
3. Columns:
- What They Are: Each column in a table represents a field or
attribute of the data.
- Example: The `EmployeeID` column holds unique IDs for each
employee, and the `FirstName` column holds their first names.
4. Relationships:
- What They Are: Tables can be related to each other through
common columns, often using keys.
- Example: A `Departments` table might be related to the
`Employees` table through a `DepartmentID` column, linking
employees to their respective departments.
5. Keys:
- What They Are: Keys are special columns used to identify
records uniquely or to establish relationships between tables.
- Example: The `EmployeeID` is a primary key in the
`Employees` table, and it might be used as a foreign key in another
table to link data.
4. Query Processor:
- Description: This component interprets and executes SQL
queries. It translates user queries into commands that interact with
the database.
5. Transaction Manager:
- Description: This ensures that database transactions (like insert,
update, delete) are processed reliably and adhere to the ACID
properties (Atomicity, Consistency, Isolation, Durability).
6. Storage Manager:
- Description: This component manages how data is stored on
disk. It handles data storage, retrieval, and indexing.
7. Database Administrator (DBA):
- Description: This role involves managing and maintaining the
database, including user permissions, performance tuning, and
backup.
8. User Interface:
- Description: This is the interface through which users interact
with the database, typically via SQL commands or a graphical user
interface (GUI).