Shutdown immediate - will be a problem?

I need to shutdown Oracle database. I wonder if I can do it cleanly? The problem depends on that there is a session 497 which can't be killed neither on database level nor os level. (On database level it simultanously expires and starts with new serial, on os level there is no process related to this session, or it can be zombie process we have, which can't be killed too) Session 497 is probably related to badly canceled operation of bringing a datafile online. Sometime ago we had to bring a datafile online so media recovery of this datafile was required. As we had no archivelog (21 days window) the media recovery couldn't be acomplished. This operation hung. Session 497 may still want to recover that datafile. How do you think? May any problems occur during a shutdown process? May shutdown immediate process wait (and hang too) untill the 497 session end?
Edited by: Przemek Piechota on 2011-02-10 07:40

content of alert_log:
Wed Feb 9 00:29:58 2011
ORA-1157 signalled during: ALTER DATABASE DATAFILE '/u01/app/oracle/oradata/easy/integracja03' ONLINE...
Wed Feb 9 00:33:20 2011
ALTER DATABASE DATAFILE '/u01/app/oracle/oradata/easy/integracja03' ONLINE
Wed Feb 9 00:33:20 2011
Errors in file /u01/app/oracle/admin/easy/bdump/easy1_dbw0_1028264.trc:
ORA-01157: Message 1157 not found; No message file for product=RDBMS, facility=ORA; arguments: [74]
ORA-01110: Message 1110 not found; No message file for product=RDBMS, facility=ORA; arguments: [74] [u01/app/oracle/oradata/easy/integracja03]
ORA-27037: Message 27037 not found; No message file for product=RDBMS, facility=ORA
IBM AIX RISC System/6000 Error: 2: No such file or directory
Additional information: 3
Wed Feb 9 00:33:20 2011
ORA-1157 signalled during: ALTER DATABASE DATAFILE '/u01/app/oracle/oradata/easy/integracja03' ONLINE...
Wed Feb 9 00:47:46 2011
Thread 1 advanced to log sequence 51550 (LGWR switch)
Current log# 1 seq# 51550 mem# 0: /u01/app/oracle/oradata/easy/log1a
Current log# 1 seq# 51550 mem# 1: /u01/app/oracle/oradata/easy/log1b
Wed Feb 9 01:01:41 2011
ALTER DATABASE DATAFILE '/u01/app/oracle/oradata/easy/integracja03' ONLINE
Wed Feb 9 01:01:41 2011
ORA-1113 signalled during: ALTER DATABASE DATAFILE '/u01/app/oracle/oradata/easy/integracja03' ONLINE...
Wed Feb 9 01:03:58 2011
ALTER DATABASE RECOVER  datafile '/u01/app/oracle/oradata/easy/integracja03'
Wed Feb  9 01:03:58 2011
Media Recovery Start
parallel recovery started with 3 processes
ORA-279 signalled during: ALTER DATABASE RECOVER  datafile '/u01/app/oracle/oradata/easy/integracja03'  ...
Wed Feb  9 01:05:28 2011
ALTER DATABASE RECOVER    CANCEL
Wed Feb  9 01:05:29 2011
ORA-1013 signalled during: ALTER DATABASE RECOVER    CANCEL  ...
Wed Feb  9 01:05:29 2011
ALTER DATABASE RECOVER CANCEL
Wed Feb  9 01:05:29 2011
Errors in file /u01/app/oracle/admin/easy/udump/easy1_ora_1843296.trc:
*ORA-07445: exception encountered: core dump [kcrpnq+006c] [SIGSEGV] [Invalid permissions for mapped object] [0x000000000] [] []*
Wed Feb  9 01:05:30 2011
*Trace dumping is performing id=[cdmp_20110209010530]*
Wed Feb  9 01:10:20 2011
PMON failed to delete process, see PMON trace file
Wed Feb  9 01:16:31 2011
ALTER DATABASE RECOVER  datafile '/u01/app/oracle/oradata/easy/integracja03'
Wed Feb  9 01:16:31 2011
Media Recovery Start
Wed Feb  9 01:16:31 2011
Media Recovery failed with error 1124
ORA-283 signalled during: ALTER DATABASE RECOVER  datafile '/u01/app/oracle/oradata/easy/integracja03'  ...
Wed Feb  9 01:17:29 2011
ALTER DATABASE RECOVER  datafile '/u01/app/oracle/oradata/easy/integracja03'
Wed Feb  9 01:17:29 2011
Media Recovery Start
Wed Feb  9 01:17:29 2011
Media Recovery failed with error 1124
Wed Feb 9 01:42:04 2011
Completed: alter database datafile '/u01/app/oracle/oradata/easy/integracja03' offline drop
Wed Feb 9 01:43:53 2011
ALTER DATABASE RECOVER datafile '/u01/app/oracle/oradata/easy/integracja03'
Wed Feb 9 01:43:53 2011
Media Recovery Start
Wed Feb 9 01:43:53 2011
Media Recovery failed with error 1124
ORA-283 signalled during: ALTER DATABASE RECOVER datafile '/u01/app/oracle/oradata/easy/integracja03' ...

