OCP-1Z0-053-V13.02-144题

AI权益加码!Claude Code、Cursor等20+工具免费用! 购周边限时加赠Coding Plan Lite,畅享主流AI工具!学习进阶更高效! 阅读详情

144.In your database, the RESULT_CACHE_MODE parameter has been set to MANUAL in the

initialization parameter file. You issued the following command:

SQL>SELECT /*+ RESULT_CACHE */ sale_category, sum(sale_amt)

FROM sales

GROUP BY sale_category;

Where would the result of this query be stored?

A. database buffer cache

B. shared pool

C. PGA

D. large pool

Answer: B

答案解析:

RESULT_CACHE_MODE specifies when a ResultCache operator is spliced into a query's execution plan.

Values:

  • MANUAL

    The ResultCache operator is added only when the query is annotated (that is, hints).

  • FORCE

    The ResultCache operator is added to the root of all SELECT statements (provided that it is valid to do so).



    Shared Pool Concepts

    The main components of the shared pool are the library cache, the dictionary cache, and, depending on your configuration, the server result cache. The library cache stores the executable (parsed or compiled) form of recently referenced SQL and PL/SQL code. The dictionary cache stores data referenced from the data dictionary. The server result cache stores the results of queries and PL/SQL function results.

    Many of the caches in the shared pool automatically increase or decrease in size, as needed, including the library cache and the dictionary cache. Old entries are aged out to accommodate new entries when the shared pool does not have free space.

    A cache miss on the data dictionary cache or library cache is more expensive than a miss on the buffer cache. For this reason, the shared pool should be sized to ensure that frequently used data is cached.

    Several features make large memory allocations in the shared pool: for example, the shared server, parallel query, or Recovery Manager. Oracle recommends segregating the SGA memory used by these features by configuring a distinct memory area, called the large pool.

    Allocation of memory from the shared pool is performed in chunks. This chunking enables large objects (over 5 KB) to be loaded into the cache without requiring a single contiguous area. In this way, the database reduces the possibility of running out of enough contiguous memory due to fragmentation.

    Infrequently, Java, PL/SQL, or SQL cursors may make allocations out of the shared pool that are larger than 5 KB. To allow these allocations to occur most efficiently, Oracle Database segregates a small amount of the shared pool. This memory is used if the shared pool does not have enough space. The segregated area of the shared pool is called the reserved pool.


oracle11g OCP 认证 1Z0-053考试笔记3 202.In which two aspects 方面 does hot patching 热补丁differ from conventional常规的 patching? (Choose two.) A. It consumes more memory compared with conventional patching 与常规补丁比较消耗更多的内存 D. It does not req 阅读详情

相关推荐

OCP12C库,62数据库备份与恢复(admin,install and upgrade accelerated, backup and recovery workshop -62)(新增)

01 which two statements are ture about using SQLLoader? 关于使用SQLLoader,哪两条语句是正确的 A、it can generate unique sequential key values in sppecified columns 它可以在指定的列中生成惟一的顺序键值 E、it can load data into multiple tables using the same load statement 它可以使用相同的load语句将数据.

Reyn_观极 1741

11g新特性:result cache 结果缓存

result cache是oracle 11g新推出的特性,通过把查询结果还存在内存中来提高查询性能。缓存分为clinet和server端缓存。本文主要讨论server端缓存。serverresult cache是shared pool的内存的一部分。结果缓存更适合于数据变化不频繁的系统,例如OLAP。简单原理如下:当sql执行时,数据库先去result cache去查找相关结果;当结果相关的对...

数据库天地 374

2026年最新郴州市公交线路矢量数据.zip

数据格式:shp 数据坐标:GCJ02 数据更新时间:2026年9月 公交线路来源:8684网站 https://8684.com.cn/ 站点数据来源:高德API接口 数据打开方式:QGIS或Arcgis 站点数据字段:名称、序号、对应线路、几何信息 线路数据字段:名称、类型、起点、终点、开始时间、结束时间、起步价、全价、长度、公司、几何信息

1Z0-051 QUESTION 37 关于drop table

37. You issued the following command to drop the PRODUCTS table:  SQL> DROP TABLE products;  What is the implication of this command? (Choose all that apply.)  A. All data along with the table stru

create_oracle的专栏 851

053 144 / 206 - result cache

目: 144.In your database, the RESULT_CACHE_MODE parameter has been set to MANUAL in the initialization parameter file. You issued the following command: SQL>SELECT /*+ RESULT_CACHE */ sale_categor...

