How much Redo

Hii
How can I which session or sql created most redo in past ?
I could not find any awr table that releated about v$sesstat or is there any v$ view That I calculate redo size of sql that has point to past
Best Regards

Hi,
have a look there
http://www.adp-gmbh.ch/ora/concepts/redo_log.html
or there
http://download.oracle.com/docs/cd/B10501_01/server.920/a96521/onlineredo.htm
or on forum
http://forums.oracle.com/forums/search.jspa?objID=f61&q=how+much+redo
regards,
Tom

Similar Messages

  • When & how much redo record will be produced?

    oracle tech is so hard to study !!! uh uh uh!!
    to be first , i knowe DML operations will cause to redo action. to this ,except for dml ,and when , can cause to redo ??
    online redo log file is stored redo records , then how to store it ? can i put my sight into the log file to learn how do redo file organise and manage so much redo records .
    secondly , it is right that insert operate (noindex) bring 1 redo record ,
    and update will bring 2 redo record ?
    thanks a lot

    secondly , it is right that insert operate (noindex) bring 1 redo record ,and update will bring 2 redo record ?
    Your question confuses. However, when you update value and the columns has the index, its 2 transactions for index, update in index = delete+insert.
    to be first , i knowe DML operations will cause to redo action. to this ,except for dml ,and when , can cause to redo ??Oracle recursive sqls + sometime due to block cleaouts, a select statement also generates redo.
    Jaffar

  • How much Redo log is being generated by a user sesssion?

    How can find which user session is creating the highest redolog entries and how much rego log is being generated?

    1) Query V$SESS_IO. This view contains the column BLOCK_CHANGES which indicates how much blocks have been changed by the session. High values indicate a session generating lots of redo.
    The query you can use is:
    SQL> SELECT s.sid, s.serial#, s.username, s.program,
    2 i.block_changes
    3 FROM v$session s, v$sess_io i
    4 WHERE s.sid = i.sid
    5 ORDER BY 5 desc, 1, 2, 3, 4;
    Run the query multiple times and examine the delta between each occurrence of BLOCK_CHANGES. Large deltas indicate high redo generation by the session.
    2) Query V$TRANSACTION. This view contains information about the amount of undo blocks and undo records accessed by the transaction (as found in the USED_UBLK and USED_UREC columns).
    The query you can use is:
    SQL> SELECT s.sid, s.serial#, s.username, s.program,
    2 t.used_ublk, t.used_urec
    3 FROM v$session s, v$transaction t
    4 WHERE s.taddr = t.addr
    5 ORDER BY 5 desc, 6 desc, 1, 2, 3, 4;
    Run the query multiple times and examine the delta between each occurrence of USED_UBLK and USED_UREC. Large deltas indicate high redo generation by the session.
    You use the first query when you need to check for programs generating lots of redo when these programs activate more than one transaction. The latter query can be used to find out which particular transactions are generating redo.

  • Finding which table generated how much redo

    I'm wondering if we can find from any view that during this period a particular table generated how much amount of redo log , other than logminer ?
    We have a particular application and want to know which tables are generating most of the redo.

    from asktom
    see
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:477221446020
    and
    http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:366018048216
    Nologging only affects very very specific operations. For exmaple, from the
    alter index syntax statement in the SQL reference:
    LOGGING|NOLOGGING
    LOGGING|NOLOGGING specifies that subsequent Direct Loader (SQL*Loader) and
    direct-load INSERT operations against a nonpartitioned index, a range or hash
    index partition, or all partitions or subpartitions of a composite-partitioned
    index will be logged (LOGGING) or not logged (NOLOGGING) in the redo log file.
    In NOLOGGING mode, data is modified with minimal logging (to mark new extents
    invalid and to record dictionary changes). When applied during media recovery,
    the extent invalidation records mark a range of blocks as logically corrupt,
    because the redo data is not logged. Therefore, if you cannot afford to lose
    this index, you must take a backup after the operation in NOLOGGING mode.
    If the database is run in ARCHIVELOG mode, media recovery from a backup taken
    before an operation in LOGGING mode will re-create the index. However, media
    recovery from a backup taken before an operation in NOLOGGING mode will not
    re-create the index.
    An index segment can have logging attributes different from those of the base
    table and different from those of other index segments for the same base table.
    That also explains why the truncate above generated redo -- The statement
    "minimal logging (to mark new extents invalid and to record dictionary
    changes)." explains where that redo comes from. The blocks that were truncated
    were not logged HOWEVER the changes to the data dictionary itself were.
    .

  • How much time it take to rebuild an index for a table with 20 millions rows

    Hi all,
    i need to rebuild the index of a table containing 20 000 000 row (i don't know why the other people working on this didn't think of rebuilding the index regularly, because i asked and apparently it has never been done :cry: :cry:) i am not a sql developper nor a DBA so i can't mesure how long it take to rebuild the index, does any one have an idea (aproximativly of course :aie:), the other question is there any formula to use in order to calculate how often to rebuild the indexes (i can for example retieve how much rows are delated or inserted daily ...)
    Thanks again
    Taha

    taha wrote:
    :aie: that's why i am asking because i don't know (and to be sure which solution is best)
    so the table is like this (the columns) :
    45 varchar2, 5 timestamp, 30 Number no LOB columns, (15 indexes : 5 unique indexes and that those indexes uses at a maximum 4 columns)15 indexes - 100,000 deletes: this could mean 1,500,000 block visits to maintain index leaf blocks as the table rows are deleted. If you're unlucky this could turn into 1,500,000 physical block read requests; if you're lucky, or the system is well engineered this could be virtually no physical I/O. The difference in time could be huge. At any rate it is likely to be 1,500,000 redo entries at 250 - 300 bytes per entry for a total of about 400MB of redo (so how large are your redo logs and how many log switches are you going to cause).
    yes the tables is used by an application so (update, insert ) can take place at any time
    for the deletion , there is the batch which does a mass delete on the table ( 4 or 5 time each day)
    You haven't answered the question - how long does it take to do a sample batch delete.
    If you can enable SQL tracing, or take a before/after snapshot of v$sesstat or v$session_event for the session as it does the delete then you can get some idea of where the time is going - for all you know it might be spending most of its time waiting for a lock to do away.
    >
    "How many leaf blocks are currently allocated to the index(es) ?" how can i answer to this question ? may be if i check the all_objects table ?
    If you keep your statistics up to date then dba_indexes is a good place, cross-checked with dba_segments, and you can use the dbms_space package for more detail. I have a code sample on my blog which allows you to compare the current size of your indexes with the size they would be if rebuilt at some specific percentage: http://jonathanlewis.wordpress.com/index-sizing/ (It's such good code that Oracle Corp. has copied it into MOS note 989186.1)
    Regards
    Jonathan Lewis

  • How much disc space?

    Can anyone tell me how much space I'd require to run Windows on my Macbook? I've only got about 60gb left but want to keep about half of that intact.
    Thanks

    Not if you can't include which version, what apps and games, and such, and whether you should plan for upgrades and such.
    Also, OS X's HFS+ doesn't like getting low on disk space one bit. 10% free space is even consider dangerous to the btree directory.
    A LOT of people come back and want to redo partition sizes. There is WinClone and CampTune to help out. But before you begin.... backup.
    5-10GB may sound like enough, it usually isn't, even for XP.
    20GB for Vista 32-bit may work, but SP1 and SP2 update and games?
    I would install Windows 7 RC when it is available. Runs well, better than XP for some, but you want more like 40GB (or more).

  • How do I find how much space specific documents, applications, music files, etc. are taking up on my hard drive?

    I checked out my hard drive and found it is getting rather full.  Disk Utilities gives me an overall picture of how much disk space is being used and how much remains, but I'd like to find out which individual files may be hogging space.  The Finder window doesn't give that individual information.  I can find out how much space each item takes by clicking info on each, but there must be a more efficient way of finding this information simply by clicking on folders.

    Not free but this is one option.
    http://whatsizemac.com

  • I recently managed to get the whole casing of my 13" Macbook Pro (Mid-2009) replaced due to a missing foot and dodgy spacebar. The lid is dented and scratched so would like to know how much it would cost to replace? I know its not covered by AppleCare.

    So i took my Macbook Pro 13'' (Mid-2009) into Apple because the spacebar was jammed and I had one of the feet of the bottom casing missing which was unusual (black circles). The unibody and bottom plate had a fair few dents and nicks and under AppleCare I was able to get the whole unibody and bottom case fixed for free. Saved myself a good £181!
    This now leaves my lid which has one or two noticeable dents and the bottom right part is suffering from several scratches. I was wondering how much a new lid would cost if I took it into Apple? I know it won't be covered under AppleCare as its accidental damage but want to know whether its worth paying for to have a once again dent free Macbook Pro .
    As a side note, do Apple upgrade your hardware at all, such as the hard drive or memory? I know it would be cheaper to do it at an independant computer shop or by myself but would like to explore my options first.

    http://www.ifixit.com/
    See my reply to your second question elsewhere.

  • Acmcneill1ug 14, 2014 7:16 AM I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great. When check how much memory I am using, with only Safar

    Acmcneill1ug 14, 2014 7:16 AM
    I have IMac OSX 10.9.4, 4GB,Processor 3.06 with Intell2Duo. I would like to check for Malware. I run a TechTool Pro 6 every month and that comes up great.
    When check how much memory I am using, with only Safari open I am using 3.9 and more of her 4.0 memory. She is very. very slow in processing. I had 4000
    trash to clean out and it took her over an hour to expel. Also for some reason Safari will not allow me to click on a link, in my G-mail, and let it go to the page.
    It has a sign saying a pop-up blocker is on and will not let me do it. I must open the stamp to look at my e-mails and if I have redirected link now I can do it.
    I have not changed my preferences so where is this pop-up blocker?
    I have looked at preferences on Safari and Google, which I do not understand Google, and do not see where this blocker could be.
    Malware is something I want to make sure is not on my computer. Tech Tool Pro 6 is all I know of and it does not detect Malware.
    Help.
    Ceil

    Try Thomas Reed's Adware removal tool. He posts extensively in the communities.
    Malware Guide - Adware
    Malware Discussion

  • How do I find out how much of my hard drive space is used up

    I have a Mac OS X Version 10.7.5. Processor 2.66 GHz Intel Core 2 Duo; Memory 2 GB 1067 MHz DDR3. Computer is running very slow. I cleared downloads and reset Safari, emptied trash, etc. How  can I find out how much space I have left on my hard drive?

    As you appear to have at least OS 10.7 installed, you can simply highlight your hard drive and press the SPACE bar to get this:

  • I bought an Ipod touch online, how much would it be to get the screan fixed?

    I fell off my back and the top corner of my ipod touch was cracked. How much would it coast to get this fixed? Would they even though I bought it online used?

    Apple will exchange your iPod for a refurbished one for this price. They do not fix yours.
    Apple - iPod Repair price                       
    A third-party place like the following maybe less. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Replace the screen yourself if you are up to it
    iPod Touch Repair – iFixit

  • I cracked my iPad 3. How much would it be to repair the screen?

    Hello, I have recently cracked my ipad. I would like to get that apple device repaired. It is the ipad 3 by the way.PLEASE HELP! How much would it cost to get the screen repaired by Apple?

    Apple's Limited Warranty http://www.apple.com/legal/warranty/ for iPad excludes coverage for damage resulting from accident, disassembly, unauthorized service and unauthorized modifications.
    Apple will provide a replacement iPad for:
    iPad model
    Out-of-Warranty Service Fee
    New iPad
    $299
    iPad 2, iPad
    $249
    Make a Genius Bar Reservation
    http://www.apple.com/retail/geniusbar/
    You can get the glass replaced at 3rd party repair sources for less $, however, the Apple warranty will be voided.
    iPad Repair & Screen Replacement Services
    http://www.ifixyouri.com/16-ipad-repairs
    RepairZoom iPad Repair
    http://www.repairzoom.com/ipad-repair.html
    Mission Repair
    http://www.missionrepair.com/Apple_iPad_Repair_Services_s/431.htm
    iGadgetResQ
    http://www.igadgetresq.com/ipad-repair/
     Cheers, Tom

  • About how much would it be to be fixed by apple

    my ipod 4th generation is cracked so bad i cant hit the slide to unlock bar anymore it doesnt register my touch hitting that spot about how much would it be to get it fixed because im going to dc in a couple weeks and thats a long ride and i want to have something to do

    Apple will not fix your screen. They will replace your iPod for $99, or $199 if it is the 64GB model.

  • I have an iPhone 4, I bought it May this year. My screen is completely smashed and I'm not insured. How much would it be to fix?

    I threw it in my temper and the whole front screen is smashed. It's a White iPhone 4. I can't see the screen. But I'm still recieving calls as it's ringing when someone calls me, and I'm recieving texts. But can't do nothing with it. How much would it cost? I entered my serial number and it says
    Your product is covered for eligible hardware repairs and service under Apple's Limited Warranty.
    Estimated Expiration Date: 14 May 2012.
    Does this mean they fix this for free? Please help!

    Damage is not covered by warranty, like any other product.
    For an iphone 4 in the U.S it would be $149
    Out-of-Warranty Service
    If you own an iPhone that is ineligible for warranty service but is eligible for Out-of-Warranty (OOW) Service, Apple will service your iPhone for the Out-of-Warranty Service fee listed below.
    iPhone model
    Out-of-Warranty Service
    iPhone 4S
    $199
    iPhone 4, iPhone 3GS,
    iPhone 3G, Original iPhone
    $149
    A $6.95 shipping fee will be added if you arrange service online or by calling Apple Technical Support. All fees are in U.S. dollars and are subject to local tax.
    When setting up out-of-warranty service, Apple will request credit card pre-authorization for the maximum service fee listed above.  This amount will be deducted from your credit limit. The final service fee we charge will be determined during testing and may be less than the service fee listed above.
    Certain damage is ineligible for out-of-warranty service, including catastrophic damage, such as the device separating into multiple pieces, and inoperability caused by unauthorized modifications. However, an iPhone that has failed due to contact with liquid may be eligible for out-of-warranty service.
    Apple reserves the right to determine whether or not your iPhone is eligible for Out-of-Warranty service. iPhones that are repaired or replaced have a 90-day limited hardware warranty or assume the remainder of your standard warranty or AppleCare service contract coverage, whichever is longer. Please see Apple's Repair Terms And Conditions for further details.

  • How much would it be to add 2 more lines with unlimited talk and text?

    I would like to find out how much three lines would cost with unlimited talk and text

    BE WARNED!!!!
    I was just hammered by Verizon because I added 2 lines. I brought two family members over from other carriers to our "share everything plan". The iphones we ordered came with pre-assigned numbers. The family members wanted to keep their existing numbers and Verizon said to "just have them ported over".
    We didn't want, or had any use for the numbers that Verizon assigned the two new phones. When I got the phones I called the Port center at Verizon and they walked me through getting the numbers over from the other network. They had me activate the phones and then ported the numbers over (spend about a day on the process).
    So I just got my bill and was outraged. Verizon charged me $78 for the lines of the phones they sent. I was charged $78 just to activate the line so that a number could be ported over. So now I have an extra $156 on my bill not to mention the $$$ they added on to have the numbers ported over. So adding two people to my family share plan cost me $327.

Maybe you are looking for

  • Missing "illustrations" tab and read-only information

    After a Windows XP Home repair, no illustration tab and read-only information by new music downloads. Have most recent itunes. Can someone help me...please?

  • IDOC segment for VBKD-BSTKD_E

    Hi, I am using ORDERS04 as basic type for order creation from iDOC. For one of my requirment I need the iDOC segment for VBKD-BSTKD_E field. The field is in purchase order data at header > Ship to party view > Purchase order no. Thanks Sanjay

  • Wifi pcmcia card with antenna for PB g4...

    Will any wireless card work in the pcmcia slot of my PB G4 or does it need to be Apple specific? I already have the built in Airport extreme but I want to get a pcmcia card that has an external antenna attachment. My neighborhood has free wifi spots

  • Iphoto keeps on finding about 1500 new picture and wanting to import them.

    Any ideas on how to stop this ? I have removed all photos onto external drive and delete all the backup folders. but these 1500 photos keep on coming back, very frustrating !!!! Grrrr any ideas?

  • C2-01 Camera Problem - Displays Camera On Standby

    My cellphone is Nokia c2-01. When clicked on camera, it shows 'camera on standby'. My memory care is ok and has large space. I don't know how to fix it. Please help. Thanks