To get information before one month

Hi,
All,
I have 10.2.0.3 database on AIX.
I try to create AWR report but there no snapshot available there. what are other alternative to get information before a month.
Thanks,
Vishal

What are you doing and where?
Run the following to find out for sure:
set pagesize 0
set linesize 121
col instart_fmt noprint;
col inst_name format a12 heading 'Instance';
col db_name format a12 heading 'DB Name';
col snap_id format 99999990 heading 'Snap Id';
col snapdat format a18 heading 'Snap Started' just c;
col lvl format 99 heading 'Snap|Level';
set heading on;
break on inst_name on db_name on host on instart_fmt skip 1;
ttitle off;
SELECT TO_CHAR(s.startup_time,' DD MON "at" HH24:MI:SS') INSTART_FMT,
di.instance_name INST_NAME, di.db_name DB_NAME, s.snap_id SNAP_ID,
TO_CHAR(s.end_interval_time,'DD MON YYYY HH24:MI') SNAPDAT,
s.snap_level LVL
FROM dba_hist_snapshot s, dba_hist_database_instance di
WHERE di.dbid = s.dbid
AND di.instance_number = s.instance_number
AND di.startup_time = s.startup_time
ORDER BY snap_id;Taken from the AWR entry in Morgan's Library at www.psoug.org.
If you need to change the snapshot retention window then look in the library for DBMS_WORKLOAD_REPOSITORY and the MODIFY_SNAPSHOT_SETTINGS procedure. You can set snapshot interval and retention.

