What can make a DBF going offline ?

Hello,
First post here...
I got an error that made 2 datafiles become offline. I had to recover them and it seems to work now.
I wonder what is the cause of that. My db (9i in Archivelog mode) is on a W2K Server.
Here is part of the alert.log:
Thu Apr 14 10:10:52 2005
Thread 1 cannot allocate new log, sequence 1132189
Checkpoint not complete
Current log# 3 seq# 1132188 mem# 0: L:\ORAHOME1\ORADATA\MYBASE\REDO03.LOG
Thu Apr 14 10:10:53 2005
Errors in file d:\orahome9i\admin\mybase\bdump\mybase_ckpt_5528.trc:
ORA-01171: datafile 29 going offline due to error advancing checkpoint
ORA-01122: database file 29 failed verification check
ORA-01110: data file 29: 'D:\ORAHOME1\ORADATA\MYBASE\MY_DATA_FILE.ORA'
ORA-01208: data file is an old version - not accessing current version
I have to precise that the datafiles are quite
small (ie <1GB) and that the problem occured during the production (not after any admin operation on the db).
The only preceding events that could be the cause of this problem, I think, are due to ARC process:
Thu Apr 14 10:10:49 2005
ARC0: Evaluating archive log 1 thread 1 sequence 1132186
ARC0: Warning. Log sequence in archive filename wrapped
to fix length as indicated by %S in LOG_ARCHIVE_FORMAT.
Old log archive with same name might be overwritten.
ARC0: Beginning to archive log 1 thread 1 sequence 1132186
Creating archive destination LOG_ARCHIVE_DEST_1: 'E:\ARCHIVELOGS_ORACLE\ARC32186.001'
ARC0: Completed archiving log 1 thread 1 sequence 1132186
I know that I should use %s instead of %S in my file mask.
But do you think that it could have been the origin of my problem ?
Thanks for any advice or idea to dig
Aurélien Bastardie

Your error is not related to the archive logs. Oracle offlined the datafiles because it could not update file header(s). The ORA-01122 indicates that the file was out of synch w/ the control file - most likely because it could not update the file - so it offlined it.
Check your system event logs for any disk related errors.
ORA-01171: datafile 29 going offline due to error advancing checkpoint
ORA-01122: database file 29 failed verification check
ORA-01110: data file 29: 'D:\ORAHOME1\ORADATA\MYBASE\MY_DATA_FILE.ORA'

