Result_cache question

Dear all,

I was trying to understand the effect of the result_cache in the SQL query.

I did the following things.

EXPLAIN PLAN SET STATEMENT_ID = 'PLSQL_CACHE'
    FOR
    SELECT /*+ RESULT_CACHE */ * from vin_master;

SELECT * FROM   TABLE(DBMS_XPLAN.DISPLAY(null,'PLSQL_CACHE'));

SQL> SELECT * FROM   TABLE(DBMS_XPLAN.DISPLAY(null,'PLSQL_CACHE'));
PLAN_TABLE_OUTPUT
----------------------------------------------------------------------------------------------------
---------------------------------------------------------------------------------
| Id  | Operation          | Name                       | Rows  | Bytes | Cost  |
---------------------------------------------------------------------------------
|   0 | SELECT STATEMENT   |                            |   944 | 93456 |     7 |
|   1 |  RESULT CACHE      | 8rrag6u2pmgqr0ksybg1m1rsns |       |       |       |
|   2 |   TABLE ACCESS FULL| VIN_MASTER                 |   944 | 93456 |     7 |
---------------------------------------------------------------------------------
Result Cache Information (identified by operation id):
------------------------------------------------------
PLAN_TABLE_OUTPUT
----------------------------------------------------------------------------------------------------
   1 - column-count=27; dependencies=(STARNET.VIN_MASTER); name="SELECT /*+ RESULT_CACHE */ * from v
Note
-----
   - 'PLAN_TABLE' is old version
17 rows selected.


After that, I did the following.

EXPLAIN PLAN SET STATEMENT_ID='PL_RESULT_CACHE'
FOR
select vin_no from vin_master;

SQL> EXPLAIN PLAN SET STATEMENT_ID='PL_RESULT_CACHE'
  2  FOR
  3  select vin_no from vin_master;
Explained.
SQL> select * from table(dbms_xplan.display(NULL,'PL_RESULT_CACHE'));
PLAN_TABLE_OUTPUT
------------------------------------------------------------------------------------------
-----------------------------------------------------------------
| Id  | Operation        | Name         | Rows  | Bytes | Cost  |
-----------------------------------------------------------------
|   0 | SELECT STATEMENT |              |   944 | 16048 |     3 |
|   1 |  INDEX FULL SCAN | VM_BY_VIN_NO |   944 | 16048 |     3 |
-----------------------------------------------------------------
Note
-----
   - 'PLAN_TABLE' is old version
11 rows selected.

Now my question is same the entire table is store within the result_cache why the system is hitting the table instead of the buffer result_cache.

After that, I did the next step.


EXPLAIN PLAN SET STATEMENT_ID='PL_RESULT_CACHE2'
FOR
select/*+ RESULT_CACHE */ vin_no from vin_master;
select * from TABLE(DBMS_XPLAN.DISPLAY(NULL,'PL_RESULT_CACHE2'));

SQL> select * from table(dbms_xplan.display(NULL,'PL_RESULT_CACHE2'));
PLAN_TABLE_OUTPUT
----------------------------------------------------------------------------------------------------
-------------------------------------------------------------------------------
| Id  | Operation        | Name                       | Rows  | Bytes | Cost  |
-------------------------------------------------------------------------------
|   0 | SELECT STATEMENT |                            |   944 | 16048 |     3 |
|   1 |  RESULT CACHE    | gncrwcg31pvzrgz6vpn31jj2x8 |       |       |       |
|   2 |   INDEX FULL SCAN| VM_BY_VIN_NO               |   944 | 16048 |     3 |
-------------------------------------------------------------------------------
Result Cache Information (identified by operation id):
------------------------------------------------------
PLAN_TABLE_OUTPUT
----------------------------------------------------------------------------------------------------
   1 - column-count=1; dependencies=(STARNET.VIN_MASTER); attributes=(ordered); name="select/*+ RESU
Note
-----
   - 'PLAN_TABLE' is old version
17 rows selected.

My next question is why do I need to add result_cache tip each time to retrieve the data from the buffer. The name of the result_cache is also different gncrwcg31pvzrgz6vpn31jj2x8 and 8rrag6u2pmgqr0ksybg1m1rsns.

Concerning

Rajat

Hello

(1) how did you know that he used the table?

the first run, it loads the result in memory cache result the second time, he did this, she receives the result of the query in the cache.

The execution plan indicates the access table, but he did not show if the second time he consulted the table or not.

(2) you don't have the same cache id because the two queries are not the same.

