【第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) ROW STORE COMPRESS ADVANCED

B) COLUMN STORE COMPRESS FOR ARCHIVE LOW

C) ROW STORE COMPRESS

D) COLUMN STORE COMPRESS FOR QUERY

Answer:A

(解析:高级压缩,压缩级别高,cpu消耗少,适合OLTP DSS。来自3组:1015267481)

原文地址:https://www.cnblogs.com/cnblogs5359/p/10905886.html

时间: 2024-10-04 20:05:46

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

【第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

【第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

【第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