Dbms Midterm q1 q2
Dbms Midterm q1 q2
Schema
Which of the following is the correct example of passing a privilege (INSERT and
UPDATE) to user HR coming from a SYSTEM?
GRANT INSERT, UPDATE
ON EMPLOYEES
TO HR
WITH GRANT OPTION;
It is a type of privilege that gain access to the database
System
It is a named group of related privileges that can be granted to the user. This method
makes it easier to revoke and maintain privileges.
Role
Which of the following system privileges is not part of the task by the database admin.?
Managing user environment
It is a type of privilege that is used to manipulating the content of the database objects.
Object
Which of the following System Privileges is not part of SYSTEM privilege?
CREATE INDEX
Which of the following is the correct syntax for creating a new user?
CREATE USER hr
IDENTIFIED BY hr;
Which of the following is the correct example of passing a privilege (INSERT and
UPDATE) to user HR coming from a user scott?
GRANT INSERT, UPDATE
ON SYSTEM.EMPLOYEES
TO HR;
This is used to remove a privilege granted to a user.
REVOKE
It is a type of privilege that is used to manipulating the content of the database objects.
Object
Which of the following is the correct syntax for creating a new user?
CREATE USER hr
IDENTIFIED BY hr;
Which of the following is the correct example of passing a privilege (INSERT and
UPDATE) to user HR coming from a SYSTEM?
GRANT INSERT, UPDATE
ON EMPLOYEES
TO HR
WITH GRANT OPTION;
Which three (3) of thefollowing is the three Data Manipulation Langauge that is
considered as part of database transaction.
UPDATE
DELETE
INSERT
A transaction ends when either of the following occurs. (Choose 5)
The user encounter system failure
CREATE TABLE is issued
The user closes the isqlplus
The user type in Commit
The user type in Rollback
Which of the following is the correct example of passing a privilege (INSERT and
UPDATE) to user HR coming from a user scott?
GRANT INSERT, UPDATE
ON SYSTEM.EMPLOYEES
TO HR;
This is also known collection of objects such as tables, views, and sequences.
Schema
Which one (1) Data Definition Language is considered as part of Database Transaction.
CREATE TABLE
It is a type of privilege that gain access to the database
Systems