create table emp (identification number, name varchar2 (10));

insert into emp values (1, 'Name1');

insert into emp values (2, 'Name1');

insert into emp values (3, 'NAME3');

SELECT / * + result_cache * / * FROM EMP;

SELECT / * + result_cache * / ID FROM EMP;

You can check the view v$ result_cache_objects for more details.

Thank you

Cherif.

Tags: Database

Similar Questions

  • What is the problem with the following result_cache indicator?

    Hi all
    I try to use result_cache suspicion in the following sql aggregate function declaration, but the plan of the explain command shows no difference between non-result_cached and with result_cached:
    SQL> set autot on explain stat
    SQL> select account_mgr_id,count(*) from customers group by account_mgr_id;
    
    ACCOUNT_MGR_ID      COUNT(*)
    -------------- ----------
            147            76
            149            74
            148            58
            145           111
    
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 1577413243
    
    --------------------------------------------------------------------------------
    | Id  | Operation        | Name      | Rows  | Bytes | Cost (%CPU)| Time     |
    --------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT   |            |     4 |    16 |     6     (17)| 00:00:01 |
    |   1 |  HASH GROUP BY        |            |     4 |    16 |     6     (17)| 00:00:01 |
    |   2 |   TABLE ACCESS FULL| CUSTOMERS |   319 |  1276 |     5      (0)| 00:00:01 |
    --------------------------------------------------------------------------------
    
    
    Statistics
    ----------------------------------------------------------
           0  recursive calls
           0  db block gets
          16  consistent gets
           0  physical reads
           0  redo size
         689  bytes sent via SQL*Net to client
         524  bytes received via SQL*Net from client
           2  SQL*Net roundtrips to/from client
           0  sorts (memory)
           0  sorts (disk)
           4  rows processed
    
    SQL> select /*+ result_cache */ account_mgr_id,count(*) from customers group by account_mgr_id;
    
    ACCOUNT_MGR_ID      COUNT(*)
    -------------- ----------
            147            76
            149            74
            148            58
            145           111
    
    
    Execution Plan
    ----------------------------------------------------------
    Plan hash value: 1577413243
    
    --------------------------------------------------------------------------------------------------
    | Id  | Operation         | Name                | Rows  | Bytes | Cost (%CPU)| Time      |
    --------------------------------------------------------------------------------------------------
    |   0 | SELECT STATEMENT    |                     |     4 |    16 |     6  (17)| 00:00:01 |
    |   1 |  RESULT CACHE         | 3s3bugtq0p5bm71mhmqvvw0x7y |      |      |           |       |
    |   2 |   HASH GROUP BY     |                     |     4 |    16 |     6  (17)| 00:00:01 |
    |   3 |    TABLE ACCESS FULL| CUSTOMERS            |   319 |  1276 |     5   (0)| 00:00:01 |
    --------------------------------------------------------------------------------------------------
    
    Result Cache Information (identified by operation id):
    ------------------------------------------------------
    
       1 - column-count=2; dependencies=(OE.CUSTOMERS); name="select /*+ result_cache */ account_mgr_id,
    count(*) from customers group by account_mgr_id"
    
    
    
    Statistics
    ----------------------------------------------------------
           1  recursive calls
           0  db block gets
          16  consistent gets
           0  physical reads
           0  redo size
         689  bytes sent via SQL*Net to client
         524  bytes received via SQL*Net from client
           2  SQL*Net roundtrips to/from client
           0  sorts (memory)
           0  sorts (disk)
           4  rows processed
    Something wrong with suspicion?

    Best regards
    Val

    DOM was accurate, but in my own words...

    There are processes running on the database server who read physical and load files for Oracle data then logically read and send your request. These physical processes can data caching and replenish again if the same physical data are required by a subsequent call to the same query or similar queries accessing data. This is shown on your plan of execution as the physical i/o. In your plans, it was zero both times, showing that you had already questioned this data before the examples as you were shown. Data read logically are shown as the IO logic and which usually occurs every time that you run the query.

    Result cache, tells Oracle to store the data read by logical reading in the pool of shared memory, because you plan to run the same query again and use the same exact data. This cut should logically read data again once, as it's already been read and ready to the query to use.

    As Dom, it may have advantages in certain situations, but read the documentation around it because there are a lot of everyday things that will prevent it from happening, such as the use of a sequence in the query, etc..

  • iOS 10 people record problem/question

    Hello

    I have a couple of "faces" in the issue of people who are coming in white, but acknowledged same 'face' of many times.  Is anyway to update it for photo comes actually?  At a few faces, I don't know that facial recognition found since it is coming from white.

    Hi JohnP007,

    Congratulations on your iPhone 7 more running iOS 10! I understand that some of your faces in the album of people pull up as a draft and you want to refresh. You can try to use the steps below to fix the faces on the thumbnails in albums.

    Difficulty faces and names mixed-up

    If you notice that there is a photo of someone in a collection that is poorly identified, you can remove it.

    1. Tap the person you want to remove in the album of people > select.
    2. Type Show done face to emphasize his face in every photo.
    3. Press on each photo that is not the person.
    4. Type > not this person.

    Hide people

    You can hide the people or groups that you don't want in your album of people.

    1. Open the album people and press Select.
    2. Touch the people you don't want to see.
    3. Click Hide.

    If you want to see the people that you have hidden, press on show hidden people.

    People in the Photos on your iPhone, iPad or iPod touch

    This should be corrected without delay faces. Please use the Apple Support communities to post your question. Good day.

  • Questions - and answers forgotten

    How to get my 'secret' answers to the questions that I have noted the way back when?

    If you forgot the answers to your questions of security of Apple ID - Apple Support

  • I can't reset the security questions. We received notice as below:

    Hello world

    I can't reset the security questions. We received notice as below:

    "Cannot reset Security Questions."

    We have insufficient information to reset your security questions. "

    Please help me as soon as possible! Thank you very much.

    Hello

    You will need to contact the Apple Support.

    The information is available here:

    Contact Apple for assistance with the security of the Apple ID - Apple Support accounts

    (I'm afraid that no one here can solve the problem for you - this is a user-based community).

  • Question of cloning for SSD upgrade on 12 Macbook Pro

    Previously, I did an upgrade to SSD on my Macbook Air to 2012 according to the instructions of JetDrive transcend. Basically connection via USB 3 and using Mac OS X to clear (and format) disc utilities new SSD, then restore again SSD and then remove the original 128 GB SSD and insert the new 480 GB SSD.  For about a month and so far without problem.

    Now I'm trying to 2012 Macbook upgrade my Pro partner (on 10.11.6).  I got a Crucial SSD MX300 to replace his HARD drive.  Crucial comes with (or recommend) Acronis software.  And a lot of the messages of the forum recommend Carbon Copy Clone.

    My question is if I can use the same method for the cloning of the HD as my Macbook Air (just restore disk of Mac OS X utilities)?  This time, I'm upgrading HARD drive and I don't know if something is different.  At the same time, if I got lucky the first time, I don't not ruin Macbook Pro my spouse this time.

    Thank you.

    Yes, you can use disk utility to clone your MBP wives, but unlike CCC, it will not clone the recovery and Partition.

  • Question about resolution movie downloads

    If I buy a movie at a certain resolution (780p for example), but I want more later re - download at a higher or lower resolution (SD or 1080 p), can I do so and how?

    Same question perhaps for music. Some of my songs have been bought before the latest Apple codecs.

    Any help is appreciated!

    THX!

    Once you have made a purchase on the iTunes store, you will see your purchased items in the menu under accounts bar > bought. You can simply select the item purchased and re-upload.

    With regard to the resolution of the film for films that are offered, and you select the resolution, you can download it again and select a different resolution. For movies that are available as separate download to SD, 780, or 1080 points, you would be limited to the original resolution you selected.

  • Why I can't ask questions.

    I just have a question.  I said that I can't ask questions.

    Do exactly what you did to make this post, but your question in there instead.

  • Cannot reset the Security Questions

    Hello my dear

    -J' forgot my account security questions, but I remember password

    And I'm changing my Security Questions, but show me this sentence

    "Cannot reset Security Questions."

    We have insufficient information to reset your security questions. "

    -I want to solve this problem as soon as possible if permitted

    You should contact the account of Apple security team. To join, click here and choose a method; If this page does not list one for your country or if you are unable to call, complete and submit this form.

    (145081)

  • Bootcamp Windows 10 question

    Hi all

    Stumbled upon a problem, try to install Windows 10 an end 2014 27' iMac w/retina education runs Yosemite 10.10.5. Bootcamp is V 5.1.4. 32 GB, 3.5 ghz Intel I5. Disk of 1 TB of Fusion. Before you try this, I read the guide of Bootcamp to install windows, but also a number of other tutorials and forum messages about potential problems. This research, I learned that for EDU edition you must change the name of the file from Win10_1607_Education_English_x64.iso to Win10_1607_English_x64.iso. Apparently to have the former name of the file may cause OS X to not recognize the ISO. That fact I started Bootcamp, waited while the software downloaded and created a bootable USB key and partitioned my drive giving Windows 70 GB of space. After that, I got the message that my computer is restarts. Upon restarting, I got the black screen with the blue Windows logo and a spinning loading animation. After a few minutes, a blue screen with a message "Windows has encountered and error with computer and must restart," or something similar. He was pretty quick, so maybe it's not word for Word, but it was not a helpful post in terms of saying something specific. When the computer reboots, I am sent directly to OS X, though a bit slower than normal. I tried to restart with the flash drive to see if the installer would start up, no dice. Try now the Option key at startup, the flash player is not available. Went into my settings to see if I could change my startup on Win disk install USB, no luck it no more.

    Now for the question: How can I get the Windows installation again? What I have to start the process, and if so, what should I use Bootcamp to delete the partition that was created? I have re-run Bootcamp and the only option that is checked is the partition and start and install/uninstall windows and delete the partition.

    Thanks for the help.

    Perform the following two procedures

    Reset the management system (SCM) controller on your Mac - Apple Support

    How to reset the NVRAM on your Mac - Apple Support

    If you use a USB drive, not a USB flash drive, you will have problems. It is recommended to use a 8-16 GB USB2 flash drive.

    If the installation program is located on a USB Flash drive, stop your Mac, connect the USB key, restart and hold down the alt/option key and select the Windows icon in the USB port. This installs Windows in BIOS mode. If you click the start EFI icon, it will install using the EFI mode (faster). You may need to change the partition from MBR to GPT using GPT Fdisk.

  • Yahoo account question

    Yes, I understand these are the Apple support forums, but I don't know where else to ask this question and I thought some of you would have the answer to this question.

    I deleted my Yahoo account last week, but I've heard that the 500 million Yahoo accounts were hacked in 2014. I made my account in 2015. Im sure it is hacked since I made my account a year after the supposed hack, but if my account has been hacked and I deleted which would be safe?

    If your account did not exist in 2014, then it is has not been hacked. Removal of the guarantees it will not be new since there was more pirate. Normally, at least the hackers got access to more information in the narrative, as credit card numbers, change your Yahoo password would have sufficed.

  • Text backup question / deleted

    I accidentally deleted one of my iPhone SMS 6 Plus.  They always show on my iMac and iPad but I fear when an AutoSave occurs, it will back up the iPhone and remove them to two other devices. What will happen?  I use iCloud if that makes a difference.

    Hi melissahh625,

    I understand that you have questions about your messages deleted on different devices. I know that it is important to have a handle on your data, so I'm happy to help you.

    When you receive messages, they are stored on different devices. This means that when you delete a device they will not be deleted on the other. This is the case, even if one of your backup devices to iCloud that these backups are specific to devices, as well.

    Thank you for using communities Support from Apple. See you soon!

  • Question

    Look I went to a new site called collabmix.com, and in any case I tried one of my samples Logic Pro download for someone else to try to collaborate with and help me through my song production. In any case when I go to download, the site accepts only gif, jpg, jpeg, or png. How to record my song pro logic and make a jpeg or jpg file? Please someone... IM new to this site and maybe someone asked this already so I'm sorry if this is a redundant question. Anyway ill be looking for a response from the community here. Thank you

    GIF, jpg, jpeg, or png are all formats of image, audio files or formats of logic.

    I got a peek on the site but I'm not register. I'm going to guess and say you are in the wrong place to download your song.

  • Great list of 'How To' Questions

    I am a newbie to iTunes learn the tricks of the trade, and I learned a lot of ed2345, who led me to still more questions:

    1. a few songs that I managed to acquire have nothing in the kind column. So that this information will be available on the impressions of my playlists, is there a way I can key this information in me?

    2. I was unhappy to see small numbers began to appear to the left of the names of my songs, and I'm sure that must have been added when I said to organize my library. Is there a way I can get rid of them now?

    3 re the small icons 'cloud' next to my name of the song: one with the line through it saying "duplicate". If I delete one of them, I will always have it on my PC? (This whole business of some things being only in iCloud I do not understand yet.)

    4. a few other icons 'cloud' have an exclamation in them, which means that it is not able to be downloaded to iCloud due to an error. In all cases, there are an extra copy of the file in my library. Is this the reason why it didn't download?

    5. I'm fighting a lot to try to understand how certain things can be on iCloud and others do not. I mainly paid my $25 to Match service so I could keep transfer my playlists (and songs) to other computers on my LAN House (at this point, I don't have an iPad, iPhone or etc..). Now, I noticed that in the preferences that I can share my share my library on my network, which is an Ethernet wired with 4 PC and a Mac. If I check that box library share will I still game?

    6. on the other hand, if I want to share a playlist with a friend who has iTunes, I would want to use game for this?

    7. Finally, I know especially with PCs; I just bought the Mac this month. I find it there any equivalent to the files of Microsoft Explorer, except on an external hard drive, I connected to it. Specifically, I can't find the directory structure accessed by iTunes - a feature that could be very useful for me, for example in the collection in a single folder the files of one kind or a particular type (for example MP3). We're not supposed to do that?

    I hope that the answers to these questions will be useful to others, too.

    Thank you.

    1. You can use Get Info and enter the relevant information yourself. Select the album or the titles you want to edit and press CMD + I (Mac) or Ctrl + I (Windows).
    2. You see these numbers in a separate column in iTunes or in the name column, or in the Finder? ITunes is generally tracks numbers which are useful for playback of tracks in an album in the correct order. In some cases where the unmarked files are imported into iTunes, for example those in .wav format, numbers in the file name will become the name of the track in iTunes and other properties such as artist or album will be missing.
    3. See on iCloud library icons and status - Apple Support. If your support is not entirely possible that different versions of the same track are treated as duplicates so that they should not be. If you have duplicates real then they should be cleaned.
    4. Once again see on iCloud library icons and status - Apple Support. This indicates an error with a load of attempt.
    5. iTunes game is a great service if you want to replace any old purchases DRM with DRM 256 k new releases, like on the continuous access go to the entire library of your iOS devices or keep libraries iTunes on two remote sites in sync without manually copying files to and from portable hard drives. If the goal is simply to move a library from one computer to another, it's usually better achieved by copying the folder iTunes set to a portable player and then copying it in the new computer. A network share can also be used.
    6. You can't easily share a playlist with a friend. Normally iTunes playlists are sorted in lists of references to tracks in your library. They work only import if all the tracks already exist in the same paths that stored in the list. Having said that this is something which can be done in a certain measure with music from Apple, because each user has access to a common library of streaming content from the iTunes Store and their rights to listen to it.
    7. Equivalent of the Mac of the Explorer Windows is called Finder. It should be pretty easy to find. Macs are more lenient if you move the files in the same volume, but usually don't. Let iTunes manage physical files on disk when you store the logical organisation within the library. See make a split portable library for images of the typical presentation of the iTunes library. The images come from Windows, but the General layout on a Mac is the same.

    TT2

  • Step 2 verification question

    I have recently implemented stage 2 verification for my Apple ID. I get a text Message whenever I connect to my Apple account. The other day, I created iCloud and now when I connect to my Apple account on my mac I get the code on my mac. Is this normal?

    For Apple ID - Apple Support two-factor authentication

    Frequently asked questions about the audit in two steps for Apple ID - Apple Support

