How do you avoid the ORA-01555 error in oracle 8i?

please give me examples.

i have to disagree with gopalora
Increasing rollback segments will make large updates/inserts not to fail.
Do frequent Logical Commits will make large updates/inserts not to fail (besides the performance issues).
What you have is a long query failing from frequent updated table,
In any point while the query is running, some rows get updated, making the resultset inconsistent.
Action
Old Snapshot >>>>>>>>>>>>>>>>>>>>>>>>>> |
Query. ----------------------------------------------------------------x--------------------------------------------->
Update >>>>>>>>>>>>>>>> U
Commit >>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> ^
If that's the case then this should help.
Workaround:
Try splitting the data you are retrieving. ( by Date for instance).
If you are retrieving a whole year get it month by month instead.
I hope this helps.

Similar Messages

  • How do you fix the itunes R6034 error

    How do you fix the R6034 error with itunes?

    A few more details....
    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • How can you avoid the empty line?

    hi all,
    i looked around quite a bit and didn't found an answer to this very common problem.
    i used this blog:
    Solution to the problem encountered using Variable Substitution with XI-SP12
    for using a dynamic filename.
    the problem i get is the file adapter create a empty line instead of the FILENODE which i need to be suppressed and not written to the file.
    is it possible?
    regards,
    roi grosfeld

    Hi,
    Well thats good question. you can't test it in test tab of mapping.
    It will give you exception like something below
    RuntimeException in Message-Mapping transformation: Runtime exception
    Here you can create the file name in Mapping either by using various APIs as well as Sender side filed values and can pass to the UDF that you will create for dynamic filename.
    File with same name will be created. This is specific to DynamicConfiguration class which deals with the values at runtime.
    Thanks
    Swarup

  • How do you stop the "DNS lookup error"!!!

    I upgraded 3GS to 4.3.1 last year. I upgraded my Dell 1st then synced my iPhone to upgrade it. Many apps that
    were on my phone remained in my Dell...I really hate the PC but I need all my data..pix etc & on the PC on my iPhone. The Apple Store @ Stanford said to bring my phone & PC into the store...the cost to fix the old PC & download ALL to my iPhone is frightening! I have bought apps that don't show on my phone!...then "DNS lookup error" prevents me to get into aol mail. HELP I know I need iOS upgrade, but the cost of fixing the PC & everything has me screaming @ things that need upgrades Toooooo often HELP

    The backup does not include songs at all or apps or movies.

  • How do you avoid the "Please insert media" message?

    Is there a way to make Encore proceed with the next burn when I put the blank disk in? The "please insert next media" message will not go away on its own. I put the disk in, then I have to wait a half minute or so for the disk to load, then hit 'Enter.' Otherwise, the program will not proceed. Shouldn't the program (or the computer) sense that a disk has been inserted? Not a huge problem, but when I burn multiple copies with a single drive, it would be nice to just pop the next disk in and walk away to do something else.

    As Stan said...
    Create an ISO or folder on your hard drive and then use the FREE http://www.imgburn.com/index.php?act=download to write files or folders or ISO to disc (send the author a PayPal donation if you like his program)
    Or... buy a dedicated and automated duplication machine... No... I don't have a brand/model, I only know that I have seen such mentioned

  • When will ora-01555 error not be recorded in alert file?

    Application side repeatably gets ora-01555 error, but from alert log, there is no such error recorded. I recalled normally this error will be recorded, so under which condition we can't find this error in alert file?

    You would get ORA-0155 on a LOB if
    a) the LOB storage has been defined with PCTVERSION which is low (Oracle doesn't use Undo Segments but uses space in the LOB Segment itself and if this is inadequate for multiple updates, an ORA-0155 is raised, which is not really related to Undo Segments but the space in the LOB segment)
    b) the LOB storage has been defined with RETENTION which is low
    (Even if you increase undo_retention, you'd have to modify the LOB segment to PCTVERSION and then back to RETENTION for it to use the new undo_retention value).
    See MetaLink Notes 162345.1, 66431.1 and 563470.1
    Since the ORA-01555 error doesn't really relate to Undo segments, I believe that it would not be reported in the alert.log file -- but I haven't verified this.
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • Does RULE hint cause ORA-01555 errors ?

    DB Version:9.2.0.5.0
    OS:SunOS 5.9
    Our DBA is saying that the RULE hint in the below SQL might be causing ORA-01555 error. Is it true? Does RULE hint cause ORA-01555 errors
    SELECT /*+ RULE */  COUNT(*)
      FROM ( SELECT /*+ RULE */  DISTINCT CAR_HDR.CAR_NBR AS A1, CAR_HDR.PLT_ID AS A29,
      CAR_HDR.PKT_CTRL_NBR AS A2, CAR_HDR.TOTAL_QTY AS A21, CAR_HDR.STAT_CODE AS A6,
      CAR_HDR.CURR_LOCN_ID AS A12,
      CAR_HDR.CAR_NBR  AS A145,
      CAR_HDR.WN_NBR AS A4, CAR_HDR.PCALL_NBR AS A7, CAR_HDR.CHAIN_CNT AS A119,
      CAR_HDR.SHPMT_NBR AS A35, LPN_HDR.WHSE AS A105, CAR_HDR.MISC_CAR AS A146, ''  AS A138,
      CAR_HDR.CHUTE_ID AS A132, CAR_HDR.MOD_DATE_TIME AS A82, LPN_HDR.LOCN_CLASS AS A106,
      LPN_HDR.AREA AS A107, LPN_HDR.ZONE AS A108, LPN_HDR.AISLE AS A109, LPN_HDR.BAY AS A110,
      LPN_HDR.LVL AS A111, LPN_HDR.POSN AS A112
          FROM INV_MASTER , CAR_DTL , LPN_HDR , CAR_HDR 
           WHERE CAR_HDR.CAR_NBR=CAR_DTL.CAR_NBR(+)
           AND CAR_HDR.CURR_LOCN_ID=LPN_HDR.LOCN_ID(+)
           AND CAR_HDR.WHSE=LPN_HDR.WHSE(+)
           AND CAR_DTL.SKU_ID=INV_MASTER.SKU_ID(+)
           AND CAR_HDR.CT_SEQ = 'ALB10'
           AND INV_MASTER.INV_CODE = 98
           AND INV_MASTER.TRACK_CODE = 'P10' )
          

    user636669 wrote:
    DB Version:9.2.0.5.0
    OS:SunOS 5.9
    Our DBA is saying that the RULE hint in the below SQL might be causing ORA-01555 error. Is it true? Does RULE hint cause ORA-01555 errorsThe full statement is causing the ORA-01555 error. Each line of the statement is important therefore each line is reponsible for the error. I personally think the DISTINCT keyword has a bigger influence than the RULE hint.
    I suggest to check what you want to do with that count result. maybe there are better ways to get the same result. Maybe you can even ignore the distinct keyword or remove some outer joins. Using the CBO might result in the same plan as using the RBO, so you you will never know if that removing the hint will help or if if you'll get the same problem later again.

  • How to solve the ora-12516 error

    Hi,
    I'm sorry to say that I have a problem which should be solved as quickly as possible. Can you help me ? The problem is as follows:
    os:windows 2000
    db version:Oracle Database 10g Express Edition』(XE)
    After using for a while, the ora-12516 error occurs. However, scores of minutes later, the error can be solved automatically. How to avoid this kind of error ?
    Thank you.

    Are you connecting and disconnecting many times quickly?
    You may be hitting the problem where the listener thinks the database has run out of connections because the database doesn't inform the listener that connections have been closed fast enough.
    Try increasing the value of the processes parameter in the database.

  • How can I avoid the display of ORA-31684 during impdp import?

    Hello,
    I'm working on a cross-platform tablespace migration (from SunOS to RedHat Enterprise Linux).
    During the import with DataPump, I have several ORA-31684 error messages ("Object type TYPE : "OWNER"."OBJ_NAME" already exists"). Some of my TYPE objects exist already in the Linux instance of the DB. The messages appear only for 4-5 TYPE objects, while overall I have around 180 TYPE objects owned by the schema owner.
    How can I avoid the display of these error messages? I don't want to drop the TYPE objects individually from the Linux instance, as the object list may vary in time.
    Thank you,
    Adrian

    Hi,
    There is no way to tell the impdp to ignore those errors. They will be printed to the error log and to the screen where the job is being run.
    Dean

  • With the new Iphone update, how do you avoid Facebook syncing your friends into your contacts?

    With the new Iphone update, how do you avoid Facebook syncing your friends list with your contacts??

    The iphone will sync itunes content with one computer at a time.  If you sync to another it will erase the current content from the iphone and repalce with content from the new computer.

  • How can I avoid the Local storage pop-up question dialog box during playing you tube vedios ?

    How can I avoid the Local storage pop-up question dialog box during playing you tube vedios ?

    You might try tweaking your global privacy settings.  I suspect it's set to "always ask."
      Go to this page -- http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager02.htm l -- which contains the settings panel for Flash Player, and click on the various "deny" buttons to disable this.  (It's a good idea to click on all the tabs to check the settings.)
    If this works for you, please post back.  (I know it worked for me.)
    Ortho_Fan
    (not a techie)

  • How do you use the wdeploy tool in iPlanet Web Server with Windows 2000 Server?

    I found this on the knowledge base, but only described how to use this with Unix. Does this work with Windows? How do you set the IWS_SERVER_HOME environment variable as well? I don't see it in the file.
    Thanks

    Hi,
    This is pretty common scenario. The best way to achieve this is to split your servers using a collection and deploy a different client settings. You could target your collection using the OS or an OU in AD. There are many option there.
    You could also limit the access to the Server collection using Role Based Access to avoid any human "errors" on these collections. Users without rights to these collection just won't see them.
    https://technet.microsoft.com/en-us/library/gg682067.aspx?f=255&MSPPError=-2147217396
    http://blogs.technet.com/b/configmgrteam/archive/2011/09/23/introducing-role-based-administration-in-system-center-2012-configuration-manager.aspx
    Benoit Lecours | Blog: System Center Dudes

  • ORA-01555 error ?

    I found one ora-01555 error in alert log at 14:37PM.But when i run the following query
    select ssolderrcnt from v$undostat where to_char(begin_time,'hh:mi:ss')='14:00:00' and to_char(end_time,'hh:mi:ss')='15:00:00'
    no rows selected is getting
    It has to show 1 as ora-01555 occured at 14:37pm.
    Whats wrong.?

    g, the reference material really does not apply to the question of this thread which is finding the v$undostat information for the time period when an ORA-015555 error occurred.
    Try this:
    select * from v$undostat
    where ssolderrcnt <> 0
    or nospaceerrcnt <> 0
    This should find all v$undostat periods where a 1555 occurred along with periods where you ran short of undo tablespace.
    Also v$undostat is only populated where undo management is in effect. There should be 404 rows in this view if undo management is in effect otherwise this view is not useable for this purpose.
    HTH -- Mark D Powell --

  • How can I avoid the need to OFTEN refresh or recover HP 2000 notebook?

    How can I avoid the need to OFTEN refresh or recover HP 2000 notebook? Windows 8.0.

    I found your support page by searching E0M18UA#ABA (as opposed to EOM18UA#ABA) which I assume was a simple typo. To answer your original question, the answer is to identify and isolate the cause of the errors and issues you are experiencing. Once you identify each issue, you can find what it takes to get beyond them without having to refresh or recover so frequently.
    You can only troubleshoot and identify the issues that are currently happening. If you are getting freezing right now, first take a look at this document specific to the freezing to narrow down the cause: Computer Locks Up or Freezes (Windows 8)
    A link to this document is contained in the previous one, but it is worth pointing out that this might be valuable to test for hardware failures: Testing for Hardware Failures (Windows 8)
    Another valuable tool when trying to identify the source of the problems, is to perform a clean boot after having one of the issues and trying to recreate it. This shows how to  remove  startup items. A good strategy is to disable half of the available items first, then restart and try to recreate the issue. If you cannot recreate it then perhaps there is a problematic startup item. If you can recreate it then disable half more, and repeat a few times until you empty the startup items.: How to perform a clean boot in Windows
    I hope this helps, and by no means is this a recipe to fix your current issues, but a few strategies to help you better identify the issues.
    TwoPointOh
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos, Thumbs Up" on the bottom to say “Thanks” for helping!

  • I have made a book of my I Photo pictures. In certain layouts there is a textframe. How can I avoid the frame becoming visible in the print if I don't want to write anything? Should I just leave it or should I delete the text "Write your text here" ?

    I have made a book of my iPhoto pictures. In certain layouts there is a text frame. How can I avoid the frame becoming visible in the print if I don't want to write anything?  Should I just leave it untouched or should I delete the instructing text "Write your text here"?

    Most pages have layouts for pictures only or pictures with text boxes. Either select the same layout for that page but the one without the text box or put a space in the text box.
    Putting a space in the text box will avoid getting the warning when ordering that there's an unfilled text box in the book. The box will not be visible in the final product.  You can and should check the book before ordering by previewing it as described in this Apple document: iPhoto '11: Preview a book, card, or calendar before you order or print it
    Happy Holidays

Maybe you are looking for

  • TS1424 i have just done the latest itunes update and now have the following message come up when i try to open itunes

    i have just installed the latest update and the following message has come up.  Text box - Unable to locate component.  Message - the application failed to start because MSVCR80.dll was not found.  Re-installing the application may fix the problem. I

  • Can not install iTunes on Windows &

    Ok I got a new eMachine the other day to replace my old out of date PC. I can download iTues but when I double click the installer nothing happens. It did ask me if I trusted the source of the download and I said I did but then nothing happens. I ran

  • PB 12.1" screen issue

    Are the passive and active matrix screens on the G3 12.1" PB's completely interchangeable? Can I just replace a passive with an active with no changes inside (inverters or whatever)? PB G4 1.33 Ghz 15 PB 170 8mg OS 7.1   Mac OS X (10.3.4)  

  • 2 sql loader questions

    Hello, I am going to be performing a data load with sql loader on approx 60 tables. For each table I have one csv and one ctl file. I'd like to run a file that will batch all the ctl files into one... is this possible? So that the person who has to l

  • Import von swf-Dateinen ist nicht vollständig

    Hallo und guten Tag, ich habe für eine Teil- Demo eine Ausschnitt-swf-Datei mit einigen animierten Markern (z. B. Red Arrow Circle Hand.swf) erstellt. Nach dem Import der swf-Datei in die Haupt-Datei werden zwar alle Folien korrekt gezeigt (auch die