Database Shutdown Some Times

Dear All
I have Installed Oracle Database 10G on Windows Server 2003
But When I need Connect To The database I Discover it shutdown then I will Startup Again to Connect.
Please I need help To see What Happen To Oracle Because its Online Database
There is files In Oracle That I can Trace The Error or Any Thing To Help.
Thanks In Advance.

user8942603 wrote:
Dear All
I have Installed Oracle Database 10G on Windows Server 2003
But When I need Connect To The database I Discover it shutdown then I will Startup Again to Connect.
Please I need help To see What Happen To Oracle Because its Online Database
There is files In Oracle That I can Trace The Error or Any Thing To Help.
Thanks In Advance.Duplicate post. Please do not cross post
Database Shutdown In Some Times

Similar Messages

  • Shutdown The Database in Some Times

    Dear All
    I have Installed Oracle Database 10G on Windows Server 2003
    But When I need Connect To The database I Discover it shutdown then I will Startup Again to Connect.
    Please I need help To see What Happen To Oracle Because its Online Database
    There is files In Oracle That I can Trace The Error or Any Thing To Help.
    Thanks In Advance.

    The first place to check would probably be your alert log. You can usually find it here $ORACLE_BASE\admin\bdump and the file will be named alert_<SID>.log. If you cannot find the file here check the value of the BACKGROUND_DUMP_DEST parameter.
    Hope this helps.
    Also this would probably be better off posted in the {forum:id=61} forum :)

  • Database shutdown immediate - time calculation ?

    Hi,
    Good Day.
    did any one tried to calculate time the database would took to complete "shutdown immediate" command?
    hope to have a healthy discussion..
    Regards,
    Muhammad Ahmad

    Mohamed ELAzab wrote:
    Hello Jonathan Lewis,
    1-Please note that looking into the alert_sid.log is a good start as it will show if the smon process was dead according to the note:
    Shutdown Normal or Shutdown Immediate Hangs. SMON disabling TX Recovery [ID 1076161.6]
    I can see that that note is labelled: "Checked for relevance June 2009", but have you seen the garbage it suggests for temporary segments:
    <ul>
    Verify that temporary segments are decreasing
    To verify that the temporary segments are decreasing have an active session
    available in Server Manager or SQLPLUS during the SHUTDOWN IMMEDIATE. Issue the following
    query to ensure the database is not hanging, but is actually perform extent
    cleanup:
    SVRMGR/SQL> select count(block#) from fet$;
    COUNT(BLOC
    +7+
    SVRMGR/SQL> select count(block#) from uet$;
    COUNT(BLOC
    +402+
    </ul>
    For this to be true the temporary tablespace would have to be declared as dictionary managed, possibly even with contents = "PERMANENT" but it's so long since I've created a dictionary-managed TEMP that I can't be sure of the second point. I would be very cautious about trusting any document that started with such antiquated material - you can have no idea how much of its content might be (at best) deficient and (at worst) dangerously wrong.
    3-to know the transactions that will be rolled back please read the note:
    How to Check Why Shutdown Immediate Hangs? [ID 164504.1]
    Same type of problem - "Checked for relevance: Mar 2010", starts with:
    <ul>
    Start Server Manager (or SQL*Plus for 8i or higher)
    SVRMGRL> connect internal (or SYSDBA for 8i or higher)
    SVRMGRL> select * from x$ktuxe where ktuxecfl = 'DEAD';
    </ul>
    Although x$ktuxe will show you transaction states from the undo segment headers, and this might show you recursive (or other special case) transactions that do not appear in v$transaction, I wouldn't trust a note that is based on 7.3 technology to be an appropriate reference document.
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk

  • Not able to connect to database some times

    some times i am not able to connect to my database via sqlplus.
    after entering this command, we don't receive any response. please help.
    -bash-3.2$ sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Production on Wed Jan 23 11:11:36 2013
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter user-name: /as sysdba

    Hi Emran,
    Set sufficient value of processes/sessions in init/spfile of database , might be session limit of DB is getting exceeded & restricting new connection.
    Check alert log & below query o/p , CURRENT_UTILIZATION < MAX_UTILIZATION to get connection to DB
    select * from v$resource_limit;Also , try to connect as sqlplus prelim & do hang analyze , refer below link
    http://blog.tanelpoder.com/2012/05/08/oradebug-hanganalyze-with-a-prelim-connection-and-error-can-not-perform-hang-analysis-dump-without-a-process-state-object-and-a-session-state-object/
    sqlplus -prelim "/as sysdba"
    ORADEBUG HANGANALYZE 3Thanks,
    Ajay More
    http://www.moreajays.com

  • [Solved] Machine shutdown after some time

    Hi all,
    I have a machine with an Intel J1900
    It has installed:
    last kernel
    Plasma 5
    Gummiboot
    SDDM
    Intel drivers
    all is ok, but when the machine is some hours up, the machine shutdown by itself. This cannot be a hardware failure because It performs a perfect shutdown.
    How can I start to check the issue? any idea?
    thanks in advance!
    Last edited by zofiel (2015-04-04 08:24:04)

    Any power management system installed (eg. upower) with screensaver set up to shutdown (instead of hibernate) after some time?
    journalctl -b -1
    look here at previous system log and see last lines if you can find anything wrong

  • Database shutdown problem

    Hi,
    My database takes quite a lot of time in shutting down, when I do normal shutdown.
    Pls help
    vip

    Hi Aman,
    F. Munoz Alvarez wrote:
    This is because Oracle terminates all sessions and does a rollback on all.Francisco,
    What does it mean by rollback here? So if I would kick in really big transaction and Oracle is shutting down, it will be rolling back my transcton? I don't think so. > My transaction info would be cleared immediately. Is there any way that I can see this happening ?
    Aman....Take a look in the Oracle Docs:
    - http://download.oracle.com/docs/cd/B19306_01/server.102/b14231/start.htm#sthref589
    Immediate database shutdown proceeds with the following conditions:
    - No new connections are allowed, nor are new transactions allowed to be started, after the statement is issued.
    - Any uncommitted transactions are rolled back. (If long uncommitted transactions exist, this method of shutdown might not complete quickly, despite its name.)
    - Oracle Database does not wait for users currently connected to the database to disconnect. The database implicitly rolls back active transactions and disconnects all connected users.
    The next startup of the database will not require any instance recovery procedures.
    Transactional database shutdown proceeds with the following conditions:
    - No new connections are allowed, nor are new transactions allowed to be started, after the statement is issued.
    - After all transactions have completed, any client still connected to the instance is disconnected.
    - At this point, the instance shuts down just as it would when a SHUTDOWN IMMEDIATE statement is submitted.
    The next startup of the database will not require any instance recovery procedures.
    A transactional shutdown prevents clients from losing work, and at the same time, does not require all users to log off.
    Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com
    Sorry by the delay to answer, I'm having some issues with my internet connection :(

  • Bi Dashboards issue works properly some times and after not display pointers data and give un expected error and throw login window

    HI,
    I have toff situation where  we deployed bi dashboards in our site and it works some time and some times not,
    and some times it keep loading and throw a login window.
    works when
    we restart performance point service  and if not work
    we re create secure store service and generated new key and create new pps service application
    before that we stopped secure store and pps service  using c.a in application server
    we are using ssas for datasource to connect  from dashboard designer
    we have seperate server for ssas dbs
    seperate application server running: pps service and secure store service
    two web front ends:  one of running secure store
    1 Domain controller + central admin service running
    some times after 4 -5 hours bi dashboards works , we dashboards not display data and throw un expected errors,
    also when we try to connect using a dashboard designer from a seperate client machine in same domain ,we have same issue , we unable to connect to ssas datasource server, and if connect some times unable to deploy dashboards.
    we tried every thin icreased server time out values  in ssas server
    :\Program Files\Microsoft SQL Server\MSAS10_50.MSSQLSERVER\OLAP\Config\msmdsrv.ini. in this location
    and in 
    c:\program files\common files\microsoft shared\web server extensions\14\webclients\ppsmonitoringServer\client.config
    maxStringContentLength="2147483647"
    maxNameTableCharCount="2147483647"
    maxBytesPerRead="2147483647"
    maxArrayLength="2147483647"
    maxDepth="2147483647" />
    even we have same issue
    is some thing happening when dashboards working some time and  after some time not 
    is a secure store crashing or its still request pending in IIS and not authenticating to data soruce why 
    below are the logs
    Here are the results of the log analysis :
    server wfe1 
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C PerformancePoint Service PerformancePoint Services 39 Critical A PerformancePoint service application call was aborted by the caller.  This may indicate the HttpRuntime executionTimeout for the Web Application
    is configured to a value smaller than the DataSourceQueryTimeout for the PerformancePoint Service Application. 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C PerformancePoint Service PerformancePoint Services ef8z Critical ‏‏حدث
    استثناء
    أثناء عرض
    عنصر ويب.
    قد تساعد
    معلومات التشخيص
    التالية في
    تحديد سبب
    هذه المشكلة:  Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.  ‏‏رمز
    خطأ "خدمات PerformancePoint"
    هو 20700. 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:43:44.66 w3wp.exe (0x2128) 0x158C SharePoint Foundation Runtime ba3q Medium Redirect to error.aspx?ErrorText=Request%20timed%20out%2E failed. Exception: System.Web.HttpException: The remote host closed the connection. The error code is 0x800704CD.    
    at System.Web.Hosting.IIS7WorkerRequest.RaiseCommunicationError(Int32 result, Boolean throwOnDisconnect)     at System.Web.Hosting.IIS7WorkerRequest.ExplicitFlush()     at System.Web.HttpResponse.Flush(Boolean finalFlush)    
    at System.Web.HttpResponse.End()     at Microsoft.SharePoint.Utilities.SPUtility.Redirect(String url, SPRedirectFlags flags, HttpContext context, String queryString) 8bc44f14-acef-49bf-b1c1-2755ea7e6e24
    09/01/2014 14:47:32.69 w3wp.exe (0x2128) 0x2154 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 78c107cd-0d4b-46f5-8e1a-0d9b4ebc7b29
    09/01/2014 15:07:40.74 w3wp.exe (0x2128) 0x209C PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/28_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) abf0263d-7333-4e4f-9cd4-a3a4dcb700c0
    09/01/2014 15:13:25.92 w3wp.exe (0x2128) 0x18DC PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/218_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) b35bf864-54f4-43fa-88a8-44cdf938bfa2
    09/01/2014 15:11:10.87 w3wp.exe (0x2128) 0x1F88 PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Courts/Bic/Lists/PerformancePoint Content/4_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) 7cea0eb6-214f-4d7b-a6e7-97a0fe11c956
    09/01/2014 15:11:40.87 w3wp.exe (0x2128) 0x2150 PerformancePoint Service PerformancePoint Services 20 Critical The user "i:Anonymous" attempted to access an item in the following location:
    http://www.xxx.xxx.sa/ar-sa/Notary/Rspointer/Lists/PerformancePoint Content/162_.000  Verify that the location exists and that the user has the "Read Items" permission. 
    Exception details: Microsoft.PerformancePoint.Scorecards.BpmException: ‏‏لقد
    انتهت
    مهلة الطلب
    أو تم
    إجهاضها. تم
    تسجيل تفاصيل
    إضافية من
    أجل المسؤول.     at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location, SPListItem item)    
    at Microsoft.PerformancePoint.Scorecards.Store.Dao.SPListItemDao.Get(ISPFcoCache cache, Guid webSiteID, RepositoryLocation location)     at Microsoft.PerformancePoint.Scorecards.Store.SPDataStore.SPItemGet(RepositoryLocation location, String
    spObjectTypeId) 4154222b-6ff0-4b64-81b8-d08501a19278
    server wfe 2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    09/01/2014 14:50:59.05 w3wp.exe (0x1294) 0x1D88 Web Content Management Publishing Cache 7363 Critical Object Cache: The super reader account utilized by the cache does not have sufficient permissions to SharePoint databases. To configure the account use
    the following command 'stsadm -o setproperty -propertyname portalsuperreaderaccount -propertyvalue account -url webappurl'. It should be configured to be an account that has Read access to the SharePoint databases.  Additional Data:  Current default
    super reader account: NT AUTHORITY\LOCAL SERVICE 382f711d-cdad-4c5d-be88-2e7d6f36dde2
    In the Roiscan logs we get an error in regards to the English Language pack:
    Review Items
    ============
    Error:                       Product {90140000-1015-0409-1000-0000000FF1CE} - Microsoft SharePoint Foundation 2010 1033 Lang Pack:  has unexpected
    file state(s).
    adil

    chinnijagadeesh,
    You suck!
    Signed: The rest of the universe.
    ... and quit crossposting FFS... it really is quite annoying!

  • 8.1.5.-automate database shutdown:hepl needed

    I have tried to setup the automate database shutdown by following Oracle Manual. When rebooting the Unix system(sun solaris 2.6), nothing could be recorded in the alert logfile. After manually starting up the database, alert logfile indicated always a crash recovery during the process.
    Any suggestion will be appreciated on above problem!
    Felix

    Hi,
    Below is the information from orclALRT.log:
    There's a write/open error. At July 21, 21:00PM our backup is start to run.
    Is it because the backup software locked some oracle's files ?
    But after the error, the next morning July 22 the ORACLE instance is started with no error, even though user can't connect to the database.
    TIA
    Andi
    Thread 1 advanced to log sequence 46212
    Current log# 4 seq# 46212 mem# 0: E:\ORANT\ORADATA\ORACLE\REDO01.LOG
    Sun Jul 21 21:38:26 2002
    KCF: write/open error block=0x11072 online=1
    file=1 E:\ORANT\ORADATA\ORACLE\SYSTEM01.DBF
    error=27072 txt: 'OSD-04008: WriteFile() failure, unable to write to file
    O/S-Error: (OS 33) The process cannot access the file because
    another process has locked a portion of the file.'
    DBW0: terminating instance due to error 1242
    Instance terminated by DBW0, pid = 248
    Mon Jul 22 03:00:04 2002
    Starting ORACLE instance (normal)
    Dump file E:\orant\admin\oracle\bdump\orclALRT.LOG
    ---------

  • I want to load large raw XML file in firefox and parse by DOM. But, for large XML file the firefox very slow some time crashed . Is there any option to increase DOM handling memory in Firefox

    Actually i am using an off-line form to load very large XML file and using firefox to load that form. But, its taking more time to load and some time the browser crashed. through DOM parsing this XML file to my form. Is there any option to increase DOM handler size in firefox

    Thank you for your suggestion. I have a question,
    though. If I use a relational database and try to
    access it for EACH and EVERY click the user makes,
    wouldn't that take much time to populate the page with
    data?
    Isn't XML store more efficient here? Please reply me.You have the choice of reading a small number of records (10 children per element?) from a database, or parsing multiple megabytes. Reading 10 records from a database should take maybe 100 milliseconds (1/10 of a second). I have written a web application that reads several hundred records and returns them with acceptable response time, and I am no expert. To parse an XML file of many megabytes... you have already tried this, so you know how long it takes, right? If you haven't tried it then you should. It's possible to waste a lot of time considering alternatives -- the term is "analysis paralysis". Speculating on how fast something might be doesn't get you very far.

  • Tasks not firing some times?

    Hi Experts,
    On the AD process form I have a task Get NEw Parent DN task which will compute the container field value and copies to process form container field value; there is another task container Updated. whenever process form container field value changes this task fires but it is firiing some time not firing some time what might be the reason.
    Thanks in adavnace for yor help.

    Ideally this should not happen, that your process task does fires randomly. Confirm that is your process from container value getting updated each time after your Get NEw Parent DN task runs successfully. The container Updated task will only fire if there is a change in the database for that value as it is based on a DB trigger. Otherwise it wont.
    Thanks
    Sunny

  • Some times getting 500 Internal Server Error

    Hi All,
    We have implemented MSS PCR froms sucessfully.version is ERP2004 and NW04 portal EP6sp18, MSS600.
    We are able acess the forms and working with them without any problem.
    some times we are getting
    <b>500Internal Server Error
    The Web Dynpro Application 'PcrApplication' has expired. Please restart the application either with the refresh button</b>.
    what could be the possible reasons and how to resolve the issues.any sap notes
    Thanks & reagrds
    Gopal

    Hi,
    I have gone through the docs. , not use full. Please find the inline comments for the same.
    E-Business Suite Users Experience Intermittent HTTP-500 Errors and Database Connection Errors [ID 1314433.1] -- No solution
    R12: Http Server Crashing Frequently With Segmentation Fault (NAS or SAN filesystem) [ID 732857.1] -- Already it is under local file system only.
    How to resolve Broken Pipe errors in E-Business Suite R12 ? [ID 1480156.1] -- No solution
    Autoconfig is completed wihtout any errors.
    I have not chedked the database log file. I will check and update you soon.
    Cheers,
    Jagadeesha

  • Application selects  is relatively slow in some times

    Dear Friends,
    Some selects of our application is relatively slow in some times (When database is slow) . But same selects shown good performance in most of the time. Database is always not slow in peak hours. I feel there would be insufficient space in Execution plan area or Sort area.
    Can you give me how i change these settings in my database. and where these execution plan and sort area located.
    regards
    upul Indika.

    Hi,
    Try to check for the SGA size in your database. Accordingly increase the shared pool size and the buffer cache size which wil generally improve the performance of the queries. Make sure you donot increase the sixe of shared pool in excess of the size of the SGA.
    Regards
    Bharath

  • Doubt about database point in time recovery using rman

    Hi Everyone,
    I have been practising various rman restore and recovery scenarios . I have a doubt regarding database point in time recovery using rman. Imagine i have a full database backup including controlfile scheduled to run at 10 PM everyday. today is 20th dec 2013. imagine i want to restore the database to a prior point in time ( say 18th dec till 8 AM). so i would restore all the datafiles  from 17th night's backup and apply archives till 8 AM of 18th dec . in this scenario should i restore the controlfile too from 17th dec bkp ( i am assuming yes we should ) or can we use the current controlfile ( assuming it is intact). i found the below from oracle docs.
    Performing Point-in-Time Recovery with a Current Control File
    The database must be closed to perform database point-in-time recovery. If you are recovering to a time, then you should set the time format environment variables before invoking RMAN. The following are sample Globalization Support settings:
    NLS_LANG = american_america.us7ascii
    NLS_DATE_FORMAT="Mon DD YYYY HH24:MI:SS"
    To recover the database until a specified time, SCN, or log sequence number:
    After connecting to the target database and, optionally, the recovery catalog database, ensure that the database is mounted. If the database is open, shut it down and then mount it:
    2.  SHUTDOWN IMMEDIATE;
    3.  STARTUP MOUNT;
    4. 
    Determine the time, SCN, or log sequence that should end recovery. For example, if you discover that a user accidentally dropped a tablespace at 9:02 a.m., then you can recover to 9 a.m.--just before the drop occurred. You will lose all changes to the database made after that time.
    You can also examine the alert.log to find the SCN of an event and recover to a prior SCN. Alternatively, you can determine the log sequence number that contains the recovery termination SCN, and then recover through that log. For example, query V$LOG_HISTORY to view the logs that you have archived. 
    RECID      STAMP      THREAD#    SEQUENCE#  FIRST_CHAN FIRST_TIM NEXT_CHANG
             1  344890611          1          1      20037 24-SEP-02      20043
             2  344890615          1          2      20043 24-SEP-02      20045
             3  344890618          1          3      20045 24-SEP-02      20046
    Perform the following operations within a RUN command:
    Set the end recovery time, SCN, or log sequence. If specifying a time, then use the date format specified in the NLS_LANG and NLS_DATE_FORMAT environment variables.
    If automatic channels are not configured, then manually allocate one or more channels.
    Restore and recover the database.
      The following example performs an incomplete recovery until November 15 at 9 a.m. 
    RUN
      SET UNTIL TIME 'Nov 15 2002 09:00:00';
      # SET UNTIL SCN 1000;       # alternatively, specify SCN
      # SET UNTIL SEQUENCE 9923;  # alternatively, specify log sequence number
      RESTORE DATABASE;
      RECOVER DATABASE;
    If recovery was successful, then open the database and reset the online logs:
    5.  ALTER DATABASE OPEN RESETLOGS;
    I did not quiet understand why the above scenario is using current controlfile as the checkpoint scn in the current controlfile and the checkpoint scn in the datafile headers do not match after the restore and recovery. Thanks in Advance for your help.
    Thanks
    satya

    Thanks for the reply ... but what about the checkpoint scn in the controlfile . my understanding is that unless the checkpoint scn in the controlfile and datafiles do not match the database will not open. so assuming the checkpoint scn in my current controlfile is 1500 and i want to recover my database till scn 1200. so the scn in the datafiles (which is 1200) is not not matching with the scn in the controlfile(1500). so will the database open in such cases.
    Thanks
    Satya

  • 9iAS R2 - Windows XP - IE hangs after some time

    Hi,
    We are using Oracle 9iAS on Windows XP client PCs. Application runs fine, however after some time, application hangs and IE session does not respond and we cannot do anything else but to end the ie task from task manager.
    It looks like Application loses connection with the database server and stops responding.
    Whether anyone faced similar problems and have found out any soutions?

    Hi irvine74,
    I am also experiencing the same problem while using Oracle Application Server 10gR2 on Windows 2000 Adv. Server and the clients are using IE on Windows XP.
    1). Would u share ur experience in more detail.
    2). which version of Mozilla is perfect with Windows XP 2002 SP 2.
    3). Either I have to install Mozilla or FireFox.
    PLS describe the Full version of Browser.
    Thanks and Looking Forward.
    Aamer

  • OAS4081 on RH6.2 hangs after some time

    I installed OAS4081 on Redhat6.2. It seems to work fine... for a couple of hours. After some time (ranging from several hours to one day, depending on the activity I think) the listener does not respond anymore. Even a 'telnet <host> 80 - GET /' does not return anything. There are no processes taking up cpu-time. Memory usage (using top) seems ok (150Mb total). The only way to solve, it to 'owsctl stop -s website40', but still some processes remain and need to be killed -9. Then restarting the website makes it ok again.
    Also using 'vmstat 1' I have the impression that free memory is decreasing slowly (max 1Mb/5min). But when the website hangs, there is still enoug free memory (+200Mb).
    If anyone has the same experience, or any tips, please let me know. We would like to use this website in a production environment.
    I use only PL/SQL on an 8.1.5 database on a remote machine.
    Geert
    [email protected]
    P.S. I applied the /pfoo/stat patch as described in the forum elsewhere.

    We haven’t managed to repro this problem yet – we’ve run it on a couple of different machines using 2.5 and tested it repeatedly and can’t get it to fail. So, we have some more questions:
    * What mode are you running in? GPU,CPU or Flash?
    * If GPU, do you only see this hang in GPU mode, or can you reproduce it in CPU or Flash mode?
    * If GPU, what is the date and version number of the NVIDIA GPU driver you is using? (and is it up to date – new drivers can be downloaded here http://www.nvidia.com/Download/index.aspx?lang=en-us)
    * When you hit "Build and Run" are you changing anything? (e.g. editing the filter code, changing modes, changing images etc.)
    * Can you make the images you’re using available to us?
    Thanks
    Bob

Maybe you are looking for

  • LIST DISPLAY

    hi , i have to display the list continuously means ihave 30 records in first page i have to disply 10 records and next page 10 records like taht.... inbetweeen it has to wait 1 min. thanks, mahi..

  • Table type mulit and auxiliary

    difference between a table type auxiliary and table type multi ? where exactly we are using this ? can give some simple example plsT

  • Avi movie not working

    This doesn't concern iMovie directly, as it is more of a general video problem.  I have a really strange (at least to me) situation.   I direct a band and a friend of mine made a video of a recent performance and gave me a disc of it. Now, the first

  • Xbox 360 with wrt54gs V2 connection problems

    Been trying to set this up for a wired connection and getting nowhere. Firmware version is 4.71.1. Reason I have the higher firmware is for the WPA security which I don't think the xbox supported firmware version provides. BTW, have four computers, t

  • Dollar Symbol change from '$' to 'o' after SP patch

    Dear Experts,       We have updated the following support packages:      SAP_BASIS 14-18      SAP_ABA 14-18      PI_BASIS 14-18      SAP_BW 15-20      SAP_AP 12-15      EA-HR 23-61      SAP-HR 23-61      E-RECRUITMENT 18      After that, Some webdynp