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

A

Select

17
Q

Creates a records

A

Insert

18
Q

Modifies records

A

Update

19
Q

Delete record

A

Delete

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.

A

Grant

22
Q

Takes back privileges granted from user.

A

Revoke

23
Q

It deals with the transaction within the database.

A

TCL (TRANSACTION CONTROL LANGUAGE)

24
Q

Commit a transaction

A

Commit

25
Q

rollbacks a transaction in case of any error occurs.

A

Rollback

26
Q

Sets a savepoint within a transaction.

A

Savepoint

27
Q

It specify characteristics for the transaction.

A

Set Transaction

28
Q

It is an attribute that specifies the type of data of any object.

A

Data Type

29
Q

There are no duplicate rows in a table.

A

Entity Integrity

30
Q

Enforces valid entries for a given column by restricting the type, the format, or the range of values.

A

Domain Integrity

31
Q

Rows cannot be deleted, which are used by other records.

A

Referential Integrity

32
Q

Enforces some specific business rules that do not fall into entity, domain of referential integrity.

A

User-Defined Integrity

33
Q

What the purpose of the query is.

A

Action

34
Q

Which table or tables the action will be performed on.

A

Location

35
Q

What columns rows and data will be affected.

A

Where