Introduction To Databases Flashcards
Data
Data is numeric, textual, visual, or audio information that describes real-world systems
Analog
historically, data was mostly analog, encoded as continuous variations or various physical media
Digital
Digitally encoded as zeros, and ones on electronic and magnetic media
Database
Collection of data in a structured format.
Database System, Database management system, DBMS
Software that reads and writes data in a database. Database systems ensure data is secure, internally consistent, and available at all times.
Query Language
Specialized programming language, designed specifically for database systems
Database application
Software that helps business users interact with database systems.
Database administrator
Database admin is responsible for securing the database system against unauthorized users. DB admin also enforces procedures for user access and database system availability.
database designer
Determines format of each data element and overall database structure. DB Designer must balance several priorities, including storage, response time, and support for rules that govern the data.
Database Programmer
Database programmer develops computer programs that utilize a database
Database User
Consumer of data in a database. Database users request, update or use stored data to generate reports or information.
Transacation
Group of queries that must be either completed or rejected as a whole.
Architecture
Architecture of a database system describes the internal components and the relationships between components
Query Processor
Query processor interprets queries, creates a plan to modify the database or retrieve data, and return’s query results to the application.
Query Optimization
Query processor performs query optimization to ensure the most efficient instructions are executed on the data
Storage manager
Translate the query processor instructions into low-level-file-system commands that modify or retrieve data
Indexes
Storage Manager uses indexes to quickly locate data
Transaction Manager
Transaction manager ensure transactions are properly executed
Log
Log file containing a complete record of all inserts’, updates, and delete processed by the database.
Catalog/Data dictionary
Dictionary of tables, columns, indexes, and other database objects
Relational Database
Stores data in tables, columns, and rows, similar to a spreadsheet
SQL
Structured Query Language and includes statements that read and write data, create and delete tables, and administer the database system
Big Data
Growth of the internet generated massive volumes of online data, often with poorly structured or missing information.
NoSQL
Newer, non-relational systems are called NOSQL, for Not Only SQL, and are optimized for big data.
Open Source
Software that anyone can inspect, copy, and modify with no licensing fee.
Query
Command for a database that typically inserts new data, retrieves data, updates data, or deletes data from a database
Query Language
Computer programming language for writing database queries
CRUD
Four Common queries sometimes referred to as CRUD operations, acronym for Create, Read, Update, and Delete data
Statement
SQL statement is a database command, such as a query that inserts, selects, updates, or deletes data
Insert
Inserst rows into a tables
Select
Retrieves data from a table
Update
Modifies data in a table
Delete
Deletes rows in a table
Create Table
Statement creates a new table by specifying the table and column names
Data Type
Every column is assigned a datatype that indicates the format of column values. Data type can be numeri, Textual, or complex
Database Design
Specification of database objects such as tables, columns, data types, and indexes. Database design also refers to the process used to develop the specification
Analysis
Analysis phase specifies database requirements without regard to a specific database system
ER Diagrams
Entities, relationships, and attributes are depicted in ER diagrams.
Logical design
Phase that implements database requirements in a specific database system
Key
Key is a column used to identify individual rows of a table
Table Diagram
Logical design is depicted in a table Diagram
Schema
Logical design, as specified in SQL and depicted in a table diagram
Physical Design
Phase that adds indexes and specifies how tables are organized on storage media
Data independence
Principle that physical design never affects query results
API/Application programming interface
Library of procedures or classes that links a host programing language to a database
MySQL
Leading relational database system sponsored by Oracle
MySQL Community
MySQL server free edition
MySQL Enterprise
Paid edition for managing commercial databses
Root Account
Administrative account that has full control of MySQL
MySQL Command Line Client
Text interface included in the MySQL Server download. It allows developers to connect to the database server, perform administrative functions, and execute SQL statements.
Error Code
MySQL returns an error code and description when an SQL statement is syntactically incorrect or the database cannot execute the statement.
MySQL Workbench
Workbench is installed alongside MySQL server and allows developers to execute SQL commands using an editor.
Data is numeric, textual, visual, or audio information that describes real-world systems
Data
historically, data was mostly analog, encoded as continuous variations or various physical media
Analog
Digitally encoded as zeros, and ones on electronic and magnetic media
Digital
Collection of data in a structured format.
Database
Software that reads and writes data in a database. Database systems ensure data is secure, internally consistent, and available at all times.
Database System, Database management system, DBMS
Specialized programming language, designed specifically for database systems
Query Language
Software that helps business users interact with database systems.
Database application
Database admin is responsible for securing the database system against unauthorized users. DB admin also enforces procedures for user access and database system availability.
Database administrator
Determines format of each data element and overall database structure. DB Designer must balance several priorities, including storage, response time, and support for rules that govern the data.
database designer
Database programmer develops computer programs that utilize a database
Database Programmer
Consumer of data in a database. Database users request, update or use stored data to generate reports or information.
Database User
Group of queries that must be either completed or rejected as a whole.
Transacation
Architecture of a database system describes the internal components and the relationships between components
Architecture
Query processor interprets queries, creates a plan to modify the database or retrieve data, and return’s query results to the application.
Query Processor
Query processor performs query optimization to ensure the most efficient instructions are executed on the data
Query Optimization
Translate the query processor instructions into low-level-file-system commands that modify or retrieve data
Storage manager
Storage Manager uses indexes to quickly locate data
Indexes
Transaction manager ensure transactions are properly executed
Transaction Manager
Log file containing a complete record of all inserts’, updates, and delete processed by the database.
Log
Dictionary of tables, columns, indexes, and other database objects
Catalog/Data dictionary
Stores data in tables, columns, and rows, similar to a spreadsheet
Relational Database
Structured Query Language and includes statements that read and write data, create and delete tables, and administer the database system
SQL
Growth of the internet generated massive volumes of online data, often with poorly structured or missing information.
Big Data
Newer, non-relational systems are called NOSQL, for Not Only SQL, and are optimized for big data.
NoSQL
Software that anyone can inspect, copy, and modify with no licensing fee.
Open Source
Command for a database that typically inserts new data, retrieves data, updates data, or deletes data from a database
Query
Computer programming language for writing database queries
Query Language
Four Common queries sometimes referred to as CRUD operations, acronym for Create, Read, Update, and Delete data
CRUD
SQL statement is a database command, such as a query that inserts, selects, updates, or deletes data
Statement
Inserst rows into a tables
Insert
Retrieves data from a table
Select
Modifies data in a table
Update
Deletes rows in a table
Delete
Statement creates a new table by specifying the table and column names
Create Table
Every column is assigned a datatype that indicates the format of column values. Data type can be numeri, Textual, or complex
Data Type
Specification of database objects such as tables, columns, data types, and indexes. Database design also refers to the process used to develop the specification
Database Design
Analysis phase specifies database requirements without regard to a specific database system
Analysis
Entities, relationships, and attributes are depicted in ER diagrams.
ER Diagrams
Phase that implements database requirements in a specific database system
Logical design
Key is a column used to identify individual rows of a table
Key
Logical design is depicted in a table Diagram
Table Diagram
Logical design, as specified in SQL and depicted in a table diagram
Schema
Phase that adds indexes and specifies how tables are organized on storage media
Physical Design
Principle that physical design never affects query results
Data independence
Library of procedures or classes that links a host programing language to a database
API/Application programming interface
Leading relational database system sponsored by Oracle
MySQL
MySQL server free edition
MySQL Community
Paid edition for managing commercial databses
MySQL Enterprise
Administrative account that has full control of MySQL
Root Account
Text interface included in the MySQL Server download. It allows developers to connect to the database server, perform administrative functions, and execute SQL statements.
MySQL Command Line Client
MySQL returns an error code and description when an SQL statement is syntactically incorrect or the database cannot execute the statement.
Error Code
Workbench is installed alongside MySQL server and allows developers to execute SQL commands using an editor.
MySQL Workbench