Which two are true concerning a multitenant container database with three pluggable database、
A.All administration tasks must be done to a specific pluggable database.
B.The pluggable databases increase patching time.
C.The pluggable databases reduce administration effort.
D.The pluggable databases are patched together.
E.Pluggable databases are only used for database consolidation.
试卷相关题目
- 1Examine this command:SQL > exec DBMS_STATS.SET_TABLE_PREFS (‘SH’, ‘CUSTOMERS’, ‘PUBLISH’, ‘false’);Which three statements are true about the effect of this command、
A.Statistics collection is not done for the CUSTOMERS table when schema stats are gathered.
B.Statistics collection is not done for the CUSTOMERS table when database stats are gathered.
C.Any existing statistics for the CUSTOMERS table are still available to the optimizer at parse time.
D.B.Statistics collection is not done for the CUSTOMERS table when database stats are gathered.C.Any existing statistics for the CUSTOMERS table are still available to the optimizer at parse tim
E.D.Statistics gathered on the CUSTOMERS table when schema stats are gathered are stored as pendingE.Statistics gathered on the CUSTOMERS table when database stats are gathered are stored as pending statistics.
开始考试点击查看答案 - 2In a recent Automatic Workload Repository (AWR) report for your database, you notice a high number of buffer busy waits. The database consists of locally managed tablespaces with free list managed segments.On further investigation, you find that buffer busy waits is caused by contention on data blocks.Which option would you consider first to decrease the wait event immediately、
A.Decreasing PCTUSED
B.Decreasing PCTFREE
C.Increasing the number of DBWN process
D.Using Automatic Segment Space Management (ASSM)
E.Increasing db_buffer_cache based on the V$DB_CACHE_ADVICE recommendation
开始考试点击查看答案 - 3The following parameter are set for your Oracle 12c database instance:OPTIMIZER_CAPTURE_SQL_PLAN_BASELINES=FALSEOPTIMIZER_USE_SQL_PLAN_BASELINES=TRUEYou want to manage the SQL plan evolution task manually. Examine the following steps:1. Set the evolve task parameters.2. Create the evolve task by using the DBMS_SPM.CREATE_EVOLVE_TASK function.3. Implement the recommendations in the task by using theDBMS_SPM.IMPLEMENT_EVOLVE_TASK function.4. Execute the evolve task by using the DBMS_SPM.EXECUTE_EVOLVE_TASK function.5. Report the task outcome by using the DBMS_SPM.REPORT_EVOLVE_TASK function.Identify the correct sequence of steps:
A.2, 4, 5
B.2, 1, 4, 3, 5
C.1, 2, 3, 4, 5
D.1, 2, 4, 5
开始考试点击查看答案 - 4Your database supports a DSS workload that involves the execution of complex queries: Currently, the library cache contains the ideal workload for analysis. You want to analyze some of the queries for an application that are cached in the library cache.What must you do to receive recommendations about the efficient use of indexes and materialized views to improve query performance、
A.Create a SQL Tuning Set (STS) that contains the queries cached in the library cache and run the SQL Tuning Advisor (STA) on the workload captured in the STS.
B.Run the Automatic Workload Repository Monitor (ADDM).
C.Create an STS that contains the queries cached in the library cache and run the SQL Performance Analyzer (SPA) on the workload captured in the STS.
D.Create an STS that contains the queries cached in the library cache and run the SQL Access Advisor on the workload captured in the STS.
开始考试点击查看答案 - 5Identify two valid options for adding a pluggable database (PDB) to an existing multitenant container database (CDB).
A.Use the CREATE PLUGGABLE DATABASE statement to create a PDB using the files from the SEED.
B.Use the CREATE DATABASE . . . ENABLE PLUGGABLE DATABASE statement to provision a PDB by copying file from the SEED.
C.Use the DBMS_PDB package to clone an existing PDB.
D.B.Use the CREATE DATABASE . . . ENABLE PLUGGABLE DATABASE statement to provision a PDB by copying file from the SEED.C.Use the DBMS_PDB package to clone an existing PDB.D.Use the DBMS_PDB package to plug an Oracle 12c non-CDB database into an existing CDB.
E.Use the DBMS_PDB package to plug an Oracle 11 g Release 2 (11.2.0.3.0) non-CDB database into an existing CDB.
开始考试点击查看答案 - 6Examine the current value for the following parameters in your database instance:SGA_MAX_SIZE = 1024MSGA_TARGET = 700MDB_8K_CACHE_SIZE = 124MLOG_BUFFER = 200MYou issue the following command to increase the value of DB_8K_CACHE_SIZE:SQL> ALTER SYSTEM SET DB_8K_CACHE_SIZE=140M;Which statement is true、
A.It fails because the DB_8K_CACHE_SIZE parameter cannot be changed dynamically.
B.It succeeds only if memory is available from the autotuned components if SGA.
C.It fails because an increase in DB_8K_CACHE_SIZE cannot be accommodated within SGA_TARGET.
D.It fails because an increase in DB_8K_CACHE_SIZE cannot be accommodated within SGA_MAX_SIZ
开始考试点击查看答案 - 7Which three statements are true concerning unplugging a pluggable database (PDB)、
A.The PDB must be open in read only mode.
B.The PDB must be dosed.
C.The unplugged PDB becomes a non-CDB.
D.C.The unplugged PDB becomes a non-CDB.D.The unplugged PDB can be plugged into the same multitenant container database (CDB)
E.B.The PDB must be dosed.C.The unplugged PDB becomes a non-CDB.D.The unplugged PDB can be plugged into the same multitenant container database (CDB)E.The unplugged PDB can be plugged into another CDB.
F.The PDB data files are automatically removed from disk.
开始考试点击查看答案 - 8Examine the following command:CREATE TABLE (prod_id number(4),Prod_name varchar2 (20),Category_id number(30),Quantity_on_hand number (3) INVISIBLE);Which three statements are true about using an invisible column in the PRODUCTS table、
A.The %ROWTYPE attribute declarations in PL/SQL to access a row will not display the invisible column in the output.
B.The DESCRIBE commands in SQL *Plus will not display the invisible column in the output.
C.Referential integrity constraint cannot be set on the invisible column.
D.The invisible column cannot be made visible and can only be marked as unused.
E.A primary key constraint can be added on the invisible column.
开始考试点击查看答案 - 9You wish to enable an audit policy for all database users, except SYS, SYSTEM, and SCOTT.You issue the following statements:SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYS;SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SYSTEM;SQL> AUDIT POLICY ORA_DATABASE_PARAMETER EXCEPT SCOTT;For which database users is the audit policy now active、
A.All users except SYS
B.All users except SCOTT
C.All users except sys and SCOTT
D.All users except sys, system, and SCOTT
开始考试点击查看答案 - 10On your Oracle 12c database, you invoked SQL *Loader to load data into the EMPLOYEES table in the HR schema by issuing the following command:$> sqlldr hr/hr@pdb table=employeesWhich two statements are true regarding the command、
A.It succeeds with default settings if the EMPLOYEES table belonging to HR is already defined in the database.
B.It fails because no SQL *Loader data file location is specified.
C.It fails if the HR user does not have the CREATE ANY DIRECTORY privilege.
D.C.It fails if the HR user does not have the CREATE ANY DIRECTORY privileg
E.D.It fails because no SQL *Loader control file location is specified.
开始考试点击查看答案
最新试卷
注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它注册安全工程师注册安全工程师安全生产技术2014年安全工程师
类别:建筑类其它