Similar Messages

  • What can make the iPod 4G battery damage?

    What can make the iPod 4G battery damage?

    Leaving it plugged in all the time can damage it, it needs to be cycled every now anda again. It keeps its internal resistanc from building up too much.
    Obviously, dropping it, getting it wet, lighting it on fire ect will also damage it.

  • What can make the battery damage?

    What can make the battery damage?

    Heat, sun, not use the iPod for a long time.
    If you don't go to use it for more than 1 month, recharge up to 50%

  • What can make a application deployment SLOW?

    Hi guys!
    A co-worker is having some trouble deploying Oracle ADF BC app to Integrated Weblogic Server.
    His computer conf's is same as me (Core i7, 4GB Ram, etc...) but his deploy time is twice slow than mine (sometimes 3x) while deploying the same APP.
    We both are using JDK 1.6.31 (32bits, I choose 32bits because 64bits doesn't support Fast Swap) on Windows 7 x64.
    From this perpesctive I want to ask, what kind of problem can make the Deployment to IngratedWLS slow?
    PS: Using JDeveloper 11.1.2.1, Application Modules are already using DataSource connections.
    Thanks in Advance,
    Renan.

    Amy, I appreciate your feedback.  You actually made me go back and brush up on my debugging skills.  But the solution turned out to be simple, because I am simply a moron It turns out if you use the method addItemAt on an arraycollection, it does not simply replace the item that is already there.  It puts the new item at the index you specify, and moves the existing items down the chain, ALL OF THEM.  So I simply had to stop using the addItemAt method and just declare the values directly.
    i.e.
    FlexGlobals.topLevelApplication.chapterAC[0].title1 = "New Title";

  • BB Protect: what can make it fail?

    My bb was stolen.  I happened to activate BB Protect before and I have commanded it to Wipe.  Is there anything the thief can do to fail the command? 
    Solved!
    Go to Solution.

    If the battery is removed from the phone it will not wipe until power is applied to the phone and it starts up, and at the same time it has to be able to receive the mobile network.
    To disable Blackberr Protect while the phone is operational the user would require the phone's password. By default 10 wrong password attemps will wipe the phone and it will be useless without a re-install of the OS and software. 
    If you have no password in the phone then anyone who is smart and knows how to us a Blackberry can stop Blackberry Protect if he does this before you send the wipe.
    If you change your Blackberry account ID on line, then the phone can no longer do updates, or install any software. With this you have to call in to your provider and report the phone missing. The phone's IMEI number should be reported to the carrier as lost or stolen. This way it can be cancelled. The phone will be useless.
    Jerry G.

  • What can make a FlexGlobal variable "undefined"?

    I am writing an AIR app.  I have a group of variables that are needed across all of the major components in my application so I have delcared them in the main application as public, and then import the mx.core.FlexGlobals class into all of my major components.  The variable that I am having trouble with is an ArrayCollection called chapterAC.  I delcare it in my main application like this:
    public var chapterAC:ArrayCollection = new ArrayCollection();
    I will only be adding objects to this ArrayCollection at the zero level.  ie. chapterAC[0].someValue.  Keeping this in mind, I add elements to the ArrayCollection as follows:
    FlexGlobals.topLevelApplication.chapterAC.addItemAt({title1: "My Title", value1: 3, title2:"My Second Title", value2: 4}, 0);
    So the problem is that when traced, under certain circumstances, the trace is saying that the values are "undefined".  For instance, I may change the value of FlexGlobals.topLevelApplication.chapterAC[0].title1 to "hello" and it will trace that the value is now "hello".  Then I will change the value of FlexGlobals...title2 to something like "friend" and it will trace out that its value is now "friend".  But if I go back and trace title1 again, it should still say "hello" but now it says "undefined".  Going back and tracing title2 should say "friend" but it now says "undefined".
    Also, if I give the ArrayCollection some values in one component and trace them, they will trace just fine, but in another component, they will trace as "undefined" and if I go back to the original component, they will trace as "undefined".
    Am I doing something wrong with the arraycollection?  Do I need to give each individual element a type?

    Amy, I appreciate your feedback.  You actually made me go back and brush up on my debugging skills.  But the solution turned out to be simple, because I am simply a moron It turns out if you use the method addItemAt on an arraycollection, it does not simply replace the item that is already there.  It puts the new item at the index you specify, and moves the existing items down the chain, ALL OF THEM.  So I simply had to stop using the addItemAt method and just declare the values directly.
    i.e.
    FlexGlobals.topLevelApplication.chapterAC[0].title1 = "New Title";

  • What can make my Firewire drive unbootable?

    I have a 17" 800MHz iLamp. Here's the situation: I do a complete backup of my HD to an external Firewire drive using Carbon Copy Cloner. Now, this used to work just fine, but at some unknowable point in the past, something changed. Now, if I choose the external drive as my startup disk, it won't work. When I restart I get the grey apple screen with the spinny thing, it thinks for awhile (2-3 minutes or so) and then the apple changes to the circle-slash "no" symbol.
    The thing is, that same external drive will boot my other machine - a 933MHz G3 iBook - just fine. The problem is somehow specific to the iMac.
    I'm running 10.3.9.
    The data on the backup drive seems good otherwise, and I have tried repairing privs post-backup, to no avail.
    Any thoughts on why this might be?

    Nobody really knows. There's lots of posts in here about it.
    Some people are re-installing, going back to 10.4.3. You'd have to archive and install, upgrade to 10.4.3 with the COMBO drive and consider updating your Quicktime.

  • Recently I made a new itunes account and all my apps are from the old account now I can't buy any in app purchases what can I do without going back to the other account?

    Please help me out. I have been wanting to buy a bunch of in app purchases but now can't

    Not sure why you did this.
    You can change the e-mail address associated with an account.
    All purchases will always be tied to the account form which they were purchased.

  • Help: What can make "System.out.println" not displaying anything?

    Hello,
    We have Portal 10g.
    I have noticed a pb on the interpretation of existing JSP pages.
    I simplified the code... and I noticed that even this command doesn't work :
    <%
    System.out.println("Hello World");
    %>
    Any idea ?
    Is there any security ? permission I should get ?
    JSP works fine on our old 8i environment ...
    Thanks in advance for your help.
    Olivier

    Olivier,
    between 8i and 10g are aeons of time (for computer technology). As far as I recall, in 8i came with a Apache and JServ module. This supported Servlets and JSP through a special Oracle implementation. After that OC4J as a J2EE container for EJBs and Servlets/JSPs was introduced.
    Using JSPs with the database installation only is not advised anymore. You can use OC4J for that. But be aware that will require some changes in the configuration and deployment of JSPs.
    HTH,
    --olaf                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • SMTP server going "offline"

    I have a Cox email address set up in the Mail application, and have been having some trouble sending mail. Receiving is fine, just appears to be a problem with the outgoing mail servers.
    I am using smtp.west.cox.net for my outgoing smtp server. But, no matter what I do, it keeps going "offline".
    I've made sure my account information is 100% correct, and double checked it 1000 times.
    I've run the Mail Connection Doctor and it says that:
    1) Mail was able to connect to the internet
    2) It could not connect to thins SMTP server.
    What is going on, and how am I supposed to fix this?
    UPDATE:
    Also, for some reason, there is a constant Apple spinner not stopping, next to the "Sending..." label on the sidebar on the left of the Mail app.
    How can I make that stop?
    Message was edited by: Qcom

    Hi
    What port do you have selected for that Server?
    Tony

  • Hamachi randomly goes offline

    I've loaded Hamachi (the latest version, 2.2.0.377) on a friend's Windows 7 computer. It's been on there for a while (a couple of years). I have been logging on recently to do some tech support for him and have noticed that occasionally when I go to connect, Hamachi is offline. I can connect (via TeamViewer) to another computer in his network running Hamachi and then get to this computer as well to get Hamachi back online. The next day I typically have to do the same thing to get back in. The Windows 7 machine is not rebooting; it remains logged on and working fine. I've left the Hamachi chat window on my side open for long periods of time and I can see his machine going offline, online, back offline, etc. at random times. He's not doing it manually. I've also uninstalled and reinstalled Hamachi to no avail. Anyone ever seen anything like this? And have a fix? Thanks,Brian

    Hi We get this issue too, it happens when a connection becomes poor such as 3G or Satelite.WE have managed to write a script that fires it back up but really isnt viable long term. This issue makes the product completely useless and there seems to be no response to the issue. We are moving to NeoRouter but are sad that what was a great solution is not viable anymore.   Ken

  • TS1372 my ipod classic is in disk mode, can,t get out of it, it says error 1439, what can i do, i tried everything, they said in the apple page, please help me.

    dear, Friends,
                         I have ipod classic, My ipod is in the disk mode, can't get out of it, it says error 1439, i had tried too many times, with trying to reset the ipod or restore it, but failed, please help me in this what can i do.

    Try going to settings and reset all settings. This worked for me.

  • My tel Goes after 10 minutes offline, apears à enige Apple, and i have to unlock again. People are not able to call me while THE Apple apears. Question what can be THE solution ?? It is à 3GS tel iOS 4.2.1

    My tel Goes after 10 minutes offline, apears à enige Apple, and i have to unlock again. People are not able to call me while THE Apple apears. Question what can be THE solution ?? It is à 3GS tel iOS 4.2.1

    Hi Richard,
    You mentioned that 'Apple put the AirPrint spec out there for all printer makers'. I've been looking around but I haven't found any spec. Where did you find it?
    Do printer makers have to buy a license in order to be able to advertise that they've implemented the AirPrint protocol? Is there maybe an Apple review process in place?
    TIA
    Geert

  • My tel Goes after 10 minutes offline, apears à white Apple, and i have to unlock again. People are not able to call me while THE Apple apears. Question what can be THE solution ?? It is à 3GS tel iOS 4.2.1

    My tel Goes after 10 minutes offline, apears à white Apple, and i have to unlock again. People are not able to call me while THE Apple apears. Question what can be THE solution ?? It is à 3GS tel iOS 4.2.1

    Hi Richard,
    You mentioned that 'Apple put the AirPrint spec out there for all printer makers'. I've been looking around but I haven't found any spec. Where did you find it?
    Do printer makers have to buy a license in order to be able to advertise that they've implemented the AirPrint protocol? Is there maybe an Apple review process in place?
    TIA
    Geert

  • Got a new LG in Anchorage and was told Glennallen, AK is in a service area.  Got home and all I get is Message 41, Roaming. Can make calls with WiFi connection but not on the road. Any idea whats going on?

    Got a new LG in Anchorage and was told Glennallen, AK is in a service area.  Got home and all I get is Message 41, Roaming.
    I can make calls with WiFi connection but not on the road. Any idea whats going on?

        Oh no! I'm sorry to hear you had problems in the are you're in AkJohnDye. I checked your coverage and I do see we have an extended 4G coverage. This means you're able to use your phone but it needs to be activated in a 4G LTE Verizon Wireless coverage zone. I apologize.
    AdaS_VZW
    Follow us on Twitter at @VZWSupport 

Maybe you are looking for

  • DVI to HDMI Adapter Problem?

    Hello Forum - I'd like to describe an issue and see if there are others with same or is it just me: I have a early 2011 Macbook Pro 15" with 16GB ram, 1TB hard etc. I have 2 profiles on the machine - one is dedicated to work running Fusion VM of vari

  • Re: trial balance stock

    Hi guru's, The GL a/c material stock (trail balance stock) is mismatching with the SAP std report MB5B, why ? pl its ur. full points will be awarded. thanks tuljasingh.

  • A way to color the clips on the timeline?

    Hi guys, so now I would like to know of a way to color the clips on the time line.. or set up markers somehow so I know which parts of the time line I need to have my attention on later. Thanks!

  • Sleep problems after 10.7.5 Update

    Hi - After updating to 10.7.5 I have found my sleepwatcher sleep script which runs osascript times out with a PM Timeout. Does anyone else have this problem? Have Apple changed what happens on Sleep - for example disabling osascript or killing other

  • Code java sections

    Hi All, Can we right code in Initialization section of Java Sections of Java sections? Thanks in advance Best Regards, Harleen Kaur Chadha