文档搬运工 490

ocp-144

QUESTION NO: 144 Your database is in NOARCHIVELOG mode. You start to do a backup, but your users complain that they don‘t want you to shut down the database to perform the backup. What options are av

jiayue's BLOG 1078

IS31FL3731与MKV42F256VLH16的LED矩阵控制技术详解

LED驱动技术是嵌入式系统中的重要组成部分,通过I2C接口实现高效通信。IS31FL3731作为专业LED驱动芯片,支持144个LED的独立控制,结合MKV42F256VLH16微控制器的强大处理能力,可构建高性能的灯光控制系统。该方案采用硬件PWM调光和256级亮度控制,能够实现流畅的动画效果和复杂的视觉表现。在音频可视化、三维动画等应用场景中,这套硬件组合展现出卓越的性能。通过优化I2C通信协议和使用DMA传输,系统帧率可提升至60fps,同时显著降低CPU负载。

cmff98425的博客 425

data dictionary cache 命中率

如果 shared pool 设置过小,那么 data dictionary cache 也会相应的过小,没有足够的空间存储ORACLE的系统数据字典信息,从而导致ORACLE需要从硬盘读取数据字典信息,我们查看执行计划的时候看到的recursive calls就是代表的是从磁盘读取数据字典的次数。SQL> select count(*) from dba_source;  COUNT(*

落落的专栏 专注SQL调优 性能调优 4230

042详解 51-100

51. You have a large amount of historical data in an operating system file. Some analysts in your organization need to query this data. The file is too large to load into your current database. Whic

Saming study ORACLE 2968

ocp 认证 043

分卷:A 1: 单选 Your database is open and running in ARCHIVELOG mode. You take RMAN full backups every Sunday night. On Monday morning, while querying the user1.employees table, you receive the follow

wolf 4751

oracle11g OCP 认证 1z0-052考试笔记1

1 32.You perform differential incremental level 1 backups of your database on each working day and level 0 backup on Sundays. Which two statements are true about the differential incremental backups?

wlbzy的专栏 4260

oracle11g OCP 认证 1Z0-053考试笔记1

1. While deploying a new application module, the software vendor ships the application software along with appropriate SQL plan baselines for the new SQLs being introduced. Which two statements descri

wlbzy的专栏 9097

oracle11g OCP 认证 1Z0-053考试笔记2

102.Examine the following values of the initialization parameters in the database having the SID ORCL: BACKGROUND_DUMP_DEST=/u01/app/oracle/product/11.1.0/db_1/bdump USER_DUMP_DEST=/u01/app/oracle/p

wlbzy的专栏 1万+

Oracle OCP 1z0-052 2018年9月最新考过的库分享-1

1.Which three statements are true about temporary tables? A) DML on temporary tables may be rolled back B) Their rows are always lost when a transaction commits C) Their rows are not lost when a sess...

技术=勤奋+思考 5971

ORACLE-1Z0-060库(Upgrade to Oracle Database 12c)

**Exam 1z0-060 Upgrade to Oracle Database 12c Version: 8.6 [ Total Questions: 150 ] Your multitenant container (CDB) contains two pluggable databases (PDB), HR_PDB and ACCOUNTS_PDB, both of which use ...

白非马的博客 1万+

1z0-071 Oracle Database 12c SQL 第11 DROP语句

Q11. You issue the following command to drop the PRODUCTS table:SQL > DROP TABLE products;Which three statements are true about the implication of this command?A. All data in the table is deleted b...

点滴的幸福 1566

Oracle OCP 1z0-052 2018年9月最新考过的库分享-3

1. Which four statements are true about truncating a table? A) Any insert triggers for the table will be executed. B) Any of the table’s indexes are also truncated. C) Any delete triggers for the tabl...

技术=勤奋+思考 1万+

OCP-1Z0-051-V9.02-44

44. View the Exhibit and examine the structure of the ORD table. Evaluate the following SQL statements that are executed in a user session in the specified order: CREATE SEQUENCE ord_seq; SELECT or

一抹曦阳-Oracle 8562

安卓开发adt 64位22.x版本 .zip

适用于大学生课程开发安卓,eclipse-adt 集成版,adt-bundle-windows-x86_64-20140321 内置android 4.4

上一篇: OCP-1Z0-053-V13.02-141题
下一篇: OCP-1Z0-053-V13.02-168题
Riveore
博客等级 码龄19年 1801粉丝 1432原创
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值