OCA-10-Understanding Storage and Space Management

Descrição

OCA OCA Quiz sobre OCA-10-Understanding Storage and Space Management, criado por Jamonero Blanco em 29-01-2017.
Jamonero Blanco
Quiz por Jamonero Blanco, atualizado more than 1 year ago
Jamonero Blanco
Criado por Jamonero Blanco mais de 7 anos atrás
199
2

Resumo de Recurso

Questão 1

Questão
1. Which of the following statements about tablespaces is true?
Responda
  • A. A tablespace is the physical implementation of a logical structure called a namespace.
  • B. A tablespace can hold the objects of only one schema.
  • C. A bigfile tablespace can have only one data file.
  • D. The SYSAUX tablespace is an optional tablespace created only if you install certain database options.

Questão 2

Questão
2. Automatic segment space management on the tablespace causes which of the following table attributes in that tablespace to be ignored?
Responda
  • A. The whole storage clause
  • B. NEXT and PCTINCREASE
  • C. BUFFERPOOL and FREEPOOL
  • D. PCTFREE and PCTUSED

Questão 3

Questão
3. Which is not a type of segment that is stored in a tablespace?
Responda
  • A. Undo
  • B. Redo
  • C. Permanent
  • D. Temporary

Questão 4

Questão
4. Which allocation unit is the smallest?
Responda
  • A. Data file
  • B. Extent
  • C. Data block
  • D. Segment

Questão 5

Questão
5. You performed the following statement in the database. What actions can you perform on the CUST_INFO table in the CUST_DATA tablespace. (Choose all that apply.) ALTER TABLESPACE CUST_DATA READ ONLY;
Responda
  • A. ALTER TABLE CUST_INFO DROP COLUMN xx;
  • B. TRUNCATE TABLE CUST_INFO;
  • C. INSERT INTO CUST_INFO VALUES (...);
  • D. DROP TABLE CUST_INFO;
  • E. RENAME CUST_INFO TO CUSTOMER_INFO;

Questão 6

Questão
6. If the tablespace is offline, which statements should be executed to make the USERS tablespace read-only? (Choose all that apply.)
Responda
  • A. ALTER TABLESPACE USERS READ ONLY
  • B. ALTER DATABASE MAKE TABLESPACE USERS READ ONLY
  • C. ALTER TABLESPACE USERS ONLINE
  • D. ALTER TABLESPACE USERS TEMPORARY

Questão 7

Questão
7. How would you add more space to a tablespace? (Choose all that apply.)
Responda
  • A. ALTER TABLESPACE <TABLESPACE NAME> ADD DATAFILE SIZE < N >
  • B. ALTER DATABASE DATAFILE <FILENAME> RESIZE < N >
  • C. ALTER DATAFILE < FILENAME > RESIZE < N >
  • D. ALTER TABLESPACE < TABLESPACE NAME > DATAFILE < FILENAME > RESIZE < N >

Questão 8

Questão
8. The database is using automatic memory management. The standard block size for the database is 8KB. You need to create a tablespace with a block size of 16KB. Which initialization parameter should be set?
Responda
  • A. DB_8K_CACHE_SIZE
  • B. DB_16K_CACHE_SIZE
  • C. DB_CACHE_SIZE
  • D. None of the above

Questão 9

Questão
9. Which data dictionary view can be queried to obtain information about the files that belong to locally managed temporary tablespaces?
Responda
  • A. DBA_DATA_FILES
  • B. DBA_TABLESPACES
  • C. DBA_TEMP_FILES
  • D. DBA_LOCAL_FILES

Questão 10

Questão
10. How would you drop a tablespace if the tablespace were not empty?
Responda
  • A. Rename all the objects in the tablespace, and then drop the tablespace.
  • B. Remove the data files belonging to the tablespace from the disk.
  • C. Use ALTER DATABASE DROP <TABLESPACE NAME> CASCADE .
  • D. Use DROP TABLESPACE <TABLESPACE NAME> INCLUDING CONTENTS .

