Database Administration Flashcards
What is Oracle Database?
Oracle Database is a multi-model database management system produced and marketed by Oracle Corporation.
True or False: Oracle Database supports SQL and PL/SQL.
True
What is the purpose of the Oracle Listener?
The Oracle Listener is responsible for handling incoming client connection requests and directing them to the appropriate database service.
Fill in the blank: The Oracle database architecture consists of a __________ and a __________.
database instance, database
What command is used to create a new user in Oracle?
CREATE USER
Which of the following is NOT a type of Oracle database object? A) Table B) View C) Function D) Script
D) Script
What is a tablespace in Oracle?
A tablespace is a storage location in an Oracle database where data files are stored.
What command would you use to grant a user permission to access a table?
GRANT SELECT ON table_name TO user_name
True or False: Oracle uses a single-threaded architecture.
False
What is the purpose of the Oracle Data Dictionary?
The Oracle Data Dictionary contains metadata about the database, including information about users, tables, and permissions.
Which command is used to back up an Oracle database?
RMAN BACKUP DATABASE
What does the acronym RMAN stand for?
Recovery Manager
Fill in the blank: The __________ command is used to modify existing data in a table.
UPDATE
What is the default port number for Oracle Listener?
1521
What is a primary key?
A primary key is a unique identifier for a record in a database table.
True or False: An Oracle database can only have one tablespace.
False
What is the purpose of the Oracle Archive Log?
The Oracle Archive Log is used to store a copy of the redo log files to support recovery and auditing.
What command is used to create a new tablespace?
CREATE TABLESPACE
Which of the following is NOT a valid Oracle data type? A) VARCHAR2 B) NUMBER C) FLOATING D) DATE
C) FLOATING
What does the acronym DDL stand for?
Data Definition Language
What command would you use to delete a user from Oracle?
DROP USER
Fill in the blank: A __________ is a collection of related data organized in a structured format.
table
What is the purpose of Oracle’s Flashback technology?
Flashback technology allows users to view and restore data from a previous state.
True or False: A view is a virtual table in Oracle.
True