Sei sulla pagina 1di 5

Which one of the following is a valid Data Availability Mode within Data Guard?

Choice 1 Choice 2 Choice 3 Choice 4 Choice 5 Delayed protection mode Guaranteed protection mode Maximum protection mode Instant protection mode Rapid protection mode

Problem

CREATE TABLESPACE cdh_db_data_tbs DATAFILE '/u01/oradata/cdh_db/data/cdh_db_data_tbs_01.dbf' SIZE 640M EXTENT MANAGEMENT LOCAL UNIFORM; Referring to the above problem, what is the size of each extent in the tablespace?

Choice 1 Choice 2 Choice 3 Choice 4 Choice 5

64 KB 512 KB 1M 2M 4M

The following parameters are set in the initialization parameter file: DB_CREATE_FILE_DEST = '+dg_001' DB_RECOVERY_FILE_DEST = '+dg_002' DB_RECOVERY_FILE_DEST_SIZE = 8G The CONTROL_FILES, and the DB_CREATE_ONLINE_LOG_DEST_n parameters are not set. A New database is created using the following SQL statement: CREATE DATABASE osdg10db; Referring to the above scenario, which one of the following control-file related statements is true ? Choice 1 Choice 2 Choice 3 Choice 4 One control file is created in $ORACLE_HOME/dbs. One control file is created in dg_001. Two control files are created--one in dg_001 and another in dg_002. Two control files are created in $ORACLE_HOME/dbs.

Choice 5

Two control files are created in dg_001.

Which one of the following procedures do you use to analyze a single SQL statement? Choice 1 Choice 2 Choice 3 Choice 4 Choice 5 DBMS_ADVISOR.ADD_SQLWKLD_STATEMENT DBMS_ADVISOR.CREATE_TASK DBMS_ADVISOR.ADD_SQLWKLD_REF DBMS_ADVISOR.QUICK_TUNE DBMS_ADVISOR.CREATE_SQLWKLD

Which one of the following roles do you grant to allow read access to the SYS schema objects? Choice 1 Choice 2 Choice 3 Choice 4 Choice 5 SELECT_CAT_ROLE SELECT_SYS_ROLE SELECT_DICT_ROLE SELECT_DICTIONARY_ROLE SELECT_CATALOG_ROLE