Questão 11

Questão
11. Which command is used to enable the autoextensible feature for a file if the file is already part of a tablespace?
Responda
  • A. ALTER DATABASE .
  • B. ALTER TABLESPACE .
  • C. ALTER DATA FILE .
  • D. You cannot change the autoextensible feature once the data file is created.

Questão 12

Questão
12. Which statement is true regarding the SYSTEM tablespace?
Responda
  • A. It can be made read-only.
  • B. It can be offline.
  • C. Data files can be renamed.
  • D. Data files cannot be resized.

Questão 13

Questão
13. The default critical threshold for a tablespace is set at 97 percent, and you think that is too low. Which two options can you use to change the threshold value to 90 percent for tablespace APPS_DATA ?
Responda
  • A. Use Oracle Enterprise Manager Database Express.
  • B. Use Oracle Enterprise Manager Cloud Control.
  • C. Use DBMS_SERVER_ALERT package.
  • D. Use DBMS_SPACE package.

Questão 14

Questão
14. Choose the statements that are resumable. (Choose three.)
Responda
  • A. ALTER TABLE ... SPLIT PARTITION
  • B. SELECT
  • C. INSERT INTO ... SELECT
  • D. CREATE TABLESPACE
  • E. ALTER TABLE ... SHRINK SPACE

Questão 15

Questão
15. How do you ensure you are notified when a resumable session is suspended? (Choose two.)
Responda
  • A. You’ll be notified by email at the address registered in database properties.
  • B. Write a custom script to look for “statement in resumable session * was suspended” in the alert log and notify the DBA.
  • C. Create an AFTER SUSPEND trigger and a code notification.
  • D. A suspended session displays a message on the screen.

Questão 16

Questão
16. Which statement regarding reclaiming wasted space is true?
Responda
  • A. Segment shrink is accomplished using the ALTER TABLE ... MOVE and ALTER INDEX ... REBUILD statements.
  • B. Segment shrink and reorganize are similar operations.
  • C. When a table segment shrink operation is completed, the dependent indexes are in invalid state and need to be rebuilt.
  • D. A segment shrink operation is applicable only on tablespaces with automatic segment space management.

Questão 17

Questão
17. Which compression option should be specified to compress blocks of tables that are used by the OLTP application?
Responda
  • A. COMPRESS
  • B. NOCOMPRESS
  • C. COMPRESS FOR OLTP
  • D. COMPRESS FOR ONLINE DML

Questão 18

Questão
18. Choose the best option regarding extents.
Responda
  • A. An extent is a grouping of Oracle blocks.
  • B. An extent is a grouping of OS blocks.
  • C. An extent is a grouping of segments.
  • D. An extent is allocated when a table is created.

Questão 19

Questão
19. You issue the statement CREATE TABLESPACE X; . Which of the following is the best option?
Responda
  • A. The statement fails because mandatory properties are not defined.
  • B. The 100MB tablespace is created.
  • C. The mandatory DATAFILE clause is missing.
  • D. The tablespace name should be at least three characters long.

Questão 20

Questão
20. Choose the information that is not part of a ROWID.
Responda
  • A. Data object number
  • B. Relative file number
  • C. Segment ID where the block belongs
  • D. Block number in the file

Semelhante

Ciencia Abierta en la UNC
Mario Pizzi
ROUND & TRUNC [DATES]
Adrian Mora
GRAMATICA
santosfilipe123
ESTRUTURA DAS PALAVRAS - Morfologia
Viviana Veloso
Vocabulário sobre o corpo em Francês
Catarina D.
LEI 8080
Camila Costa
Matemática - Probabilidades
stellalorelay
Quiz (Interpretação Textual) - T6s
Rodrigo de Freit9506
1ª Guerra Mundial
Daniel Lima
Grécia antiga: formação
jacson luft
Sistema Único de Saúde
Vanessa Campos