Oracle Database Administration

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/20

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts related to user management, privileges, and data backup in Oracle Database administration.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

21 Terms

1
New cards

What SQL statement is used to create a new user in Oracle?

CREATE USER

2
New cards

Which clause in the CREATE USER statement is used for password authentication?

IDENTIFIED BY clause

3
New cards

What is the default tablespace for a new user if not specified?

users

4
New cards

What does the Quota clause specify for a user?

The maximum amount of space that the user can allocate in the tablespace.

5
New cards

What is the purpose of the Profile clause in user creation?

To limit the amount of database resources the user can use.

6
New cards

What happens to a user account set to the status 'LOCK'?

The account is created but access is disabled.

7
New cards

What keyword is used to permanently remove a database user?

DROP USER

8
New cards

What is the consequence of using the CASCADE keyword when dropping a user?

All objects owned by the user are automatically dropped.

9
New cards

What are the two types of privileges in Oracle Database?

System Privilege and Object Privilege.

10
New cards

Who can grant or revoke system privileges in Oracle?

The SYS user, a user with GRANT ANY PRIVILEGE, and any user granted with ADMIN OPTION.

11
New cards

What is the difference between SYSTEM privileges and OBJECT privileges?

SYSTEM privileges allow actions on any schema objects, while OBJECT privileges are specific access rights to database objects.

12
New cards

What does the GRANT OPTION allow a user to do?

It allows the user to grant an object privilege to another user.

13
New cards

Which clause indicates that a role must be authorized by a password?

IDENTIFIED BY clause.

14
New cards

What is the purpose of using roles in Oracle?

To simplify the management and control of privileges.

15
New cards

What command is used to assign a system privilege to a role?

GRANT TO .

16
New cards

What is the export utility in Oracle used for?

To create a copy of the database or specific database components.

17
New cards

What are logical backups in Oracle?

Backups that export database objects and data in a format that can be imported back into the database.

18
New cards

In the export utility, what does the option 'Specify Objects' allow you to do?

Limit the scope of the export process by selecting types of objects to include.

19
New cards

What does the IMPORT utility do in Oracle?

It imports data from an export SQL file into the database.

20
New cards

What must be done before running a script in the IMPORT utility?

Open the export SQL file.

21
New cards

What is the default temporary tablespace for a new user if not specified?

temp