Which one of the following commands do you enter to list the targets on a managed host? (Assume you are in the right location/directory.) Choice 1 Choice 2 ./emctl listtargets config ./emctl config agent listtargets (http://download.oracle.com/docs/cd/B14117_01/em.101/b12013/structure.htm) Choice 3 Choice 4 Choice 5 ./emctl list targets ./emctl agent config list targets ./emctl agent list targets

What is the difference between an Updatable Materialized View and a Writable Materialized View? Choice 1 Choice 2 The Writable Materialized View is not created with the FOR UPDATE clause. LONG datatypes are allowed in the Updatable Materialized View.

Choice 3 Choice 4 Choice 5

The Writable Materialized View does not allow READ operations. The Writable Materialized View does not need to be part of a materialized view group. The Updatable Materialized View does not allow column aliases.

Scenario

You have a multi-master replication setup. You need to add a DATE type column to the table GL_ENTRY. Referring to the scenario above, which one of the following Oracle packages do you execute to ensure that this change is replicated to all the other sites?

Choice 1 Choice 2 Choice 3 Choice 4 Choice 5

DBMS_REPCAT.ALTER_MASTER_DDL DBMS_REPCAT.REPLICATE_OBJECT_DDL DBMS_REPCAT.EXECUTE_MASTER_DDL DBMS_REPCAT.ALTER_MASTER_REPOBJECT DBMS_REPCAT.ALTER_MASTER_OBJECT

Scenario

You need your production (primary) server to be up almost all the time because you are in a 24x7x365 mode with a 99.99% up-time service level agreement. Referring to the above scenario, which one of the following Data Guard protection modes do you use?

Choice 1 Choice 2 Choice 3 Choice 4 Choice 5

Minimum Downtime Mode Maximum Performance Mode Maximum Protection Mode High Availability Mode Maximum Availability Mode

CREATE TABLE lcn_click_log ( lcn_id INT ,lcn_sequence INT ,refer_code varchar2(8) ,refer_dom varchar2(8) ,referrer_url varchar(512) ,primary key ( lcn_id ,lcn_sequence ,refer_code ) ) ORGANIZATION INDEX INCLUDING refer_dom OVERFLOW TABLESPACE click_log_tbs

; Referring to the above, which one of the following columns is stored in the overflow area? Choice 1 Choice 2 Choice 3 Choice 4 Choice 5 refer_dom lcn_sequence refer_code referrer_url lcn_id

Which one of the following is a SQLPLUS limitation when compared to SRVCTL? Choice 1 Choice 2 Choice 3 Choice 4 Choice 5 SQLPLUS does not support CONNECT AS SYS. SQLPLUS does not support STARTUP NOMOUNT. SQLPLUS should always be executed from the $ORACLE_HOME/bin directory. SQLPLUS does not support SHUTDOWN IMMEDIATE. SQLPLUS does not support STARTUP of more than one instance at a time.

Scenario

There is a requirement to partition data based on the geographical region. There are four regions: ASIA, AMERICAS, EUROPE, and AFRICA. The table name is SALES, and the region is stored in column REGION_CODE. Referring to the scenario above, which one of the following statements do you use to partition this data table?

Choice 1 Choice 2

PARTITION BY HASH (region_code)

PARTITION 4 STORE IN ( tsa,tsb,tsc,tsd );

PARTITION BY RANGE (substr(region_code, 1, 4)) ( PARTITION sales_asia VALUES LESS THAN ('ASIA') , PARTITION sales_americas VALUES LESS THAN ('AMER') ,PARTITION sales_europe VALUES LESS THAN ('EURO') , PARTITION sales_africa VALUES LESS THAN ('AFRI') ); PARTITION BY LIST (region_code) ( PARTITION sales_asia VALUES ('ASIA'), PARTITION sales_americas VALUES ('AMERICAS'), PARTITION sales_europe VALUES ('EUROPE'), PARTITION sales_africa VALUES ('AFRICA') ); PARTITION BY RANGE (region_code) ( PARTITION sales_asia VALUES LESS THAN ('ASIA'),PARTITION sales_americas VALUES LESS THAN ('AMERICAS'), PARTITION sales_europe VALUES LESS THAN ('EUROPE'),PARTITION sales_africa VALUES LESS THAN ('AFRICA')); PARTITION BY HASH (region_code) PARTITION 4 STORE IN ( sales_asia,sales_americas,sales_europe,sales_africa );

Choice 3

Choice 4

Choice 5

Scenario

You administer a database that has had several table and column modifications. Referring to the scenario above, which one of the following do you do to check specific indexes that are NO LONGER being used?

Choice 1 Choice 2 Choice 3 Choice 4 Choice 5

ALTER INDEX index_name MONITOR; Then query the DBA_INDEXES view. ALTER INDEX index_name MONITORING USAGE; Then query the V$OBJECT_USAGE view. ALTER INDEX index_name MONITOR; Then query the V$OBJECT_USAGE view. MONITOR INDEX index_name ; Then query ALL_INDEXES. ALTER INDEX index_name USAGE; Then query the V$OBJECT_USAGE view.

Scenario

Two temporary tablespace groups exist: - tsgrp_temp_sort. Members are listed below - ts_temp_sort_001 - ts_temp_sort_002 - tsgrp_temp_merge. Members are listed below - ts_temp_merge_001 - ts_temp_merge_002 Referring to the above scenario, how do you remove the temporary tablespace group tsgrp_temp_merge?

Choice 1 Choice 2 Choice 3 Choice 4 Choice 5

DROP TEMPORARY TABLESPACE GROUP tsgrp_temp_merge; ALTER TABLESPACE ts_temp_merge_001 TABLESPACE GROUP tsgrp_temp_sort; ALTER TABLESPACE ts_temp_merge_002 TABLESPACE GROUP tsgrp_temp_sort; ALTER TABLESPACE ts_temp_merge_001 MOVE TO TABLESPACE GROUP tsgrp_temp_sort; ALTER TABLESPACE ts_temp_merge_002 MOVE TO TABLESPACE GROUP tsgrp_temp_sort; ALTER TABLESPACE GROUP tsgrp_temp_merge DELETE; DROP TABLESPACE GROUP tsgrp_temp_merge;

In a Real Application Cluster environment, which one of the following Enterprise Manager pages do you use to monitor the Global Cache Convert for the entire cluster database? Choice 1 Choice 2 Choice 3 Choice 4 Choice 5 Cluster Database Home Page Cluster Cache Coherency Page Cluster Database Performance Page Cluster Cache Coherency Instances Page Cluster Performance Page

Potrebbero piacerti anche