ORA-08176: consistent read failure; rollback data not available

Hi,
We implemented UNDO management on our servers and started getting these errors for few of our programs.:
ORA-08176: consistent read failure; rollback data not available
These errors were not coming when we were using the old rollback segments and we have not changed any code on our server.
1. What is possibly causing these errors?
2. Why did they not surface with rollback segments but started appearing when we implemented AUM and Temporary TS (instead of fixed TS used as temporary TS).
Our environment:
RDBMS Version: 9.2.0.5
Operating System and Version: Windows 2000 AS SP5
Thanks
Satish

NOt much in the alert.log. I looked at the trace file, it also does not have much information:
ORA-12012: error on auto execute of job 7988306
ORA-20006: ORA-20001: Following error occured in Lot <4407B450Z2 Operation 7131> Good Bad rollup.ORA-08176: consistent read failure; rollback data not available
ORA-06512: at "ARIES.A_SP$WRAPPER_ROLLUPS", line 106
ORA-06512: at line 1
*** SESSION ID:(75.13148) 2004-11-23 09:16:14.281
*** 2004-11-23 09:16:14.281
ORA-12012: error on auto execute of job 7988556
ORA-20006: ORA-20006: Following error occured in Lot <3351A497V1 Operation 7295> For No FL Rollup, Updating T_GOOD.ORA-08176: consistent read failure; rollback data not available
ORA-06512: at "ARIES.A_SP$WRAPPER_ROLLUPS", line 106
ORA-06512: at line 1
*** SESSION ID:(75.16033) 2004-11-23 09:28:10.703
*** 2004-11-23 09:28:10.703
The version we have is :
Oracle9i Enterprise Edition Release 9.2.0.5.0 - Production
PL/SQL Release 9.2.0.5.0 - Production
CORE 9.2.0.6.0 Production
TNS for 32-bit Windows: Version 9.2.0.5.0 - Production
NLSRTL Version 9.2.0.5.0 - Production
Thanks
Satish

