Database Flashcards

1
Q

Introduction to database

A

Database management involves the organization, storage, retrieval, and manipulation of data within a database system. It encompasses creating, maintaining, and securing databases to ensure efficient data management. Key components include data modeling, normalization, query optimization, and transaction management. Database management systems (DBMS) like MySQL, Oracle, and SQL Server are used to facilitate these tasks and provide tools for data administration and control.

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

Database types and models

A

Databases can be classified into different types and models based on their structure, purpose, and how they organize data. Here are some common database types and models:

  1. Relational Databases:
    • Relational databases organize data into tables with rows and columns, and relationships between tables are established using keys.
    • Examples: MySQL, PostgreSQL, Oracle Database, SQL Server.
  2. NoSQL Databases:
    • NoSQL databases are designed to handle large volumes of unstructured or semi-structured data and offer flexibility in data modeling.
    • Types include document-based, key-value, columnar, and graph databases.
    • Examples: MongoDB (document-based), Redis (key-value), Cassandra (columnar), Neo4j (graph).
  3. Object-Oriented Databases (OODBMS):
    • Object-oriented databases store data as objects, allowing for complex data structures and inheritance.
    • They are suitable for applications with complex data models or object-oriented programming languages.
    • Examples: db4o, ObjectDB.
  4. Graph Databases:
    • Graph databases represent data as nodes, edges, and properties, making them suitable for applications with highly interconnected data.
    • They excel in analyzing relationships and traversing complex networks.
    • Examples: Neo4j, Amazon Neptune.
  5. Hierarchical Databases:
    • Hierarchical databases organize data in a tree-like structure, with parent-child relationships between data elements.
    • Each child node can have only one parent node.
    • Example: IBM IMS (Information Management System).
  6. Network Databases:
    • Network databases are an extension of hierarchical databases, allowing for more complex relationships between data elements.
    • They support many-to-many relationships and are often used in legacy systems.
    • Example: CODASYL database management system.
  7. Time-Series Databases:
    • Time-series databases specialize in storing and retrieving time-series data, such as sensor data, financial data, or IoT data.
    • They optimize data storage and queries for timestamped data points.
    • Examples: InfluxDB, Prometheus.
  8. Spatial Databases:
    • Spatial databases are designed to store and query spatial data, such as geographic information system (GIS) data or location-based data.
    • They support spatial data types and spatial indexing for efficient spatial queries.
    • Examples: PostGIS, Oracle Spatial.

Each type of database model has its strengths and weaknesses, and choosing the right one depends on factors such as the nature of the data, scalability requirements, and performance considerations.

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

Difference between database and data management

A

The difference between a database and data management lies in their scope and focus:

  1. Database:
    • A database is a structured collection of data organized for efficient storage, retrieval, and manipulation.
    • It refers to the software system or technology used to store, manage, and access data.
    • Databases are typically implemented using database management systems (DBMS), which provide tools and utilities for creating, maintaining, and querying databases.
    • Examples of databases include MySQL, PostgreSQL, Oracle Database, MongoDB, and Redis.
  2. Data Management:
    • Data management encompasses a broader set of activities and processes aimed at ensuring the quality, usability, security, and accessibility of data throughout its lifecycle.
    • It involves planning, organizing, controlling, and governing data assets to meet the needs of an organization or business.
    • Data management includes activities such as data governance, data integration, data quality management, data security, data privacy, data architecture, and data lifecycle management.
    • While databases are a key component of data management, data management extends beyond just databases to encompass all aspects of handling and leveraging data within an organization.

In summary, a database is a specific technology or system used to store and manage structured data, while data management refers to the broader set of activities and processes aimed at ensuring the quality, usability, and security of data throughout its lifecycle.

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

Roles of administratives

A

