View the Exhibit to examine the output produced by the following query at three different times since thedatabase instance started and has experienced workloads of different capacities:SQL> SELECT substr(component, 0, 10) COMP, current_size CS, user_speci

题目

View the Exhibit to examine the output produced by the following query at three different times since thedatabase instance started and has experienced workloads of different capacities:SQL> SELECT substr(component, 0, 10) COMP, current_size CS, user_specified_size US FROM v$memory_dynamic_componentsWHERE current_size!=0;What do you infer from this()

  • A、The database instance is running with manual PGA management.
  • B、The database instance is running with manual shared memory management.
  • C、The database instance has the MEMORY_TARGET value set to a nonzero value.
  • D、All sessions are connected to the database instance in dedicated mode, and no RMAN or parallel queryoperations have been performed

相似考题
更多“View the Exhibit to examine the output produced by the following query at three different times since thedatabase instance started and has experienced workloads of different capacities:SQL SELECT substr(component, 0, 10) COMP, current_size CS, user_specif”相关问题
  • 第1题:

    View the Exhibit to examine the Automatic SQL Tuning result details.Which action would you suggest for the selected SQL statement in the Exhibit?()

    A. Accept the recommended SQL profile.

    B.Collect statistics for the related objects.

    C. Run the Access Advisor for the SQL statement.

    D. Run the Segment Advisor for recommendations.


    参考答案:C

  • 第2题:

    Examine the data from the ORDERS and CUSTOMERS tables.Evaluate the SQL statement:What is the result when the query is executed?()

    A.

    B.

    C.

    D. The query fails because the subquery returns more than one row.

    E. The query fails because the outer query and the inner query are using different tables.


    参考答案:D

  • 第3题:

    Examine the parameter for your database instance: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: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.


    参考答案:B

  • 第4题:

    Examine the following output: SQL> SELECT index_name,status FROM dba_indexes WHERE status=’UNUSABLE’; INDEX_NAME STATUS------------------------------ ----------- EIND UNUSABLE Which two statements about the above index are true()

    • A、It is ignored by the query optimizer.
    • B、It is not used while the index is being rebuilt.
    • C、The index cannot be rebuilt, and has to be re-created.
    • D、The index is automatically rebuilt when used the next time

    正确答案:A,B

  • 第5题:

    Examine the parameter for your database instance: 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: 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.

    正确答案:B

  • 第6题:

    As the DBA, you run the following query on your ASM instance. What is the implication of the results of the query?() SQL> select group_number, name, state from v$ASM_DISKGROUP;  GROUP_NUMBER NAME STATE  0 DGROUP1 DISMOUNTED  2 DGROUP2 MOUNTED  3 DGROUP3 MOUNTED  

    • A、 The DGROUP1 disk group was unmounted by another DBA.
    • B、 A datafile has been lost, causing the ASM disk group DGROUP1 to go into the DISMOUNTED state
    • C、 One of the redundant disks (DGROUP1) has been lost in a disk group.
    • D、 This query has no meaning in an ASM instance.
    • E、 A disk associated with a disk group was discovered after the ASM instance initially opened.

    正确答案:A,E

  • 第7题:

    A database user SMITH tries to query the V$SESSION view and fails to access it as follows: SQL> connect smith/smith  Connected.  SQL> SELECT * FROM v$session;  SELECT * FROM v$session *  ERROR at line 1:  ORA-00942: table or view does not exist  Which are the two possible solutions to enable SMITH to query the data in V$SESSION()

    • A、granting SELECT privilege to SMITH on V$SESSION
    • B、granting SELECT privilege to SMITH on V_$SESSION
    • C、asking the user SMITH to run the catalog.sql script
    • D、granting SELECT privilege to SMITH on V$FIXED_TABLES
    • E、setting the O7_DICTIONARY_ACCESSIBILITY parameter to TRUE
    • F、creating a view based on V$SESSION and granting SELECT privilege to SMITH on the view that was created

    正确答案:B,F

  • 第8题:

    Oracle Grid Infrastructure for a stand-alone server is installed on your production host before installing the Oracle Database server. The database and listener are configured by using Oracle Restart. Examine the following command and its output: $ crsctl config has CRS-4622: Oracle High Availability Services auto start is enabled. What does this imply?()

    • A、When you start an instance on a high with SQL *Plus dependent listeners and ASM disk groups are automatically started.
    • B、When a database instance is started by using the SRVCTL utility and listener startup fails, the instance is still started.
    • C、When a database is created by using SQL* Plus, it is automatically added to the Oracle Restart configuration.
    • D、When you create a database service by modifying the SERVICE_NAMES initialization parameter, it is automatically added to the Oracle Restart configuration.

    正确答案:A

  • 第9题:

    单选题
    View the Exhibit and examine the details of the EMPLOYEES table.  The query was written to format the PHONE_NUMBER for the employees.   Which option would be the correct format in the output?()
    A

     xxx-xxx-xxxx

    B

     (xxx) xxxxxxx

    C

     (xxx) xxx-xxxx

    D

     xxx-(xxx)-xxxx


    正确答案: D
    解析: 暂无解析

  • 第10题:

    单选题
    View the Exhibit and examine the output. You execute the following RMAN command to perform the backup operation:   RMAN> RUN { ALLOCATE CHANNEL c1 DEVICE TYPE disk MAXOPENFILES 8; BACKUP DATABASE FILESPERSET 4; }   What is the multiplexing level in the preceding backup process?()
    A

     4

    B

     8

    C

     7

    D

     0


    正确答案: A
    解析: 暂无解析

  • 第11题:

    单选题
    A user named Arren is executing this query:   select table_name,operation,undo_sql  from  flashback_transaction_query t,  (select versions_xid as xid  from employees versions between scn minvalue and maxvalue  where employee_id = 123) e  where t.xid = e.xid;   When the query runs,he receives an ORA-01031: insufficient privileges error. Since the user owns the employees table,you know that it is not the problem.  Which of the following SQL statements will correct this problem?()
    A

     GRANT SELECT ANY TRANSACTION TO ARREN

    B

     GRANT SELECT ON FLASHBACK_TRANSACTION_QUERY TO ARREN

    C

     GRANT SELECT_ANY_TRANSACTION TO ARREN

    D

     GRANT FLASHBACK TO ARREN

    E

     GRANT SELECT ANY VIEW TO ARREN


    正确答案: B
    解析: 暂无解析

  • 第12题:

    单选题
    To examine the Exhibit, press the Exhibit button. Using the "ps -mo THREAD" output as shown in the exhibit, which of the following conclusions is most appropriate to draw?()
    A

     This is a uniprocessor system

    B

     The "prog" process has a nice value of 107

    C

     There are two active processors on this system

    D

     The "prog" process will only be scheduled to run on processor 0


    正确答案: D
    解析: 暂无解析

  • 第13题:

    View the Exhibit exhibit1 to examine the series of SQL commands. View the Exhibit exhibit2 to examine the plans available in the SQL plan baseline. The baseline in the first row of the Exhibit is created when OPTIMIZER_MODE was set to FIRST_ROWS.Which statement is true if the SQL query in exhibit1 is executed again when the valueof OPTIMIZER_MODE is set to FIRST_ROWS?()

    A. The optimizer uses a new plan because none of the plans in the exhibit2 are fixed plans.

    B. The optimizer uses the plan in the second row of the exhibit2 because it is an accepted plan.

    C. The optimizer uses the plan in the first row of the exhibit2 because it is the latest generated plan.

    D. The optimizer uses the plan in the first row of the exhibit2 because OPTIMIZER_MODE was set to FIRST_ROW during its creation.


    参考答案:B

  • 第14题:

    Examine the following commands and their output:View the exhibit and examine the Flashback Version Query that was executed after the preceding commands.What could be the possible cause for the query not displaying any row?()

    A. Flashback logging is not enabled for the database.

    B. The changes made to the table are not committed.

    C. Supplemental logging is not enabled for the database.

    D. The database is not configured in ARCHIVELOG mode.


    参考答案:B

  • 第15题:

    Click the Exhibit button and examine the data from the ORDERS and CUSTOMERS tables.Evaluate the SQL statement:SELECT *FROM ordersWHERE cust_id = (SELECT cust_idFROM customersWHERE cust_name = ‘Smith‘);What is the result when the query is executed?()

    A.A

    B.B

    C.C

    D.D

    E.E


    参考答案:A

  • 第16题:

    Which three features work together, to allow a SQL statement to have different cursors for the samestatement based on different selectivity ranges?()

    • A、Bind Variable Peeking
    • B、SQL Plan Baselines
    • C、Adaptive Cursor Sharing
    • D、Bind variable used in a SQL statement
    • E、Literals in a SQL statement

    正确答案:A,C,E

  • 第17题:

    View the Exhibit to examine the output of the DBA_OUTSTANDING_ALERTS view. After 30 minutes, you executed the following command:  SQL> SELECT reason,metric_value FROM dba_outstanding_alerts; REASON         METRIC_VALUE  ------------------------------------------------------------  ------------  Tablespace [TEST] is [28 percent]full  28.125  What could be the reason for the elimination of the other rows in the output()

    • A、An Automatic Workload Repository snapshot has been taken recently.
    • B、The non-threshold-based alerts are transferred to DBA_ALERT_HISTORY.
    • C、The threshold alerts conditions are cleared and the alerts are transferred to DBA_ALERT_HISTORY.
    • D、The threshold alerts related to database metrics are permanently stored in DBA_ALERT_HISTORY but not the threshold alerts related to instance metrics.

    正确答案:C

  • 第18题:

    View the Exhibit and examine the output of the query in different times when the following command runs in an RMAN sessions: RMAN> BACKUP DATABASE FILESPERSET 2; The database has seven data files. Why is the %_COMPLETE refreshed to 13.59 in the third output after reaching 88.77?()

    • A、Because the progress is reported for each data file
    • B、Because the progress is reported for each backup set
    • C、Because other RMAN sessions have issued the same BACKUP command
    • D、Because new data files have been added to the database while the RMAN backup is in progress

    正确答案:B

  • 第19题:

    View the Exhibit and examine the output. You execute the following RMAN command to perform the backup operation:   RMAN> RUN { ALLOCATE CHANNEL c1 DEVICE TYPE disk MAXOPENFILES 8; BACKUP DATABASE FILESPERSET 4; }   What is the multiplexing level in the preceding backup process?()

    • A、 4
    • B、 8
    • C、 7
    • D、 0

    正确答案:A

  • 第20题:

    多选题
    Examine the following output: SQL> SELECT index_name,status FROM dba_indexes WHERE status=’UNUSABLE’; INDEX_NAME STATUS------------------------------ ----------- EIND UNUSABLE Which two statements about the above index are true()
    A

    It is ignored by the query optimizer.

    B

    It is not used while the index is being rebuilt.

    C

    The index cannot be rebuilt, and has to be re-created.

    D

    The index is automatically rebuilt when used the next time


    正确答案: B,C
    解析: 暂无解析

  • 第21题:

    单选题
    View the Exhibit and examine the Flashback Database architecture.  Identify the missing component (shown with a "?") in the Flashback Database architecture.()
    A

    DBWn

    B

    RVWR

    C

    ARCH

    D

    RECO

    E

    TRWR


    正确答案: A
    解析: 暂无解析

  • 第22题:

    单选题
    View the Exhibit to examine the output of the DBA_OUTSTANDING_ALERTS view. After 30 minutes, you executed the following command:  SQL> SELECT reason,metric_value FROM dba_outstanding_alerts; REASON         METRIC_VALUE  ------------------------------------------------------------  ------------  Tablespace [TEST] is [28 percent]full  28.125  What could be the reason for the elimination of the other rows in the output()
    A

    An Automatic Workload Repository snapshot has been taken recently.

    B

    The non-threshold-based alerts are transferred to DBA_ALERT_HISTORY.

    C

    The threshold alerts conditions are cleared and the alerts are transferred to DBA_ALERT_HISTORY.

    D

    The threshold alerts related to database metrics are permanently stored in DBA_ALERT_HISTORY but not the threshold alerts related to instance metrics.


    正确答案: B
    解析: 暂无解析

  • 第23题:

    单选题
    EXHIBIT, Emp Table Exhibit A Exhibit B Examine the data from the EMP table. Evaluate this SQL statement: SELECT * FROM emp WHERE emp _ id = 3); WHERE commission = (SELECT commission FROM emp What is the result when the query is executed?()
    A

    Exhibit A

    B

    Exhibit B 

    C

    The query returns no rows 

    D

    The query fails because the outer query is retrieving more than one column

    E

    The query fails because both the inner and outer queries are retrieving data from the same table.


    正确答案: C
    解析: 暂无解析