单选题
Which set of statements is true about data dictionary views?
#1.They are stored in the SYSTEM tablespace.
#2.They are based on virtual tables.
#3.They are owned by the SYS user.
#4.They can be queried by a normal user only if the #07_DICTIONARY_ACCESSIBILITY parameter is set to TRUE.
#5.The V$FIXED_TABLE view can be queried to list the names of these views.
#6.They are owned by the SYSTEM user.

A、 2, 5, and 6
B、 1, 2, and 3
C、 1 and 3
D、 2, 3, 4, and 5
下载APP答题
由4l***vj提供 分享 举报 纠错

相关试题

单选题
You executed a DRO1P7USER CASCADE on an Oracle 11g release 1 database and immediately realized that you forgot to copy the OCA.EXAM_RESULTS table to the OCP schema.
The RECYCLE_BIN enabled before the DROP USER was executed and the OCP user has been granted the FLASHBACK ANY TABLE system privilege.
What is the quickest way to recover the contents of the OCA.EXAM_RESULTS table to the OCP schema?

A、Execute FLASHBACK TABLE OCA.EXAM_RESULTS TO BEFORE DROP RENAME TOOCP.EXAM_RESULTS; connected as SYSTEM.
B、Recover the table using traditional Tablespace Point In Time Recovery.
C、Recover the table using Automated Tablespace Point In Time Recovery.
D、Recovery the table using Database Point In Time Recovery.
E、Execute FLASHBACK TABLE OCA.EXAM_RESULTS TO BEFORE DROP RENAME TOEXAM_RESULTS; connected as the OCP user.

单选题
Examine the parameter for your database instance:
NAME TYPE VALUE
-------------------------------------------------------------------------------------------- ---------------- ---------
Optimizer_adaptive _ reporting _ only boolean FALSE
Optimizer_capture_sql_plan_baselines boolean FALSE
Optimizer_dynamic_sampling integer 2
Optimizer _ features _ enable string 12.1.0.1
You generated the execution plan for the following query in the plan table and noticed that the nested loop join was done. After actual execution of the query, you notice that the hash join was done in the execution plan:
SQL> SELECT product_name
FROM order_items o, product_infornation p
WHERE o.unit price = 15
AND quantity > 1
AND p.product_id = o.product_1d; 30 rows selected.
Identify the reason why the optimizer chose different execution plans.

A、The optimizer used a dynamic plan for the query.
B、The optimizer chose different plans because automatic dynamic sampling was enabled.
C、The optimizer used re-optimization cardinality feedback for the query.
D、The optimizer chose different plan because extended statistics were created for the columns used.

单选题
Your database supports an online transaction processing (OLTP) application. The application is undergoing some major schema changes, such as addition of new indexes and materialized views. You want to check the impact of these changes on workload performance.
What should you use to achieve this?

A、Database replay
B、SQL Tuning Advisor
C、SQL Access Advisor
D、SQL Performance Analyzer :
E、Automatic Workload Repository compare reports

单选题
You are about to plug a multi-terabyte non-CDB into an existing multitenant container database (CDB).
The characteristics of the non-CDB are as follows:
–Version: Oracle Database 11g Release 2 (11.2.0.2.0) 64-bit
–Character set: AL32UTF8
–National character set: AL16UTF16
–O/S: Oracle Linux 6 64-bit
The characteristics of the CDB are as follows:
–Version: Oracle Database 12c Release 1 64-bit
–Character Set: AL32UTF8
–National character set: AL16UTF16
–O/S: Oracle Linux 6 64-bit
Which technique should you use to minimize down time while plugging this non-CDB into the CDB?

A、Transportable database
B、Transportable tablespace
C、Data Pump full export/import
D、The DBMS_PDB package
E、RMAN

单选题
An application accesses a small lookup table frequently. You notice that the required data blocks are getting aged out of the default buffer cache.
How would you guarantee that the blocks for the table never age out?

A、Configure the KEEP buffer pool and alter the table with the corresponding storage clause.
B、Increase the database buffer cache size.
C、Configure the RECYCLE buffer pool and alter the table with the corresponding storage clause.
D、Configure Automata Shared Memory Management.
E、Configure Automatic Memory Management.

单选题
In your multitenant container database (CDB) containing pluggable database (PDBs), the HR user executes the following commands to create and grant privileges on a procedure:
CREATE OR REPLACE PROCEDURE create_test_v (v_emp_id NUMBER, v_ename VARCHAR2, v_SALARY NUMBER, v_dept_id NUMBER)
BEGIN
INSERT INTO hr.test VALUES (V_emp_id, V_ename, V_salary, V_dept_id); END;
/
GRANT EXECUTE ON CREATE_TEST TO john, jim, smith, king;
How can you prevent users having the EXECUTE privilege on the CREATE_TEST procedure from inserting values into tables on which they do not have any privileges?

A、Create the CREATE_TEST procedure with definer’s rights.
B、Grant the EXECUTE privilege to users with GRANT OPTION on the CREATE_TEST procedure.
C、Create the CREATE_TEST procedure with invoker’s rights.
D、Create the CREATE_TEST procedure as part of a package and grant users the EXECUTE privilege the package.

单选题 Examine the following query output:
SQL> SELECT name, force_logging FROM vSdatabase;
NAME FORCE_LOGGING
------------ ---------------------------
PROD NO
You issue the following command to import tables into the hr schema:
$ > impdp hr/hr directory = dumpdir dumpfile = hr_new.dmp schemas=hr
TRANSFORM=DISABLE_ARCHIVE_LOGGING: Y
Which statement is true?

A、All database operations performed by the impdp command are logged.
B、Only CREATE INDEX and CREATE TABLE statements generated by the import are logged.
C、Only CREATE TABLE and ALTER TABLE statements generated by the import are logged.
D、None of the operations against the master table used by Oracle Data Pump to coordinate its activities are logged.

单选题
You conned using SQL Plus to the root container of a multitenant container database (CDB) with SYSDBA privilege.
The CDB has several1pl7uggable databases (PDBs) open in the read/write mode. There are ongoing transactions in both the CDB and PDBs.
What happens alter issuing the SHUTDOWN TRANSACTIONAL statement?

A、The shutdown proceeds immediately. The shutdown proceeds as soon as all transactions in the PDBs are either committed or rolled hack.
B、The shutdown proceeds as soon as all transactions in the CDB are either committed or rolled back.
C、The shutdown proceeds as soon as all transactions in both the CDB and PDBs are either committed or rolled back.
D、The statement results in an error because there are open PDBs.