Database Na Gaya Nung Nakaraan Flashcards

1
Q

It is a collection of data stored in a format that can easily be accessed.

A

Database

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

It is a collection of programs which enable its users to access database,
manipulate data, reporting and representation of data.

A

Database Management System (DBMS)

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

It defines the logical design and
structure of a database and defines how data will be stored, accessed and updated in a database management system.

A

Database Model

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

4 Database Models

A
  • Hierarchical Model
  • Network Model
  • Entity-Relationship Model
  • Relational Model
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The data is organized into tree-like structure.

A

Hierarchical Model

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

An extension of the Hierarchical model. In this model data is organized more like a graph, and are allowed to have more than one parent node.

A

Network Model

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

In this database model, relationships are created by dividing object of interest into entity and its characteristics into attributes.

A

Entity-Relationship Model

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

In this model, data is organized in
two-dimensional tables and the relationship is maintained by storing a common field.

A

Relational Model

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

It defines how the data is organized and how the relations among them are associated.

A

Database Schema

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

It is a vertical entity in a table that
contains all information associated with a specific field in a table.

A

Column

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

It simply deals with descriptions of the database schema and is used to create and modify the structure of database objects in the database.

A

DDL (DATA DEFINITION LANGUAGE)

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

Creates a new table, a view of a table, or other object in the database.

A

Create

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

Modifies an existing database object, such as a table.

A

Alter

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

Deletes an entire table, a view of a table or other objects in the database.

A

Drop

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

The SQL commands that deals with the manipulation of data present in the database.

A

DML (DATA MANIPULATION LANGUAGE)

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

Retrieves certain records from one or more tables

17
Q

Creates a records

18
Q

Modifies records

19
Q

Delete record

20
Q

It mainly deals with the rights, permissions and other controls of the database system.

A

DCL (DATA CONTROL
LANGUAGE)

21
Q

Gives a privilege to user.

22
Q

Takes back privileges granted from user.

23
Q

It deals with the transaction within the database.

A

TCL (TRANSACTION CONTROL LANGUAGE)

24
Q

Commit a transaction

25
rollbacks a transaction in case of any error occurs.
Rollback
26
Sets a savepoint within a transaction.
Savepoint
27
It specify characteristics for the transaction.
Set Transaction
28
It is an attribute that specifies the type of data of any object.
Data Type
29
There are no duplicate rows in a table.
Entity Integrity
30
Enforces valid entries for a given column by restricting the type, the format, or the range of values.
Domain Integrity
31
Rows cannot be deleted, which are used by other records.
Referential Integrity
32
Enforces some specific business rules that do not fall into entity, domain of referential integrity.
User-Defined Integrity
33
What the purpose of the query is.
Action
34
Which table or tables the action will be performed on.
Location
35
What columns rows and data will be affected.
Where