The last time an index was used

Hi to all, 
I would like to know, if there is a way of knowing  the last time an index was used, or what indexes have never been used.
Regards
Eduardo Barrios
Compañía Cervecera de Canarias S.A.
Tfno.     922 568 246
Fax.      922 670 600
Correo   [email protected]

Hi Eduardo,
reading through the updates from Thomas and Volker, I was wondering if there was a bug in i5/OS that causes the "Last used date" information in the file description not to be updated properly for indexes. If you have the plan cache dump or database monitor active (i.e. quite current data in ST04), you could do the following to find out if indexes have been used by the SAP system without a proper update in the file description:
1. List all indexes into a temporary output file:
    DSPFD FILE(R3<sid>DATA/ALL) TYPE(MBR) OUTPUT(*OUTFILE)
          FILEATR(*LF) OUTFILE(QTEMP/DSPFD)
2. Compare output with database monitor data using STRSQL or SQLUTIL:
    SELECT T1.MBFILE, T1.MBUDAT, T2.QQTIME, T2.QQLIFN
      FROM QTEMP/DSPFD T1, R3<sid>DATA/SQ3001_DB4 T2,
           R3<sid>DATA/SYSINDEXES T3
     WHERE T1.MBFILE = T3.SYSTEM_INDEX_NAME
       AND T3.INDEX_NAME = T2.QQLIFN
     ORDER BY T1.MBUDAT
If you find indexes, where the "Last Used Date" is smaller than the QQTIME value, you know that the
file statistics are not updated properly. You could then open a PMR at IBM for that.
On one of our internal systems I did not see a discrepancy, so it seems to me that the information is correct. Volker's experiences could be explained by the fact that indexes are not just used to implement SQL statements, but also for table statistics. I assume that the "Last used date" is not updated when the index was only used to obtain table statistics. With incomplete statistics, the optimizer may choose a different join order or access method, which can result in poor performance. So there is some risk involved when dropping an index that has a very old "Last used date", and you can only decide it by trying (with care!).
Kind regards,
Christian Bartels.

