ITEC48 PRELIM Flashcards
is a collection of data stored in a format that can easily be accessed.
Database
is a collection of programs that enables users to access, manipulate, report, and represent data.
Database Management System (DBMS)
helps control access to the database.
Database Management System (DBMS)
defines the logical design and structure of a database and how data will be stored, accessed, and updated.
Database model
organizes data into a tree-like structure with one-to-many relationships.
Hierarchical Model
organizes data like a graph, allowing more than one parent node.
Network Model
This database model was used to map many-to-many data relationships.
Network Model
This was the most widely used database model, before Relational Model was introduced.
Network Model
creates relationships by dividing objects of interest into entities and attributes.
Entity-relationship Model
This model is good to design a database, which can then be turned into tables in relational model.
Entity-relationship Model
is the database model used to store data in two-dimensional tables with a common field.
Relational Model
most widely used database model, in fact, we can say the only database model used around the world.
Relational Model
is a skeleton structure that represents the logical view of the entire database.
Database schema
defines how the data is organized and how the relations among them are associated.
Database Schema
It’s the database designers who design the schema to help programmers understand the database and make it useful.
Database Schema
pertains to the actual storage of data, such as files and indices.
Physical database schema
defines logical constraints, tables, views, and integrity constraints.
Logical database schema
This schema defines all the logical constraints that need to be applied on the data stored. It defines tables, views, and integrity constraints.
Logical Database
is the basis for SQL and modern database systems like MS SQL Server, IBM DB2, Oracle, and MySQL.
Relational Database Management System (RDBMS)
The data in an RDBMS is stored in database objects which are called as.
Tables
is a table that consists of numerous columns and rows, storing related data entries.
Table
Every table is broken up into smaller entities called
fields
is a column in a table that maintains specific information about every record.
Field
is an individual entry (row) in a table.
Record
is a vertical entity in a table that contains all information associated with a specific field.
Column
is a category of database management systems that do not adhere to relational concepts.
NoSQL
is a language used for storing, manipulating, and retrieving data in a relational database.
SQL
NoSQL stands for?
Not only SQL
who is father of relational databases?
Edgar F. “Ted” Codd
what year did the SQL release?
1974
IBM developed the first prototype of relational database and standardized by ANSI.
1986
The first relational database was released by Relational Software which later came to be known as
Oracle
is the SQL command used to retrieve records from one or more tables.
SELECT
is the SQL command used to create a new record in a table.
INSERT