Administrators play crucial roles in managing databases effectively and ensuring their smooth operation. Some key responsibilities of database administrators (DBAs) include:

  1. Database Installation and Configuration: DBAs are responsible for installing, configuring, and setting up database systems according to organizational requirements. This involves selecting appropriate hardware and software configurations, optimizing system settings, and ensuring compatibility with other systems and applications.
  2. Database Design and Schema Management: DBAs design and maintain the database schema, including defining tables, indexes, constraints, and relationships. They ensure that the database structure is optimized for performance, scalability, and data integrity.
  3. Security Management: DBAs implement and enforce security measures to protect the confidentiality, integrity, and availability of data stored in the database. This includes setting up user access controls, role-based permissions, encryption, and authentication mechanisms to prevent unauthorized access and data breaches.
  4. Backup and Recovery: DBAs develop and implement backup and recovery strategies to safeguard data against loss or corruption. They schedule regular backups, perform database backups, and test recovery procedures to ensure data can be restored in case of system failures, disasters, or other emergencies.
  5. Performance Monitoring and Optimization: DBAs monitor database performance, identify bottlenecks, and optimize query execution, indexing, and database configurations to improve system performance and responsiveness. They analyze system metrics, tune database parameters, and implement performance-enhancing techniques to optimize resource utilization and minimize downtime.
  6. Data Migration and Integration: DBAs manage data migration and integration tasks, including transferring data between different systems, importing and exporting data, and synchronizing data across databases. They ensure data consistency, accuracy, and integrity during migration and integration processes.
  7. Capacity Planning and Scaling: DBAs plan for future growth and scalability by monitoring resource usage, predicting capacity requirements, and scaling database systems to accommodate increasing data volumes and user loads. They deploy additional hardware, configure clustering or replication solutions, and optimize resource allocation to support growing demands.
  8. Compliance and Governance: DBAs ensure that database systems comply with regulatory requirements, industry standards, and organizational policies related to data privacy, security, and governance. They implement audit trails, logging mechanisms, and data retention policies to track and monitor database activities and ensure compliance with relevant regulations.

Overall, database administrators play a critical role in managing databases effectively, ensuring data integrity, security, and performance, and supporting the needs of organizations in leveraging data for decision-making and business operations.

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

Features of relational database

A

Relational databases offer several key features that make them a popular choice for managing structured data. Here are some of the main features:

  1. Structured Data: Relational databases organize data into tables with rows and columns, providing a structured format for storing and retrieving information. This structured approach facilitates efficient data management and analysis.
  2. Data Integrity: Relational databases enforce data integrity constraints, such as primary key, foreign key, and unique constraints, to ensure the accuracy and consistency of data. These constraints help maintain the integrity of the database by preventing invalid or inconsistent data entries.
  3. Relationships: Relational databases support relationships between tables through primary and foreign keys. These relationships enable the establishment of logical connections between related data, allowing for data normalization and efficient data retrieval through queries.
  4. ACID Properties: Relational databases adhere to the ACID (Atomicity, Consistency, Isolation, Durability) properties, which ensure transactional integrity and reliability. ACID compliance guarantees that database transactions are executed reliably and accurately, even in the event of system failures or interruptions.
  5. SQL Support: Relational databases use SQL (Structured Query Language) as the standard language for querying and manipulating data. SQL provides a powerful and standardized interface for interacting with relational databases, enabling users to perform various operations such as querying, inserting, updating, and deleting data.
  6. Indexes: Relational databases support indexing mechanisms to improve query performance by facilitating faster data retrieval. Indexes are data structures that store references to database records based on specific columns, allowing for efficient lookup and retrieval of data.
  7. Transactions: Relational databases support transaction management, which enables users to group multiple database operations into atomic units of work. Transactions ensure data consistency and integrity by either committing all changes or rolling back the entire set of operations in case of failure or error.
  8. Concurrency Control: Relational databases implement concurrency control mechanisms to manage simultaneous access to data by multiple users or transactions. Techniques such as locking, optimistic concurrency control, and multi-version concurrency control ensure that data integrity is maintained while allowing for concurrent access and updates.

These features collectively make relational databases a robust and reliable solution for storing, managing, and querying structured data in a wide range of applications and industries.

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