Similar Messages

  • When the last time a datafile was used

    Hello.
    This is from Solaris box, running Oracle 8.1.7.4.0.
    There are two datafiles, actually three, that were created for three tablespaces. These in total take up more than 3G on the server and space is at a premium.
    I suspect that these files can be removed but I need to understand when the last time they were used and if it is safe to remove them.
    Each of these files was created as 800M files and each has 799.99M remaining.
    Thank you for any advice.
    DA

    it doeasn't help when you use ls -l, because the system checkpoint will upate all the datafiles(except the readonly ones)
    SQL> create tablespace myts datafile '/tmp/myts.dbf' size 50M;
    Tablespace created.
    SQL> create table mytable1 (col1 date, col2 number) tablespace myts;
    Table created.
    SQL> !ls -ltr /tmp/*.dbf
    -rw-r----- 1 oracle oinstall 52436992 Apr 18 09:22 /tmp/myts.dbf
    SQL> alter system switch logfile;
    System altered.
    SQL> !ls -ltr /tmp/*.dbf
    -rw-r----- 1 oracle oinstall 52436992 Apr 18 09:22 /tmp/myts.dbf
    SQL> alter system checkpoint;
    System altered.
    SQL> !ls -ltr /tmp/*.dbf
    -rw-r----- 1 oracle oinstall 52436992 Apr 18 09:24 /tmp/myts.dbf
    if you want to drop the tablespace, just simply run the following command. it should be successful if your TS is empty:
    SQL> drop tablespace myts;
    drop tablespace myts
    ERROR at line 1:
    ORA-01549: tablespace not empty, use INCLUDING CONTENTS option
    SQL> select segment_name,segment_type from dba_segments where tablespace_name='MYTS';
    SEGMENT_NAME
    SEGMENT_TYPE
    MYTABLE1
    TABLE
    SQL> drop table MYTABLE1 purge;
    Table dropped.
    SQL> drop tablespace myts;
    Tablespace dropped.
    Or you can run the following command directly if you confirm to drop everything in this TS:
    drop tablespace myts INCLUDING CONTENTS ;
    HTH
    Scott

  • How to know the last time a table was used?

    I was trying to find a log or something that can tell me when and who was the last one/s that used a table.
    Could someone help me?
    thanks

    How can I activate the auditing? http://download-east.oracle.com/docs/cd/B19306_01/network.102/b14266/auditing.htm#i1011984
    Daljit Singh

  • How to determine the last time  a database was used

    Is it possible in to determine the time a CRUD operation occurred on a database?

    How can I activate the auditing? http://download-east.oracle.com/docs/cd/B19306_01/network.102/b14266/auditing.htm#i1011984
    Daljit Singh

  • Need to find last time a table was used.

    I am in the process of cleaning out a group of staging tablespaces and I would appreciate some help finding the last time a table was used. (ie: records added, deleted, ect.) Is there an SQL statement that will do it? Any other suggestions?
    I will Appreciate any assistance.

    How can I activate the auditing? http://download-east.oracle.com/docs/cd/B19306_01/network.102/b14266/auditing.htm#i1011984
    Daljit Singh

  • How to find out when the last time a tcode was run by someone

    Hi Team,
    I am just trying to find out if there is a way to find out when the last time a tcode was run by someone.I mean i need to know when was a certain  tcode was last run.
    Thanks,
    Priyanka

    HI Priyanka
    Another way would be using transaction STAT,enter the t-code you like to monitor.This will provide all details,like user, time etc...
    Hope this will help
    Thanks
    Santosh Kumar

  • Determinng how many times an index was used

    DB Version:10gR2
    Is there a way i could determine how many times an index was used? i couldn't find any related columns in user_indexes.

    I don't think you can count how many times it's been used. However, you can check whether the index is used or not over a given period by looking at v$object_usage view.
    However, you do have to monitor the index usage by issuing
    alter index index_name monitoring usage;
    However, there is a problem with this view in that the username is always the user who set monitoring on the index.
    Solution from metalink is:
    select
    io.name, t.name,
    decode(bitand(i.flags, 65536), 0, 'NO', 'YES'),
    decode(bitand(ou.flags, 1), 0, 'NO', 'YES'),
    u.start_monitoring,
    ou.end_monitoring
    from
    sys.obj$ io,
    sys.obj$ t,
    sys.ind$ i,
    sys.object_usage ou
    where
    io.owner# = userenv('SCHEMAID')
    and
    i.obj# = ou.obj#
    and
    io.obj# = ou.obj#
    and
    t.obj# = i.bo#;

  • I can get the last time a patch was applied. What I need is this info for ALL servers.

    Getting the last time a server was patched is a simple, single line of PowerShell:
         get-hotfix -computername seadcweb10 | sort InstalledOn | select -last 1
    What I need is to get a list of *all* the servers in Active Directory, and get this information for each.
    I've tried variations of foreach , but I get errors.
    foreach ( $p in Get-ADComputer -Filter 'OperatingSystem -like "Windows *Server*"' ) { get-hotfix -computername $p.Name | select -last 1 }
    Get-HotFix : The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
    At line:1 char:97
    + foreach ( $p in Get-ADComputer -Filter 'OperatingSystem -like "Windows *Server*"' ) { get-hotfix <<<<  -computername
    $p.Name | select -last 1 }
        + CategoryInfo          : NotSpecified: (:) [Get-HotFix], COMException
        + FullyQualifiedErrorId : System.Runtime.InteropServices.COMException,Microsoft.PowerShell.Commands.GetHotFixCommand
    What am I doing wrong?

    Hi
    The RPC server is unavailable
    This error  comes when any server is not pingable.
    Make sure you are able to ping to all server from the server you are running the script.
    Then give a try to below script :
    foreach ( $p in Get-ADComputer -Filter {OperatingSystem -like "Windows *Server*"})
    get-hotfix -computername $p.Name | select -last 1
    MCITP - Exchange 2010 | MCITP - Windows Server 2008 R2

  • HT1212 If I never synced to itunes and I restore the device. Will I lose unstored data? How can I check to see the last time my phone was backed up if I forgot the passcode to my phone?

    If I never synced to itunes and I restore the device. Will I lose unstored data? How can I check to see the last time my phone was backed up if I forgot the passcode to my phone?

    If you can't remember your passcode, you'll need to restore your phone.  If you never synched to iTunes, all data on your phone will be erased.  No way around this.

  • When was the last time a program was run?

    Experts, is there a way to know when was the last time a program was run (particularly, Z Program). We are trying to identify obsolete programs and avoid working on those programs that weren't touched for more than 3 years during our next upgrade. How can I find this? Any suggestion would be highly appreciated.
    Thank you.

    Hi,
    One way is to check TRDIR table(se11/se16) and display it. In the next screen once you will get 'Data Browser Table TRDIR' selection screen. There either you put the individual 'Z' program name in the 'Name' field & execute it or for all multiple entries execute it.
    Once you execute it with the particular Z prog. name then you will get the required details like CDAT(Created on),UNAM(Last changed by),UDAT(Changed On),SDATE(Standard selection screen generation: Date),IDATE(Selection screen generation: Date) etc.
    Hope this can help you.

  • HT201269 How do I see the last time my phone was backed up?

    My iphone has gone dark. I was planning on getting a new phone but I can't turn my old phone on to transfer data. How can I see the last time my phone was back up?

    If you back up to iTunes, open iTunes on your computer.  Go to Preferences (from the leftmost item in iTunes' menu bar), then choose "Devices".  The backup time will be shown there.
    If you back up to iCloud, you would be able to see it on your iPhone, but since you can't turn it on, I don't think there is another way to find it.

  • Is there a way to see the last time my ipad was online?

    I lost my ipad and I can't use the locate my iphone app because the ipad is offline.  I am wondering if there is a way to see when the last time it was connected to the internet and where it was the last time it was connected. 

    No.  Find My iPad doesn't keep any history of that.  Also, it it's a wifi-only model, it will only be online if it is connected to a known wifi network.  The best strategy is to put it in lost mode and change your iCloud password so someone can't take over your account.
    You might also want to read this: http://support.apple.com/kb/HT5668.

  • How to get the last time a record was modified or created ?

    Is there a way (hidden system fields for example, system view, other ?) to get the last time a record of a table was modified or the date it was created.
    Thanks for any help.
    Stiphane CAMPION

    blarman74 wrote:
    I know I could do this with a trigger, but I was wondering if there is a data dictionary view I can query to find the date/time a table was last updated. What I have is a table that is constantly getting hammered with new data being uploaded from a third party. We need to keep close tabs to verify that this datafeed is constantly running and bringing in new data. Because the data that comes in comes from multiple timezones and there are hundreds of lines, our attempts at monitoring by just looking at the data leave something to be desired.
    Any ideas?refer this links
    How to find Last modified/updated time of a particular table
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1590655700346557237
    Thanks

  • How to tell the last time a table was updated

    I know I could do this with a trigger, but I was wondering if there is a data dictionary view I can query to find the date/time a table was last updated. What I have is a table that is constantly getting hammered with new data being uploaded from a third party. We need to keep close tabs to verify that this datafeed is constantly running and bringing in new data. Because the data that comes in comes from multiple timezones and there are hundreds of lines, our attempts at monitoring by just looking at the data leave something to be desired.
    Any ideas?

    blarman74 wrote:
    I know I could do this with a trigger, but I was wondering if there is a data dictionary view I can query to find the date/time a table was last updated. What I have is a table that is constantly getting hammered with new data being uploaded from a third party. We need to keep close tabs to verify that this datafeed is constantly running and bringing in new data. Because the data that comes in comes from multiple timezones and there are hundreds of lines, our attempts at monitoring by just looking at the data leave something to be desired.
    Any ideas?refer this links
    How to find Last modified/updated time of a particular table
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::P11_QUESTION_ID:1590655700346557237
    Thanks

  • HT1414 How can i find out the last time my iphone was restored?

    Hey, i need help on how to find out when the last few times my iphone was restored.
    Thanks

    This is a strange question, not sure where you are going with this one. On the computer you Restored with, iTunes requests to back up the iPhone. These are time stamped and stored on the computer. You can use iTunes to search the list of back ups of your iPhone and see the dates, so you can at least see the dates of the back ups.

Maybe you are looking for

  • When we move 2 hdd(Raid 0) to other sata ports, will data be safe ?

    ----my system---------------------------------------------- MSI K8n neo2 platium AMD 3000+ Dual DDR ram hynix 400 (1GBx1GB) 1 Sata hdd Samsung 80GB ( windows is running on this driver) 2 Sata hdd Seagate 160GB ( raid 0 ) PSU FireLine 400w Thanks for

  • Job Definitions

    I recently purchased and installed Acrobat XI and discovered that Job Definitions went away...or so it seems.  I have one primary report that combines 126 different files into a single PDF that my boss can easily view and print.  I cannot, for the li

  • Does OC4J's built-in JMS support transactions?

    I am using Oracle App Server 10.1.3.4 and OC4J 10.1.3.4, with the built-in OC4J JMS implementation. I have created a simple MDB that receives messages in the onMessage() method, and rolls back the transaction by throwing a runtime exception. (I have

  • Can't sync Movie Rental to Iphone already exists on another device?

    I have rented two movies and have not touched them.  I tried moving one over today to syn with my iphone so we could watch and I received the followin "Rentals in your itunes library could not be transferred to the iphone "_____'s phone" because it h

  • Start up disc full-warning!

    Hello Just received a warning saying my start up disc was nearly full, i remember there was a simple little widget or programme that tells you what uses up most of your hard drive space (is that the same thing as your start up disc?) any way, does an