Similar Messages

  • How can I solve ORA-29278: SMTP transient error: 421 Service not available

    Hi
    I have two different Solaris Server (Server1 & server2).
    In both the server SMTP server is configured.
    In these two solaris server (Server1 & server2) we have installed Oracle 9i
    I am using client machine to execute the following procedure.
    When I connect to server1 (using SQL plus) and execute the following procedure, it works fine, and able to send emails properly.
    But when I connect to server2 (using SQL plus) and execute the following procedure, I get the follwoing error.
    Could you please help me to resolve this?
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    SQL> set define off
    SQL> set serveroutput on size 1000000
    SQL> BEGIN
    2 mail_files( 'localhost',
    3 'Frm',
    4 '[email protected]',
    5 'From production',
    6 'Test message from production',
    7 9999999999,
    8 NULL,
    9 NULL,
    10 NULL,
    11 0 );
    12 END;
    13 /
    BEGIN
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 327
    ORA-06512: at "PROD_L.MAIL_FILES", line 238
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at line 2
    SQL>

    Hi
    I have two different Solaris Server (Server1 & server2).
    In both the server SMTP server is configured.
    In these two solaris server (Server1 & server2) we have installed Oracle 9i
    I am using client machine to execute the following procedure.
    When I connect to server1 (using SQL plus) and execute the following procedure, it works fine, and able to send emails properly.
    But when I connect to server2 (using SQL plus) and execute the following procedure, I get the follwoing error.
    Could you please help me to resolve this?
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    SQL> set define off
    SQL> set serveroutput on size 1000000
    SQL> BEGIN
    2 mail_files( 'localhost',
    3 'Frm',
    4 '[email protected]',
    5 'From production',
    6 'Test message from production',
    7 9999999999,
    8 NULL,
    9 NULL,
    10 NULL,
    11 0 );
    12 END;
    13 /
    BEGIN
    ERROR at line 1:
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at "SYS.UTL_SMTP", line 17
    ORA-06512: at "SYS.UTL_SMTP", line 96
    ORA-06512: at "SYS.UTL_SMTP", line 327
    ORA-06512: at "PROD_L.MAIL_FILES", line 238
    ORA-29278: SMTP transient error: 421 Service not available
    ORA-06512: at line 2
    SQL>

  • ORA-29278: SMTP transient error:421 Service not available on oracle 10g

    HIi,
    I am trying to send e-mails by using PL/Sql procedure . I am using UTL_MAIL/UTL_SMTP on oracle 10g R1 database.
    There is no problem in creating procedure,but when i am doing execution i am getting the mention error.
    I am trying to send mail with attachment as excel file.
    ORA-20001: The following error has occured: ORA-29278: SMTP transient error:
    421 Service not available
    ORA-06512: at "SCOTT.MAIL_ATT_RAW", line 64
    ORA-06512: at line 1
    -----my procedure code------
    CREATE OR REPLACE PROCEDURE mail_att_raw(filename varchar2) AS
    fil BFILE;
    file_len PLS_INTEGER;
    MAX_LINE_WIDTH PLS_INTEGER := 54;
    buf RAW(2100);
    amt BINARY_INTEGER := 2000;
    pos PLS_INTEGER := 1; /* pointer for each piece */
    filepos PLS_INTEGER := 1; /* pointer for the file */
    filenm VARCHAR2(50) := filename; /* binary file attachment */
    data RAW(2100);
    chunks PLS_INTEGER;
    len PLS_INTEGER;
    modulo PLS_INTEGER;
    pieces PLS_INTEGER;
    err_num NUMBER;
    err_msg VARCHAR2(100);
    resultraw RAW(32000);
    BEGIN
    /* Assign the file a handle */
    fil := BFILENAME('BFILE_DIR', filenm);
    /* Get the length of the file in bytes */
    file_len := dbms_lob.getlength(fil);
    /* Get the remainer when we divide by amt */
    modulo := mod(file_len, amt);
    /* How many pieces? */
    pieces := trunc(file_len / amt);if (modulo <> 0) then
    pieces := pieces + 1;end if;/* Open the file */
    dbms_lob.fileopen(fil, dbms_lob.file_readonly);/* Read the first amt into the buffer */
    dbms_lob.read(fil, amt, filepos, buf);/* For each piece of the file . . . */
    FOR i IN 1..pieces LOOP/* Position file pointer for next read */
    filepos := i * amt + 1;/* Calculate remaining file length */
    file_len := file_len - amt;/* Stick the buffer contents into data */
    data := utl_raw.concat(data, buf);/* Calculate the number of chunks in this piece */
    chunks := trunc(utl_raw.length(data) / MAX_LINE_WIDTH);/* Don't want too many chunks */
    IF (i <> pieces) THEN
    chunks := chunks - 1;
    END IF;/* For each chunk in this piece . . . */
    FOR j IN 0..chunks LOOP/* Position ourselves in this piece */
    pos := j * MAX_LINE_WIDTH + 1;/* Is this the last chunk in this piece? */
    IF (j <> chunks) THEN len := MAX_LINE_WIDTH;
    ELSE
    len := utl_raw.length(data) - pos + 1;
    IF (len > MAX_LINE_width) THEN
    len := MAX_LINE_WIDTH;
    END IF;
    END IF;/* If we got something, let's write it */
    IF (len > 0 ) THEN
    resultraw := resultraw || utl_raw.substr(data, pos, len);
    END IF;
    END LOOP;/* Point at the rest of the data buffer */
    IF (pos + len <= utl_raw.length(data)) THEN
    data := utl_raw.substr(data, pos + len);
    ELSE
    data := NULL;
    END IF;/* We're running out of file, only get the rest of it */
    if (file_len < amt and file_len > 0) then
    amt := file_len;
    end if;/* Read the next amount into the buffer */dbms_lob.read(fil, amt, filepos, buf);
    END LOOP;/* Don't forget to close the file */
    dbms_lob.fileclose(fil);
    SYS.UTL_MAIL.SEND_ATTACH_RAW(sender => '[email protected]', recipients => '[email protected]',subject => 'Testmail', message => 'Hallo', attachment => resultraw, att_filename => filename);
    EXCEPTION
    WHEN OTHERS THEN--dbms_output.put_line('Fehler');
    raise_application_error(-20001,'The following error has occured: ' || sqlerrm);
    END;
    Please suggest me what settings i need to change. This same procedure is running on another maching,but not on my machine.
    If somebody is having any other simple procedure ,please help me.
    My SMTP port -25
    Thanks in advance.

    Hi Justin,
    Please get the answers of your queries
    The error you're getting is coming from the SMTP server you are trying to connect to.
    - What SMTP server is your database configured to use?
    Reply - I am using IIS(5.0)
    - What SMTP server is the database where this code is working configured to use?
    Reply - Same IIS. Database is installed locally on my machine only. I am trying to send mail locally to me only,Not to the outside person.
    - Has the SMTP server been configured to allow connections from both machines?
    Reply - Yes
    One more query, do we really require to set the SMTP_OUT_SERVER parameter for SCOPE=BOTH
    ALTER SYSTEM SET smtp_out_server = '172.16.1.10' SCOPE=BOTH
    I am not able to set like this for BOTH,only for SPFILE i can set ?.
    My SMTP Server IP=172.16.1.10
    PORT- 25
    Thanks
    Manoj

  • ORA-29278: SMTP transient error: 421 Service not available

    Hi all,
    I'm using Oracle 10g working on Windows XP Home.
    I'm trying to send a basic mail from my stored procedure.
    When I tried to run the code, I get ORA-29278: SMTP transient error: 421 Service not available.
    Below is the code I'm trying.
    CREATE OR REPLACE PROCEDURE SEND_MAIL (
    msg_to varchar2,
    msg_subject varchar2,
    msg_text varchar2 )
    IS
    c utl_smtp.connection;
    rc integer;
    msg_from varchar2(50) := 'Oracle9.2';
    mailhost VARCHAR2(30) := '127.0.0.1'; -- local database host
    BEGIN
    c := utl_smtp.open_connection(mailhost, 25); -- SMTP on port 25
    dbms_output.put_line('ok');
    utl_smtp.helo(c, mailhost);
    utl_smtp.mail(c, msg_from);
    utl_smtp.rcpt(c, msg_to);
    utl_smtp.data(c,'From: Oracle Database' || utl_tcp.crlf ||
    'To: ' || msg_to || utl_tcp.crlf ||
    'Subject: ' || msg_subject ||
    utl_tcp.crlf || msg_text);
    utl_smtp.quit(c);
    EXCEPTION
    WHEN UTL_SMTP.INVALID_OPERATION THEN
    dbms_output.put_line(' Invalid Operation in Mail attempt using UTL_SMTP.');
    WHEN UTL_SMTP.TRANSIENT_ERROR THEN
    dbms_output.put_line(' Temporary e-mail issue - try again');
    dbms_output.put_line (sqlerrm);
    WHEN UTL_SMTP.PERMANENT_ERROR THEN
    dbms_output.put_line(' Permanent Error Encountered.');
    END;
    Below are the possibilites I tried..
    I tried to ping localhost.. This is the output I get
    C:\Documents and Settings\Me>ping localhost
    Pinging polasa [127.0.0.1] with 32 bytes of data:
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Reply from 127.0.0.1: bytes=32 time<1ms TTL=128
    Ping statistics for 127.0.0.1:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
    Approximate round trip times in milli-seconds:
    Minimum = 0ms, Maximum = 0ms, Average = 0ms
    In one of the thread, a user suggested to do the following
    Go to Control Panel->Add or Remove Programs->Click on
    Add/Remove Wndows Components
    Check IIS check box.
    Select Internet Information Service (IIS) option and click on Details button
    Check whether SMTP Service is checked or not.
    If not selected then select SMTP check box.
    This process should be done on server.
    It will help out from ORA-29278: SMTP transient error: 421 Service not available
    problem.
    There is no IIS in my Windows Components..
    Any suggestions? Thanks in advance

    It sounds like you don't have an SMTP server running on your local machine.
    Even if you install IIS (or some other SMTP server), that is probably not enough to send email outside of your machine because your machine is unlikely to be trusted by the downstream mail servers. If you are running this in a company, you'll need to talk to your company's mail admin to determine where the corporate SMTP server is running. If you running this at home, you'll need to find out from your ISP what SMTP servers are available to you.
    Justin

  • Data Not Available. Statspack data is not available for this database insta

    Hi,
    while trying to configure the 9i db on grid control I installed the statspack data while configuring it. But now when I try to see the historical data as part of the performace tab for the 9i db it complains as below
    Data Not Available. Statspack data is not available for this database instance. Make sure that Statspack is installed on the target instance.
    Please shed some of your inputs.
    thanks in advance
    PK

    Hi,
    I think it is not installed.
    Using 1097660794 for database Id
    Using 1 for instance number
    , stats$database_instance di
    ERROR at line 9:
    ORA-00942: table or view does not exist
    I did exactly as it said while configuring the db. but seems like something is wrong. Can you please advise me on how can I install it in commandline.
    Thanks
    PK

  • Disk quota data not available.

    I've got quotas enabled for my home dir volume, quotas set for all my users, and they appear to be working (logged-in users show the appropriate amount of space remaining in their home dirs).
    But clicking on the Quotas section of Server Admin nets me a blank log page with "Data not available" at the top.
    I've seen the quota chart on this machine before in earlier test builds, so I know what I should be expecting, but can't figure out why it's not showing up. Any ideas?
    How do I rebuild or reindex the quota system, if that's what I need to do?
    Thanks!

    We are having the same issue since upgrading to 10.4.11. Currently we are investigating the possibility of accessing this information through the terminal using the 'quota' tools. I do not have ready access to the server though so progress is slow.
    As far as I can make out if you can run 'fsck' this will the ASCII files that the user and group quotas are stored in and may effect a repair. I haven't yet been able to try this to see if it will work.
    Anyone else got any suggestions?

  • Today at 8am est my card was charged but when checking order status it saids expected ship date not available at this time and  it also saids we received your order and it is in process . payment not taken yet

    today at 8am est my card was charged but when checking order status it saids expected ship date not available at this time and  it also saids we received your order and it is in process . payment not taken yet 
    but card was charged full amount and i havent gotten anything else been checking for update all day and got nothing i did order iphone 6 plus at 3:01am and everything went through and i was finsihed at 3:06am

        chriss2633,
    I know how exciting it is to have all the information on the new phone. I did send you a Direct Message. Can you please respond back to that message? Looking forward to hearing back from you.
    KevinR_VZW
    Follow us on Twitter @VZWSupport

  • Mail Error: ORA-29278: SMTP transient error: 421 Service not available

    I write process to send mail, it is running ok, but I have error ORA-29278: SMTP transient error: 421 Service not available.
    SMTP Host Address : localhost
    SMTP Host Port : 25
    When I connect to database as SYS and run : exec apex_mail.push_queue result is :
    Pushing email: 1225814842675154
    Pushed email: 1225814842675154
    PL/SQL procedure successfully completed.
    Please explain me what is happened!

    Hi;
    What is DB version?
    Please see:
    From Master Note For PL/SQL UTL_SMTP and UTL_MAIL Packages [ID 1137673.1] check Note 604763.1 "ORA-29278: SMTP transient error: 421 Service not available" When Using UTL_SMTP to Send Email.
    Regard
    Helios

  • "Expected Ship Date: Not available at this time." Please help.

    I ordered an iphone 6 plus gold at 12:01 AM PST. My email confirmation says "Deliver By: 09/19/2014". However, when I go to check the status of my order it says: "Expected Ship Date: Not available at this time." Please help. Thanks!
    Please PM with details if possible. Thanks in advance!
    Subject was edited by: Verizon Moderator

        Hello JFull14. Making sure that your order is still on track is very important. By chance, has there been an update to your order status screen? http://vz.to/Ulymw6
    If not, I have sent you a DM so we may help look into this.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • "Mobile Data Not Available", Nokia 700

    Hey all,
    I have a bare bones pay-as-you-go plan. All I get are free unlimited texts and free unlimited calls (within the country). I get no data and, frankly, I don't care for data. I do get annoyed that every so often while playing Angry Birds or using Nokia Maps or any of a number of other applications I will get the "Mobile Data Not Available" notice. How can I disable this notice? It is tiring and I KNOW I don't have Mobile Data. Duh! Thanks in advance for any help.

    Hello TheRooster, the games are provided with some advertising option. This is Because the games are provided for free. If you buy the full version of the games then this won't occur.
    Nokia C7

  • GL Data not available on report

    Hi All,
    I have a report which has been working fine. The report was based on cost for controlling cube which is based of WBS elements(cost).
    Now the report has been added with a column which gets its data from GL cube. I have added the 2 cubes in a multiprovider but cannot see the data for the column from GL.
    This same GL cube is being used on multiple other queries and has no problem.
    What could be the reason for the GL data not being displayed. I have also restricted to the respective infoproviders.
    Appreciate all the help.
    Kind Regards
    James

    hi,
    first of all check in tcode LISTCUBE for MP if you are getting data for any of the columns from GL cube.
    also check the characteristics from controlling cube and GL cube which are common and whether they have the same length ,  data types and values. The join at the MP level may not be working correctly which is why the data may be missing.
    regards,
    Arvind.

  • IPhone 6 - Expected Ship Date Not Available

    I preordered a 16GB space gray iPhone 6 shortly after 3:01 AM EST on Friday September 12.  In my confirmation email, it says the phone will be delivered by 9/19. However, when I look up my order number to track it, the Expected Ship Date is "Not available at this time".
    Any ideas what's going on? I see a pending item on my credit card for the full amount of my order.Verizon Wireless Customer Support

    I'm having same issue with my order.  I've called, and the folks have been really nice on the cust service line, but they weren't able to give me any info and they still didn't send me my confirmation email.  I was really hoping I would have my phone by 9/19, but at this point I'm kinda doutbful.  I would really appreciate the VZW folks to help me out here.  Did I mention I buy the caffeinated beverage of choice of any CSR who can help me out?!??  Thanks VZW, can't wait for my iphone 6 plus and volte!

  • PO - release dates not available in ME5A

    Dear All,
    For knowing PR date, release status, PO made, release status, I have the excel sheet generated from SAP.
    In this, the PO release date is not being generated. 
    Can you please check and let me know what to choose so that I get that info together with PO created date.
    If not available, can you please check possibility of creating the line item for our easy traking purposes.
    Please let know ASAP.
    Thanks
    Rajesh

    Hi
    ME5A report is only for PR related data  it will only show PO number which is created from PR and not the release date of PO.
    Use ME2N to get PO release related data with dynamic seletion
    Vishal...

  • Expected Ship Date:  Not available at this time.

    For those wondering where their previously promised phone is (and if they will ever see it), there is hope... Epilogue, still no ship date and still no official word from Verizon.
    <Chat transcript removed as proprietary information per the Verizon Wireless Terms of Service.>
    Message was edited by: Verizon Moderator
    If only Verizon's customer relations and notifications were as diligent as their moderators ;-)
    The gist of the chat was that there were "unknown delays in the shipment of HTC phones" and the best guess is shipping approximately a week after the initial promise date. Perhaps I'm the only one experiencing their "ship date" moving from a given date to the text, "Not available at this time", and therefore should consider myself "special".
    If anyone else is also special, please reply if only to have necessary evidence to escalate the communication issue either up the support chain or in effective social network forums.

    The irony of this dissertation is that the content in question of violating the ToC was actually a cleansed chat dialogue (all PII - Personal Identity Information - was obfuscated) that portrayed Verizon online support in a positive light as caring, resourceful, and responsive to an unfortunate situation where they failed to proactively notify customers of delays.
    It was shared with this community so that others in this situation could see both (a) the reason for the delay and (b) that someone at Verizon actually cares.
    For some reason, this caused a fellow consumer to register a complaint, perhaps it was motivated because they are dissatisfied with Verizon and do not like to see them portrayed so positively?
    The apparent necessity to police and educate posters in discussions is a natural self-appointed role well documented in the behaviors of social networks such as this. The unfortunate fallout is that the original message is too often lost in the educational discourse that ensues.
    To be clear, the original message is this:
    If your prepaid order for an HTC 8x has an expected ship date that changed from a given date to the text "not available at this time", fear not - the friendly and helpful live-chat people will tell you it is because of unforeseen delays with the hardware manufacturer and they are very sorry this was not communicated to you. Simply wait for an email that your phone has shipped - as they are unable to provide an updated expected ship date.

  • Expect Ship Date: Not Available At This Time?

    I preordered a 16GB space gray iPhone 6 shortly after 3:01 AM EST on Friday September 12.  In my confirmation email, it says the phone will be delivered by 9/19. However, when I look up my order number to track it, the Expected Ship Date is "Not available at this time".
    Any ideas what's going on? My card was charged.

    I too woke up early and experienced aweful process time.  I was on from 3:45AM to 5:10AM trying to complete my order.  When I finished, it said arrival on the 19th. Great, right?  Wrong.
    Next I got an email confirmation that said Shipped by the Oct 7th.  Wow that's a big delay!  The, when I pulled the pre order number up on the site, that the link in the email takes me too, the next day it said the 19th.  A few days later it said not available.  Today, it finally updates now shows the 7th?
    I get that it changed due to heavy demand but a few things bother me.
    1st I called support and they couldn't help, they said they see the note of the 7th and couldn't confirm where I saw the 19th originally.  Also they couldn't tell me when it would ship or provide any shipping confirmation.  It seems strange but not the most upsetting part.
    2nd, and more importantly.  I explained to support that I ordered 3 total devicies, all of which are being delayed for one device!  For myself, I ordered the 6+ space gray 64mb, for my wife the 6 silver 64mb, and my son a Galaxy S4 16GB.  I did not understand why, even though I did it as one order, my wife's and son's phones were being delayed. It appears that only the 6+ is in short supply, and what is the cause for this delay.  Everywhere it seems that there will be plenty of 6's out.  She explained to me they could rebuild the order, but I would lose my spot on the 7th if I did so for my 6+?  Is that really my only option?  I have to wait now until November just so my son and wife can have their phone sooner?  Or My wife and son have to wait until next month to get a phone I could go to the store and pick up tomorrow no problem?  This is aweful.
    I came from a (2nd largest) competitor, who I was with 8 years, and I've never seen anything handled like this on any pre-order with that provider.  I am starting to regret my last 2 years at VZW, I came for the coverage and found it's no better in my area, more expensive, and now this?  I am tempted to camp out with my old provider tomorrow and if I can land the phones switch back.  Sometimes actions speak louder than words.
    Good luck to everyone, maybe Apple can surprise everyone and get their supply up faster than the delay dates you have been given.

Maybe you are looking for