Similar Messages

  • Shutdown immediate taking time

    HI
    I m using oracle 10g release 2. on hpux itanium
    some of my database is taking longer time to shutdown more than 30 minutes. so usually i m doing
    startup force and than shutdown immediate... wat is the problem behind this and how can i resolve it plz suggest.

    A SHUTDOWN NORMAL will wait for sessions to disconnect. So, if you have application processes or users that do not disconnect, it will "hang". It is likely that this is causing your shutdown to delay. You could check the alert log file for messages about Oracle waiting for users to disconnect.
    A SHUTDOWN IMMEDIATE will kill active sessions, complete a rollback of transactions that are killed and then shutdown the database. If you are using a SHUTDOWN IMMEDIATE, this can take a long time if there are large active transactions (or many active transactions) that Oracle needs to rollback -- the rollback can take time. (Also, if there are very many connected sessions, Oracle will take time to disconnect all of them).
    A SHUTDOWN ABORT does a quick kill by shutting down the instance, without validating connected sessions. Rollback is automatically initiated by Oracle with the Instance Recovery at the STARTUP. The STARTUP can take slightly longer (in terms of seconds or a few minutes, generally) depending on the volume of Redo to be re-applied. Rollback is deferred to be executed after the OPEN.
    You could try a SHUTDOWN TRANSACTIONAL. However, this can still take a long time or "hang" if a user or application process (or multiple of them) has/have active transaction(s) and does/do not issue COMMITs.
    See the documentation on the SHUTDOWN command :
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14357/ch12042.htm#i2699551
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • Shutdown immediate problem

    I'm trying to shutdown an Oracle9i database on Unix using SHUTDOWN IMMEDIATE but it just hangs.
    I checked the sessions in V$SESSION and noticed there were a few INACTIVE sessions. So I built a script that goes thru all the INACTIVE sessions and kills them.
    With all these sessions having status KILLED...when I try to run a SHUTDOWN IMMEDIATE, the database still hangs. I don't want to use SHUTDOWN ABORT.
    Does anyone have any information on what makes SHUTDOWN IMMEDIATE hang? Could there be some unix processes....or oracle processes?
    Thanks

    Dear All,
    I am also having some shutdown problem with the Oracle 10g on my Windows Server 2003 machine. My machine could not shutdown (means OS cannot completely shutdown the machine) even after i issued the "shutdown immediate" command.
    As what Jaafar said, we should kill the process from OS level. Can any of you explain more on this as I have no idea on how to do this? Which process should I kill after I issued the "Shutdown immediate" command?
    Thank you.
    best regards,
    Wnson

  • BI PRD sys got shutdown due to some backend problem so will PC runs automu00E1

    Hello All,
    BI PRD system  got shutdown due to some backend problem, so when they restart the system will pc runs automatically?
    then if its yes will it affect tommrrow process chain?
    Regards,
    Ranga

    Hi,
    By tomorrow morning if your system is Ok then the Jobs will start automatically in system, but you need to monitor the system bcoz after shutdown all jobs are starting, so monitor it, it won't effect any loads.
    Thanks
    Reddy

  • Shutdown immediate hanging

    I need to develop a scripts that shuts down all databases on a server. One of my databases sometimes hangs after issuing "shutdown immediate" command, and I want to handle this situation in my script. What I am thinking is to add "shutdown abort" in the script if "shutdown immediate" does not work. However, I do not know how to determine the database is hanging during shutdown immediate. Can you advise me on how to handle the shutdown immediate hanging problem in my shell script? Or is there better way to handle this in the script?
    Thank you very much for your help!

    As noted, if your shutdown immediate really hang because of rollback, then my method won't work either. The only different will be Oracle is going to do the rollback at next startup when doing instance recovery. In that case, the startup will appear to be hang.
    Check this metalink doc,
    What To Do and Not To Do When 'shutdown immediate' Hangs
    Doc ID: Note:375935.1
    There are cases where shutdown immediate hang because of bug.
    Shutdown Immediate Hangs
    Doc ID: Note:268884.1

  • Shutdown immediate hangs

    SunOS 5.8
    Database version: 9.2.0.4.0
    Customer shutdown database every night for backup the datafiles to disk.
    For your information, 2 weeks ago customer moved datafiles to a new disk.
    The stoppscript has worked for a week.
    And after a week the database will not shutdown.
    We did a shutdown abort, and it works for a couple of days.
    Now it happend again. The database will not go down.
    Can't find any error messages!
    Any suggestions?
    # stoppscript
    . $HOME/.profile
    INSTANSER="BALA"
    echo
    echo "###########################################"
    echo "# Startar nedtagning av O R A C L E #"
    echo "###########################################"
    echo
    echo
    echo "####### Stoppar LISTENER #######"
    echo
    $ORACLE_HOME/bin/lsnrctl << EOF
    stop LISTENER
    exit
    EOF
    for i in $INSTANSER
    do
    ORACLE_SID=$i
    export ORACLE_SID
    echo
    echo "##### Stoppar instans - $ORACLE_SID #####"
    echo
    $ORACLE_HOME/bin/sqlplus /nolog << EOF
    connect / as sysdba
    shutdown immediate
    startup exclusive restrict
    shutdown
    exit
    EOF
    done
    echo
    echo "########################################"
    echo "# Slut nedtagning av O R A C L E #"
    echo "########################################"
    echo
    # Alert_log
    Tue Sep 5 01:16:48 2006
    Shutting down instance: further logons disabled
    Shutting down instance (immediate)
    License high water mark = 41
    Waiting for dispatcher 'D000' to shutdown
    All dispatchers and shared servers shutdown
    Tue Sep 5 01:16:55 2006
    ALTER DATABASE CLOSE NORMAL
    Tue Sep 5 01:16:55 2006
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Tue Sep 5 01:16:56 2006
    Shutting down archive processes
    Archiving is disabled
    Tue Sep 5 01:16:56 2006
    ARCH shutting down
    ARC0: Archival stopped
    Tue Sep 5 01:16:56 2006
    ARCH shutting down
    ARC1: Archival stopped
    Tue Sep 5 01:16:56 2006
    Thread 1 closed at log sequence 11287
    Successful close of redo thread 1.
    Tue Sep 5 01:16:56 2006
    Completed: ALTER DATABASE CLOSE NORMAL
    Tue Sep 5 01:16:56 2006
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archiving is disabled
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Tue Sep 5 08:15:15 2006
    Shutting down instance (abort)

    I am having similar problem. My server has been up for around 100 days now. And I extensively use XML DB in my code. So, now the DOM memory failed for me, so, I am doing shutdown immediate in the hope that it might fix it ( or atleast start where it is hanging).
    Here is a snippet of my alert log file. Can you see where I am stuck at?
    Thu Sep 21 14:01:15 2006
    Process m001 died, see its trace file
    Thu Sep 21 14:01:15 2006
    ksvcreate: Process(m001) creation failed
    Thu Sep 21 14:28:38 2006
    Starting background process EMN0
    EMN0 started with pid=19, OS id=2396
    Thu Sep 21 14:28:38 2006
    Shutting down instance: further logons disabled
    Thu Sep 21 14:28:40 2006
    Stopping background process CJQ0
    Thu Sep 21 14:28:40 2006
    Stopping background process QMNC
    Thu Sep 21 14:28:42 2006
    Stopping background process MMNL
    Thu Sep 21 14:28:43 2006
    Stopping background process MMON
    Thu Sep 21 14:28:45 2006
    Shutting down instance (immediate)
    License high water mark = 23
    Thu Sep 21 14:28:45 2006
    Stopping Job queue slave processes
    Thu Sep 21 14:28:45 2006
    Job queue slave processes stopped
    All dispatchers and shared servers shutdown
    Thu Sep 21 14:28:55 2006
    ALTER DATABASE CLOSE NORMAL
    Thu Sep 21 14:28:55 2006
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Thu Sep 21 14:28:56 2006
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thread 1 closed at log sequence 411
    Successful close of redo thread 1
    Thu Sep 21 14:29:01 2006
    Completed: ALTER DATABASE CLOSE NORMAL
    Thu Sep 21 14:29:01 2006
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    btw, This is my screen right now.
    U:\Rahul\sql>sqlplus sys as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Sep 21 14:28:16 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Release 10.2.0.1.0 - Production
    SQL> sho sga
    Total System Global Area 436207616 bytes
    Fixed Size 1249440 bytes
    Variable Size 142610272 bytes
    Database Buffers 289406976 bytes
    Redo Buffers 2940928 bytes
    SQL> shutdown immediate;
    Database closed.
    Database dismounted.
    Ok, when I am writing this post, I came back with this message.
    SQL> shutdown immediate;
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup
    ORACLE instance started.
    Total System Global Area 436207616 bytes
    Fixed Size 1249440 bytes
    Variable Size 142610272 bytes
    Database Buffers 289406976 bytes
    Redo Buffers 2940928 bytes
    Database mounted.
    Database opened.
    SQL>
    Still, any comments would be really appreciated.
    Thank you,
    Rahul.
    P.S - This is a 32 bit windows 2003 server. 10gR2.
    Message was edited by:
    rputtagunta

  • 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

  • Job and shutdown immediate

    Hi,
    On our database there is too many job which running every 10 sec, and other each minute (but this job run for 10 minutes !).
    I would like to stop database, but how will work the command shutdown immediate ? It will wait the end of each job ? And for job which execute with 10 minutes of delay ?
    Nicolas.

    IMMEDIATE
    Does not wait for current calls to complete or users to disconnect from the database.
    Further connects are prohibited. The database is closed and dismounted. The instance is shutdown and no instance recovery is required on the next database startup.
    Joel Pérez
    http://www.oracle.com/technology/experts

  • Shutdown immediate won't work, Must abort to switch to SunCluster standby

    Customer has a Solaris Clusterware, The customer sees the semtimedop() system call returning EAGAIN when running "shutdown immediate" on their database on one cluster node. This is expected when the shared resource that the semaphore is protecting is unavailable. The shared resource is only being used by Oracle processes, so we need to know what the resource is and what the other processes are doing with it. MOS doc 760968.1 isn't helpful. A Solaris crash dump taken when the database shutdown problem was occurring showed no signs of an OS issue so database assistance is needed.
    We have tried to capture the following trace, but the trace is empty , and we 're stuck since then.
    SQL> alter session set events '10046 trace name context forever,level 12';
    SQL> alter session set events '10400 trace name context forever, level 1';
    SQL> shutdown immediate;

    don't you think it is about time you upgraded to something that hasn't been out of support since 2007 (almost 6 years ago...???). Hopefully you don't have any CC information stored in that db as there has not been any security updates since before it went to de-support.
    What I would like to know is how did you even get 9i to install on Solaris 10? IIRC, that is not even a supported OS/Oracle version configuration. As for your current problem,
    http://www.lmgtfy.com/?q=oracle+9i+suncluster+failover
    http://docs.oracle.com/cd/E19787-01/820-2574/gctbk/index.html

  • Shutdown immediate fails

    Hi Gurus,
    since Saturday I got a problem with my Oracle 10g. I cannot shutdown it anymore with shutdown immediate (runs without finishing), and when I shut it down with shutdown abort and restart it, it runs recovery, and afterwards it runs very slowly. Especially connections from outside do not work at all (via thin client), they are so slow that I get timeouts.
    Please help, I don't have any idea any more!
    Bye,
    Daniel

    As you've done a SHUTDOWN ABORT and STARTUP, you would be able to monitor the rollback that it is attempting by querying V$FAST_START_TRANSACTIONS after the startup.
    UNDOBLOCKSTOTAL is the number of Undo Blocks that have to be applied in the rollback.
    UNDOBLOCKSDONE is the number of Blocks done so far.
    Thus UNDOBLOCKSDONE*100/UNDOBLOCKSTOTAL is the percentage done.
    There are times when the Instance Recovery is slowed down by FAST_START_PARALLEL_ROLLBACK.
    You could set the instance parameter FAST_START_PARALLEL_ROLLBACK to FALSE and restart the instance and watch the speed of the rollback in v$FAST_START_TRANSACTIONS. (obviously, you'd need to SHUTDOWN ABORT and STARTUP, else the SHUTDOWN would wait for the "slow" rollback to complete).
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • Wrapper PL/SQL to shutdown immediate command

    Hi,
    I am working on 10g and 11g database. I want to check if anyone have created a wrapper script on top of command Shutdown immediate?
    Reason: I want to use a pl/sql X that would give me an option to confirm to proceed the shutdown process. I was thinking about a wrapper pl/sql, as shutdown immediate could be dangerous when working on multiple prod database screens. I am using putty.
    DB Versions: 10gR2 and 11gR2.
    SQL> x
    Do you want to shutdown down (y/n): y
    Shutting down database
    I have heard about the trigger -before-shutdown-trigger. Any thoughts would be helpful.
    Cherrish Vaidiyan

    Let's assume that the risk of error is high. How does prompting a user to enter "y" reduce that risk.
    If I think I'm connected to db1 and I want to shut down db1 but I'm really connected to db2, I'm going to reflexively answer "y" to the prompt. It's very unlikely that the prompt is going to cause me to stop and consider what database I'm really connected to. The prompt is going to very quickly become white noise where I just reflexively type in "y" without thinking. Just like a user interface that pops up "Are you sure" dialog boxes all the time, the user will very quickly stop seeing the text of the message and whatever benefit you gained from the alerts will be lost.
    On the other hand, there are lots of things that one can do to reduce the risk of error
    - As has been suggested, you shouldn't be connecting AS SYSDBA unless you absolutely have to. If you happen to type "shutdown immediate" when you're connected to db2, you'll get a privileges error rather than shutting down the wrong database. Note that putting things like this into scripts can easily backfire and make errors more likely because you'll be tempted to have the script connect AS SYSDBA and eliminate the benefit of having your sessions normally run as a less privileged user. In fact, some of the best DBAs I've seen would have their login script issue a `SET TRANSACTION READ ONLY` when they connected just so that they had to make a conscious effort to allow their session to change data.
    - There are all sorts of ways to make it obvious on the command line what database you're connected to. For example, I've seen plenty of DBAs that have their SQL*Plus command line changed to include the name of the database. People configure their telnet client (i.e. PuTTY) to have different background colors for different databases (i.e. red for production, yellow for test, green for development). That is generally much more effective than a prompt because it's far more likely that someone will get into the habit of checking (and double-checking and triple-checking) the background color, the database name on the prompt, etc. before issuing commands.
    - General DBA practice would suggest that having two different sessions open at once where you're logged in AS SYSDBA in both is extremely problematic. It is extremely unlikely that you'd ever want that to happen-- a DBA should be doing one thing at a time and certainly only one thing that involves SYSDBA access.
    Justin

  • I am fed up with Spring and Apple passing me off to one another and neither will fix the problem. I am unable to receive a connection on my phone.

    I am fed up with Spring and Apple passing me off to one another and neither will fix the problem. I am unable to receive a connection on my phone.
    The internet goes out and I have to reset network setting each and every time. This is only a temporary solution which by the time I release the line with Spring or leave the apple store the issue is back. Sprint indicates that it is a know issue with the Iphone 5 and apple says it is a network issue as Sprint's network is not up to par with the Iphone and can not meet the expectations on the Iphone 5.
    I have attached a few picture, as you can see it clearly says I have 5 bars and 3g available but I have no connections what so ever.
    This issue affects all data and so I can not send or receive picture messages, use apps, or access the internet. The data goes in and out intermittently and it seems the phone chooses what I can and can't do.
    For example I can watch Youtube or Vevo videos but I can not access Facebook or Instagram.
    Is anyone else having this issue?
    I will soon loose my patience....
    I have reset my phone three time and have reset network and other setting mutltiple times.

  • When apple will fix the problem of the Bluetooth. It is not working after the upgrade to7.03

    when apple will fix the problem of the Bluetooth. It is not working after the upgrade to7.03

    there is no problem with B/T and iOS7.0.3 in my case used on iPhone 5 and 4 in several environments including in car
    Do a reset
    restore with back up and if required as new

  • I want to upgrade my MacBook Pro 5,2 to Lion, but specs says i need intel core 3 and i have intel core 2, there will be a problem? my computer will run slow? I will need to reinstall my programs again?

    I want to upgrade my MacBook Pro 5,2 to Lion, but specs says i need intel core 3 and i have intel core 2, there will be a problem? my computer will run slow? I will need to reinstall my programs again?
    Hardware Overview:
      Model Name:          MacBook Pro
      Model Identifier:          MacBookPro5,2
      Processor Name:          Intel Core 2 Duo
      Processor Speed:          2.8 GHz
      Number Of Processors:          1
      Total Number Of Cores:          2
      L2 Cache:          6 MB
      Memory:          8 GB
      Bus Speed:          1.07 GHz
      Boot ROM Version:          MBP52.008E.B05
      SMC Version (system):          1.42f4
      Sudden Motion Sensor:
      State:          Enabled

    Check to make sure your applications are compatible. PowerPC applications are no longer supported after 10.6.      
    Application Compatibility
    Applications Compatibility (2)

  • I am running Mac OS X Lion on a brand new Mini.  Every now and then, my keyboard goes "dead."  The mouse still works but can't type.  If I restart, everything is fine again.  Is there anything that will fix this problem?

    I am running Mac OS X Lion on a brand new Mini.  Every now and then, my keyboard goes "dead."  The mouse still works but I can't type.  If I restart, everything is fine again.  Is there anything that will fix this problem?
    Also, I am trying to connect my Mini from the mini-Displayport to the Displayport of my Dell U2410 monitor.  The image is very grainy,even though it is set to the correct resolution: 1920 X 1200 at 60Hz.  If I use HDMI to VGA input, the image is much clearer.  Is there a way to get the Displayport to work?

    I'm having exactly the same keyboard issue.  Certainly nothing has ever enhanced my concentration while coding like suddenly becoming unable to type.
    I'm seeing a great many devicemgr and rake errors in my system log.  I don't know if they're related.  How 'bout you?
    If you're unfamiliar with the system log…
    Open /Applications/Utilities/Console.
    If necessary, choose View > Show Log List.
    system.log is at the top of the FILES section.
    Try searching it for hot words like DEBUG, FATAL, and aborted.
    I've found some discussions that would tend to indicate my errors are postGres related – I'm running OS X server.
    -Bryan

Maybe you are looking for

  • How to remove repetition  in ALV GRID

    Dear freinds, In  ALV grid  iam getting repetitive for a feild Count (where iam giving count of the no of records .........i.e if i have four records i  have to give 4 but iam getting for all the 4 records as  4,4,4,4 in the output. Can i remove the

  • Battery completely drained on 15" MBP - charged but now computer has errors

    The other night I came home from work and found my mac had been completely drained. I plugged the computer in and it charged up, however when I turned it on it has been a nightmare ever since. I had to reset the date/time settings on the computer, an

  • Upgrade to 7.0.98.0

    I just upgrade my WISM's to 7.0.98.0. Since then my users have called saying that they get error messages on their 7925's and Vocera badges "searching for AP's". I don't see anything in the release notes for this. Any ideas?

  • How to copy  error message text , that is on JOptionPane window ??

     

  • Email for AdHoc Request

    Hi Experts , I have follwoing requirement .We are using UWL 1. When ever a Task though AdHoc reuqest in (collaberation task) UWL is created then the receiver should get an email notification in OutLook or Lostus Notes or any other email id 2. Email s