Types of Data base systems and terms Flashcards

1
Q

Terms

What is Datum

A

a single piece of information

5%, 12 years old, 12:45pm

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

Term

What is Data:

A

facts related to any object in consideration
a collection of datum
2, 3, 5, 200, 10

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

Term

What is Information:

A

data in context and with a meaning

Price of bread ranges from $1.49 for white to $5.20 for specialty

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

Term
What is Metadata:
(also called schema)

A

A description of a particular piece of data, how it relates to other data, etc
ex: any organizations or data; charts, pie chart etc

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

What is a Database?

A

An organized collection of logically related data

Generally designed to allow ‘easy’ access of data

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

What are Object-oriented relational Databases?

A

supports storage of new data types
data to be stored is in the form of objects, objects to be stored in the database have attributes and methods that define what to do with the data
attributes ex: gender, age

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

What are Heirarcial Databases?

A

Looks like a tree of sorts (trunk- records, branches- fields)
Still in use in a few area
Can be highly efficient for small amount of data and very organized data
User/program must know the details of the file/record layout and did the navigation

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

What are Network Databases?

A

Supports many relationships
a complex data structure (looks like a series of rings linked together)
Still in use in a very few area
Can be highly efficient for small amount of data and very organized data
User/program must know the details of the file/record layout and did the navigation

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

Cheap man’s database

A

Looks like a file system because it is!!!
Still in use in many areas
Can be highly efficient for small amount of data and very organized data
User/program must know the details of the file/record layout and do the navigation
Example organization of music by category

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

Types of Databases

Relational

A

Data is stored in a series of interrelated tables (relations)
The primary form of databases today
Can be highly efficient for any amount of data
User/program do not know the details of the file/record layout and do no navigation
Uses Structured Query Language to access the data

Examples are: MS Access, Oracle, MySQL, MS SQL Server. DB2

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

In a database system what is a relationship defined as?

A

A description on how different tables are related
Usually tying specific columns in one table to specific columns in another
A table can have numerous relationships, or none

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

What is an SQL Statement?

A

And ‘English-like’ request to the DBMS

The smallest unit of work against the database

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

What is a Transaction?

A

A grouping of one or more SQL statements together as a single unit of work
Ensures all the work is done in one step without interruption (helps to maintain integrity)

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

What is a Query?

A

A type of SQL statement that returns selected data to the requestor
KEY POINT:
The returned data is in the form of a table

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

MS Access

A

Great for small single user applications
Poor multi-user handling
Everything stored in a single file
Tables, relationships, indexes, reports, forms, macros, etc.
Can attach to many other DBMS for data
dBase, Paradox, SQL Server, DB2, Lotus Notes, MySQL, Oracle

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

What are the functions of SQL?

A

Helps to insert, search, update and delete database records

- also helps to optimize and maintain databases and more

17
Q

What does DBMS stand for?

A

Database Management System

18
Q

What is a Database Management System (DBMS)?

A

Collection of programs that enables its users to access database, manipulate data and help in the representation of data
Controls access to database by various users

ex Facebook: accounts, photos, friends, personal info
ex: Service provider: Customer, plan, person info/contactinfo

19
Q

a database management system helps to?

A

Ensure all access to info is coming from the same place
Integrity of information is reliable
Users get only the data they require
Shared access to information

20
Q

What are joins in a relational database

A

The combining or two tables to create a unique table

Used to create reports and views

21
Q

What does the SQL inner join and join command do?

A

Inner: Intersection (common elements)

Join: Intersection all elements

22
Q

The data in a relational database is stored in a series of __________ tables

A

interrelated

23
Q

What is a SQL LEFT JOIN?

A

Intersection all left elements

24
Q

What is a Right join used for?

A

Intersection all right

25
Q

What technology does Microsoft Access use?

A

Uses the Microsoft Jet Database Engine technology

Aka Jet Red