Maybe you are looking for

  • How can I add my wife's mobile phone number to send it

    IPad to my wife (serial number DM * 191, iOS version 9.2.1 if one of the people of importance) do not include his cell phone number on send it & receive list. How can I add to this list? < personal information under the direction of the host >

  • My hard drive is half consumed by a single file in the Content.IE5 hidden folder, can I just remove it?

    Original title: Content.IE5 too big. My hard drive Go 102 is that half eaten, suck up to 53 GB, in a single file in the folder Content.IE5 hidden. Full path is C:Users\Owner\AppData\Local\Microsoft\Windows\TemporaryInternetFiles\Low\Content.IE5\LHV89

  • Case of elevation

    I'm moving my HP Envy 700-074 in one case news that Rosewill black SECC Steel USB 3.0 Mid Tower Computer Case . I need now, which is the front e/s on the motherboard connectors it dose not have labels on the motherboard where the pins are. I need an

  • How to disable Adobe recording on two computers using a single computer

    HelloI have Adobe Creative Suite Cs6 registered and installed on two of my computers.  Two computers is the registration limit, for I can't save Adobe Creative Suite Cs6 on more computers.  I want to register Cs6 Adobe Creative Suite on two other com

  • Saving images on my pc

    HelloWhat are the correct settings when saving my pictures on my computer. (I have a pc) I don't think that I'm doing it correctly. When I send an email with a photo I've saved since Lightroom it looks so different when I opened the e-mail. Also, how