Similar Messages

  • Hi there, I have a 2009 Macbook - running on OS X V.10.6.8... but I'm looking at upgrading the Operating System to V.10.10. Will your latest version of LIghtroom (the one I can currently get a free one month trial of from your site) work with Apple's late

    Hi there, I have a 2009 Macbook - running on OS X V.10.6.8... but I'm looking at upgrading the Operating System to V.10.10. Will your latest version of LIghtroom (the one I can currently get a free one month trial of from your site) work with Apple's latest operating system - Yosemite V.10.10? Or will LR only work with V.10.7, 10.8 or 10.9?
    Thanks, Seamus

    Hey, problem solved. One of the drives was faulty. I erased the 2nd drive (which was showing up as the degraded raid slice), deleted the RAID set and restored the 2nd drive from a back-up disk image. After that, when I booted using 'option' I was presented with two boot disks but only one that worked. And when it did boot  up only the reformatted disk was showing in Diskutil so I'm guessing the second one is knackered. With it still in place the server still wouldn't boot up from a full shutdown, but the moment it was removed it booted up no probs. Wakes up from sleep as well so it seems sorted.
    So now just need to decide whether I'll bother with replacing the second drive or just use an external back-up. I have just bought a 1TB drive to back up to so will probably just go with that.
    Btw, is there anyway I can test the drive I removed to see if can be saved?
    Thanks for all your help. Your siamese twin comment was the push I need to erase the drive, I'd be holding off before that.
    Warren

  • Need Users information since one month or one year

    I have cheked with 'ST03' but am getting only one week data of users after that popup message is 'list contains no data'. In our system 'audit security log' is inactive so iam unable to view with SM19. STAT also not giving that much sufficient data.
    so how can I get users information means what tcodes they used one (month back ) and logon time every thing .Is there any reports /tables to view the data which is related to users. give your suggestion soon.
    Thanks,
    nani

    Hi Nani,
    Please follow this:
    go to st03n
    in exper mode-then collector and performance database
    then workload collector->under this go to total collector->then go to control and double click
    it will show u the view SAP NW Worload collector:maintain the collector parameters
    make sure that under week aggr.,month aggr and Gen total all are check in
    follow the note 12103 to make sure the job is running fine
    let me know if this helps
    Rohit

  • Can't get more than one month of backups with Time Machine

    I seem to be having persistent problems with TM. I have a 1TB HD and in the past I have been able to get up to several months of backups from around 140GB with exclusions. However, lately I seem to be plagued with "SystemFlipper" messages that start a full backup and result in the removal of previous backup such that I seem unable get have more than just over one month of backups.  This seem to occur mostly at the first backup of each day and then works fine for each subsequent hour after doing the "Full Reset" as per Pondini (http://pondini.org/TM/A4.html). Other days it seems to work fine.
    I have been reviewing other related discussion in this forum and cannot seem to find an answer. It is possibly to do with residual pre-Intel programmes is the best I can determine, but the problem is how to find the culprits in my list of applications either remove them all together or transfer them to another HD I use for non-essential data and files. I have done this for a lot of other data and have added exclusions for some file that were giving me identified issues.
    Would appreciate any suggestions as I'm getting a little frustrated at having to do a reset so often, and  not being able have a greater time period of backups given that there was a time when I had nearly a year's worth.
    Thanks, Dave

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • Getting information giving one command in wlst

    Hi
    Is there any way to get information about a manage server via one command?
    For example; to get server state information we must go to "wls:/DomainName/domainRuntime/ServerRuntimes/ManageServerName"
    and then type cmo.getState()
    Can we get this information typing like this:
    wls:/DomainName/domainRuntime/ServerRuntimes>ManageServerName.cmo.getState
    ***I've tried some combinations but none of them worked.

    Let me ask you one more question:
    Can't we use two commands together in one line?
    for example:
    serverLifeCycles = cmo.getServerLifeCycleRuntimes();
    for serverLifeCycle in serverLifeCycles:
    print 'Server: ' + serverLifeCycle.getName() + ', State: ' + serverLifeCycle.getState();
    cd ('/ServerRuntimes/'+serverLifeCycle.getName()+'/JVMRuntime/'+serverLifeCycle.getName())
    print 'HeapFreePercent for '+ cmo.getHeapSizeMax() + cmo.getHeapFreePercent();
    Output of this script:
    Server: Srv1, State: RUNNING
    Problem invoking WLST - Traceback (innermost last):
    File "/usr/bea/Test/wlserver103/common/bin/alp2.py", line 12, in ?
    TypeError: __add__ nor __radd__ defined for these operands
    ***I've tried to give these commands (cmo.getHeapSizeMax() , cmo.getHeapFreePercent() ) in different lines and it worked bu didnt work together.

  • Get informed before application shutdown

    I can't find out how I can step into the application shutdown and persist UI informations before this is happening. It looks like JavFX 2.0 simply calls system exit if all stages are closed. Is there any possibility to:
    a) modify that and take over control of the shutdown
    b) intercept the shutdown so that informations can be store?
    Tom

    Sorry but well it doesn't work like documented:
    a) I set a break point and it's never reached
    b) To prove that in any case this is also not working (none i can think of but anyways) I added a system.out.println() in the finalize method and guess what the object is garbage collected immediately after the launch (start(Stage stage)) has been finished hence it can't be called at all.
    So this is a bug I guess and that needs to be fixed, beside that also destroy() isn't called either.
    Edited by: user5379643 on 06.06.2011 00:27
    Edited by: user5379643 on 06.06.2011 00:27

  • Help to  get date before (six month)

    hi,
    i have to get in field  the date of six month ago  what is the best way to do that?
    example.
    if now_date = 14.10.07
    i wont in l_date 14.4.07
    or if now_date =  15.1.2003
    l_date = 15.7.2002
    Regards

    Hi,
    For this logic to work,we will have to use the Offset method for the month as well as the Year part of the date.
    Please refer to the sample code mentioned below:
    data:cur_date type sy-datum.  "Date entered by the user.
    data:wanted_date type sy-datum.    "Date six months ago.
    if suppose the month for the current date is greater than June,i.e from July to December,then the logic should be,
    wanted_date = cur_date + 2(0) - 6.   "Only reduce the month part of the date by 6.
    if suppose the month for the current date is either equal to or less than June,i.e
    from January to June,then the logic should be,
    wanted_date = cur_date + 2(0) - 6.    "Reduce the month by 6.
    wanted_date = cur_date + 4(0) - 1.    "For reducing the year by one as the year also gets changed in this case.
    I hope you understood my point.
    In case you have any further clarifications,do let me know.
    Regards,
    Puneet Jhari.

  • Getting slow after one month

    Hi,
    I bought my mac last month and everything was super! Until recently, I just noticed that my mac is getting slow. For example, if I go to 'Finder/Applications my sub-menus don't open as they used to (I have as "View: Show items as icons, in a list, in columns, or with cover flow" . It takes second to do preview to look at folders.
    Please advice. What can I do????????? Everything is fine. I am happy with it I just liked the quick/fast privilege that Mac has
    Thank you so much.
    cnia2

    here is the answer to that problem, might sound crazy, but it dose work !!
    "The way to fix the five second openning on the folders. Jack the double mouse click speed to the highest setting. The higher the double click the faster the folders in the finder open. Sounds crazy, but it work for me. When set to a low setting the folders in the finder take about 3-5 seocnds to open. I sent bug reports to Apple."
    http://forums.macrumors.com/showthread.php?t=464580&highlight=Finderbecomeslow

  • Get information from one PDF to another.

    I have two PDF's one is a flat document with text, the other is a form. I would like to extract information from the flat file and fill in the form on the second PDF. I would also like to create a button that saves the document as a new file name with information from the document.
    more info:
    I would need to do this on an ipad (the actual work not the Programing).
    I have Adobe X pro and live cycle.
    The text from the first file that I need is always in the same place  for example "Job number:     Xxxxxxx".
    any part of this would be great but if you know a way to do all of this it would be amazing.

    How about at least using JavaScript to "saveas" to a new name? I have seen people online talking about something similar to this but it always includes a path name which the ipad does not use.
    Also, how would I do it on a PC? I could have the person who creates the first document run a script on their computer and send me both files.

  • Just one month before i bought iphone 5... but the iphone has the internet connectivity problem... while a iphone 4s is cathcing 3G tower, whereas iphone 5 is catching 2G network only.... I've tried so many things to get recovered, but alas

    Just one month before i bought iphone 5... but the iphone has the internet connectivity problem... while a iphone 4s is cathcing 3G tower, whereas iphone 5 is catching 2G network only.... I've tried so many things to get recovered, but alas, nothing is workable- such as- restaring the iphone, reseting the networks etc... Please help me out from this problem..

    to be clear, my phone works fine when not in motion in a vehicle.  If I pull over and come to a complete stop, remaining in the car, my phone works.
    And while the phone is not working when I'm in motion, an internet search or a text message will go through, but I can not use Siri or any voice assistance when doing the text message or internet search.  The microphone is greyed out.
    So this is a unique issue, which appears to be the iPhone and not Verizon.

  • Greeting,  I want to reformat my external hard drive using Mac OS Extended (Journaled, Encrypted ) but before formatting it, I want to make sure that if I loose the hard drive or the hard drive get stolen, no one will be able to retrieve or recover the in

    Greeting,
    I want to reformat my external hard drive using Mac OS Extended (Journaled, Encrypted ) but before formatting it, I want to make sure that if I loose the hard drive or the hard drive get stolen, no one will be able to retrieve or recover the information on it so could you tell me what kind of encryption will be used or is there any way to recover the information?
    Thanks!

    I think FileVault is used to encryp internal hard drive but I wanna encrypt an external hard drive with Mac OS Extended Journaled Encrypted which is completely different!

  • HT5538 i can't find the facetime on my iphone i was using it before 1 month after that it's just disappear i need your help to get it back . thank you

    hello everyone i need your help please
    i can't find the facetime on my iphone i was using it before 1 month after that it's just disappear i need your help to get it back .
    thank you

    FACETIME MISSING
    The governments in some middle eastern countries have banned Facetime and it is disabled on iphones purchased in those countries.  The countries include KAS, UAE and others.  There is no way to get Facetime on such phones (for example it cannot be downloaded and installed) and taking the phone to another country does not cause Facetime to reappear on such phones. In  support.apple.com/kb/ts3367  it says “Note: FaceTime may not be available, or may become unavailable, on devices purchased or used in certain countries, including Saudi Arabia and the United Arab Emirates. Check your device's region of purchase for more information.”

  • Need to cancel my free 1 month membership CC trial before I get charged for 6 months contract period.

    Not getting any option on my account to do this. Not getting any manage payments or credit card info either. Neither generally or on Manage Your Plan option. Adobe official help for this particular problem mentions to goto Customer Support. That option only gives one further option which pointed me to the forums.
    I have decided that though its more expensive on a per month basis a one month membership on a "pay for that month when you need it" suits me more. But seeing how effortless it is is to manage payment information or remove credit card information on Amazon and Apple and how tough/ impossible it is here, I'm seriously reconsidering that too. This is the only large user base company in my decades of interaction with online commerce that makes me follow this torturous path to edit/ remove credit card details and manage payments. I'm genuinely astonished at the UX decision behind this surely oft used process.

    Im absolutely signed in under my ID. Im on an updated Safari on OS X Yosemite.
    I'm beginning to think maybe my free trial will expire and they'll ask if I want to upgrade as opposed to upgrading automatically. That's the only explanation assuming as a marketing company UX is something they understand.
    But the whole taking credit card info doesn't make sense then. Anyways will they entertain me if I call their customer service?

  • I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    I recently signed up for a one month trial of adobe pro.  I logged in.  I cannot convert a single page of PDF file to word or Excel with this trial.  I just get the request to sign up for a year.  What good is the trial if I can't try it?

    Hey vcomfort6,
    Please ensure that you are using Adobe Acrobat and not Reader to convert PDF file to word or excel.
    Could you tell me whether it is a scanned document? Does this happen with all PDFs or any specific one?
    Do you get any error message? What exactly happens when you try doing the same?
    Hope to hear from you.
    Regards,
    Anubha

  • I had a brand new Mac book pro one month old and the hard drive died. Right before it died I was down loading pictures off a memory card and now they aren't on my memory card! They are wedding pictures I took for a friend and irreplaceable! Please help!!

    I had a one month old Mac book pro and the hard drive fried! I was down loading a friends wedding pictures when it stopped working and started heating up. I plugged it in and turned it off as it was making a clicking noise. When I turned it back on the was a grey box with a question mark and nothing else. When I took my memory card out the pictures were gone. I took it back to best buy where I bought it and they said it was dead, needed a new hard drive and all my info is lost! Is there any way to get back those irreplaceable wedding pictures?

    There are some data recovery programs (software). I would look into that for the images on the card. When files are deleted, the files are still there, just the headers are removed. That being said, a format of the card or new files written to the card can overwrite deleted files.
    The physical hard drive could be thousands of dollars to forensically save, with no guarantee.

Maybe you are looking for

  • Global notification message, can't get it to work

    Hello, I was making experiments with the Global Notification message, so I created a page taking a string as input and storing the value in the global variable using the following pl/sql code located in an After-submit process: HTMLDB_APPLICATION.G_G

  • RCATSTAL

    Hi, Our night job, RCATSTAL which is for cancellation of posting is failed for some entries When we run the job manually again, we get the error "Posting period 004 2008 locked". How can we change the posting date in these lines?

  • Ip8500 does not print with XP & Airport Extreme Base station (OK with Macs)

    My canon ip8500 is connected to an Airport Extreme Base station. I can print from either Mac (a G4 and a new iMac 24") but no luck with either XP laptops (accessing the internet is no problem). I've installed both PC's with Bonjour but after a minute

  • How to convert substring to waveform

    hi, i have a input file with lots of numbers which need to be convert to waveform. i have use the match pattern vi to extract the data which i need to be plot out. those data can be seen from 'before substring' but i do  not know how to convert that

  • SMS Error Cause code 29 error class 3

    Please help, I just arrived in Baku, Azerbaijan and I'm getting SMS errors: Cause code 29, error class 3.  I did receive a text when I first got here, but I can't send out.  Also, I don't want to make any phone calls as I'm uber roaming.  Data and WI