【第39题】2019年OCP认证12C题库062考试最新考试原题

39题、choose two

  You configured the Fast Recovery Area (FRA) for your database. The database instance is in ARCHIVELOG mode. The default location for the archived redo log files is the FRA.

  Which two files are removed automatically if space is required in the FRA as per the retention policy?

  A) user-managed backups of data files and control files

  B) flashback logs

  C) RMAN backups that are obsolete

  D) archived redo log files that have multiple copies in a different archive location

  Answer:BC

  (解析:闪回区里面的数据如果是rman备份的数据,那么会根据冗余策略自动删除;还有闪回日志的保留时间由db_flashback_retention_target产生指定,如果超过了时间,则会自动删除。来自3组:1015267481)

原文地址:https://blog.51cto.com/13854012/2399432

时间: 2024-08-29 00:04:46

【第39题】2019年OCP认证12C题库062考试最新考试原题的相关文章

【第33题】2019年OCP认证12C题库062考试最新考试原题-33

33.choose four Which four statements are true about the components of the Oracle Scheduler? A) A program and schedule can be specified as part of a job definition. B) A job may get started automatically when a window opens. C) A scheduler job can poi

【第34题】2019年OCP认证12C题库062考试最新考试原题-34

34.choose one You want to create a table, DAILY_ORDERS, for an OLTP application, where data should be compressed during both direct-path INSERT and conventional DML. The table will also be used for queries. Which compression option should be used? A)

【第46题】【062题库】2019年OCP认证062考试新题

46题.choose two Examine this command: SQL> ALTER SYSTEM SET ENABLE_DDL_LOGGING=TRUE; Which two statements are true? A) All DDL statements are logged in to a text file in Automatic Diagnostic Repository (ADR) home. B) The Alert Log still contains some

【第53题】【062题库】2019年OCP认证062考试新题

53题.choose two The HR user executes the following query on the EMPLOYEES table but does not issue COMMIT, ROLLBACK, or any data definition language (DDL) command after that: SQL> SELECT job FROM employees WHERE job='CLERK' FOR UPDATE OF empno; HR the

【第60题】【062题库】2019年OCP认证062考试新题

60题.choose one When does a database checkpoint occur? A) When there is an online redo log switch. B) When the SHUTDOWN ABORT command is issued. C) When a user session terminates abnormally. D) When a server process terminates abnorthally. Answer:A (解

【OCP认证12c题库】CUUG 071题库考试原题及答案(25)

choose the best answer Evaluate the following SQL statement: ALTER TABLE hr.emp SET UNUSED (mgr_id); Which statement is true regarding the effect of the above SQL statement? A) Any views created on the EMP table that include the MGR_ID column would b

【OCP认证12c题库】CUUG 071题库考试原题及答案(26)

26.choose two Examine the structure of the PRODUCTS table. Which two statements are true? A) EXPIRY_DATE always stores date and time in character format B) PRICE can store a maximum of eight digits and two decimals. C) PRODUCT_PIC can store only vide

【OCP认证12c题库】CUUG 071题库考试原题及答案(28)

28.choose the best answer Evaluate the following SQL statement: SQL> SELECT promo_id, promo_category FROM promotions WHERE promo_category = 'Internet' ORDER BY 2 DESC UNION SELECT promo_id, promo_category FROM promotions WHERE promo_category = 'TV' U

【OCP认证12c题库】CUUG 071题库考试原题及答案(27)

27.choose two The SQL statements executed in a user session are as follows: SQL> CREATE TABLE product (pcode NUMBER(2), pname VARCHAR2(10)); SQL> INSERT INTO product VALUES (1, 'pen'); SQL> INSERT INTO product VALUES (2,'pencil'); SQL> SAVEPOI