Mac Manager: Unable to open databases

I'm running the 10.4 upgrade and Mac Manager. I'm suddenly unable to open the MM admin program and am given the following error:
Unable to open databases on "OurServer" because of an unknown error: A disk error has occurred
I've tried rebuilding the databases by following the directions in Article 88023, but that hasn't changed anything. I still can't open MM and our users are unable to login.
Any help would be greatly appreciated

I have 5 buildings that are still using MM. We recently upgraded the servers from 10.2.8 to 10.3.9. When I try to admin MM on the 10.3 servers from my laptop with 10.4.7 I get an error, something like, unable to access database, folder not found.
However if I run MM admin from a 10.3 workstation it works fine. have you tried to admin MM from a different workstation?
iBOOK G4   Mac OS X (10.4.7)  

Similar Messages

  • Just bought macbook pro and want to download purchases I have already made from itunes apps but when it says downloaded can't find it. I have run a search and found it in my mac but unable to open or do anything??

    just bought macbook pro and want to download purchases I have already made from itunes apps but when it says downloaded can't find it. I have run a search and found it in my mac but unable to open or do anything?? Do not understand what is happening.

    robynmm wrote:
    so how do I get the same apps for my macbook pro? or is that not possible?
    Not sure if that same Application is designed for Mac Os x, Search for Applications on App Store instead of iTunes on your Macbook Pro, as Applications available on iTunes Store on a Macbook is designed to work only on iOS Device like iPhone, iPad and iPod Touch and whatever is available on App Store on Mac is designed for Mac Os x.

  • User unable to open Database in RSC 3.1

    Hey Everyone
    I've got a user whose unable to open a database in RoboSource Control 3.1. She receives no error and RSC just sits there like DB connection was never opened. She can open other databases.
    I've tried different accounts on her machine and the database won't open for them either, but her account can open the database from other machines. I've repaired and uninstalled/reinstalled RSC but to no avail. I originally thought this to be a cache problem, but since it's affecting other accounts I'm no longer sure.
    Has anyone seen something like this before?
    Thanks!

    I am out of the office until 27-07-2009.
    If you require assistance please contact the helpdesk at
    [email protected] or +1 709 724 8529.
    Thanks
    Note: This is an automated response to your message  "[RoboSource Control]
    User unable to open Database in RSC 3.1" sent on 7/24/2009 8:43:06 PM.
    This is the only notification you will receive while this person is away.
    This e-mail may contain confidential information and the sender does not waive any related rights and obligations. If you are not the intended recipient please notify the sender and discard it.

  • N95 software update - "unable to open database"

    Hi all,
    Ive just done the update to V 20.0.016 and it seemed to work ok. I can add contacts, add calendar but it wont sync with my PC.
    it gives "unable to open database" on the phone.
    have tried removing the battery for 5 mins, the hard reset (though holding four buttons down was hard), restore to factory settings and reinastalled the update to no avail.
    any clues would be appreciated.
    Adie

    I had the same error message after updating my firmware. However, I had my config set to "delete all" data on phone before copying data from phone to PC. When I removed this setting and actually put something in the phone database all has worked fine.

  • Office for Mac 2011 - unable to open SharePoint docs since SSL 3.0 disabled

    We've disabled SSL 3.0 on our SharePoint 2010 servers in response to the POODLE vulnerability.  Now Mac users are unable to open SharePoint documents using Microsoft Word 2011.  The error they get is:
    No connectivity with the server.  The file can't be opened because the server couldn't be contacted.
    Mac users are also having similar connectivity issues to SharePoint from Document Connection.
    Anyone seen this and can suggest a fix?

    I had the same issue. It was resolved by enabling the TLS_RSA_WITH_3DES_EDE_CBC_SHA cipher on the SharePoint web front ends. I detailed my findings
    on the forum thread linked below.
    http://answers.microsoft.com/en-us/mac/forum/macoffice2011-macother/document-connection-and-sharepoint-sharepoint-not/c876fcde-3d4c-4353-b4f4-35970f3a4915?rtAction=1425468285376

  • Master unable to open database

    I am trying to run a replicated Berkeley DB instance and while the environment is created successfully and the master is elected, when the master attempts to open the database it returns an ENOENT. According the the documentation (and replication guide) this type of error occurs upon open when a replica attempts to open the database when it has not been created yet. While this makes sense for the replica, it doesn't seem like the master should ever return this error, particularly since the master has the DB_CREATE flag set. It is unclear to my why it is that the master replica is unable to open the database, does anyone know why this is occurring?
    Here is the relevant code:
    try
    u_int32_t envFlags;
    // First initialize the database enviroment information
    envFlags = DB_CREATE | // If the environment does not exist, create it.
    DB_RECOVER | // Run normal recovery
    DB_INIT_LOCK | // Initialize locking
    DB_INIT_LOG | // Initialize logging
    DB_INIT_MPOOL | // Initialize the cache
    DB_INIT_TXN | // Initialize transactions
    DB_INIT_REP | // Initialize replication
    DB_THREAD; // free-threaded (thread-safe)
    env_->set_errfile(stderr);
    //Sets verbose output to make replication easier to debug
    env_->set_verbose(DB_VERB_REPLICATION, 1);
    //Configure the local server
    env_->repmgr_set_local_site(local_.ip.c_str(), local_.port, 0);
    env_->repmgr_add_remote_site(replica.ip.c_str(), replica.port, NULL, 0);
    env_->rep_set_nsites(2);
    //If a role is specified then set the databases priority accordingly.
    switch ( r )
    case MASTER:
    env_->rep_set_priority(500);
    cerr << "Master Priority" << endl;
    break;
    case SLAVE:
    env_->rep_set_priority(50);
    cerr << "Slave Priority" << endl;
    break;
    case UNKNOWN:
    default:
    env_->rep_set_priority(5);
    cerr << "Unkown Priority" << endl;
    break;
    env_->set_app_private(&status);
    env_->set_event_notify(callback_handler);
    env_->repmgr_set_ack_policy(DB_REPMGR_ACKS_ONE);
    env_->set_timeout(1000000, DB_SET_TXN_TIMEOUT);
    env_->set_tx_max(10000);
    env_->set_lk_detect(DB_LOCK_MINWRITE);
    env_->open(path.c_str(), envFlags, 0);
    env_->repmgr_start(3, DB_REP_ELECTION);
    sleep(5);
    db_ = new Db(env_, 0);
    u_int32_t dbFlags = 0;
    bool isOpen = false;
    while(!isOpen)
    dbFlags = DB_AUTO_COMMIT;
    if( status.role == MASTER )
    cout << "Setting DB_CREATE Flag " << endl;
    dbFlags |= DB_CREATE;
    if( db_ == NULL )
    db_ = new Db(env_, 0);
    db_->set_error_stream(&std::cerr);
    cerr << "Attempting to open db" << endl;
    try
    db_->open(NULL, dbFileName_.c_str(), NULL, DB_BTREE, dbFlags, 0);
    cerr << "DB Opened successfully" << endl;
    isOpen = true;
    break;
    catch(DbException dbe)
    /* It is expected that this condition will be triggered
    * when client sites start up.
    * It can take a while for the master site to be found
    * and synced, and no DB will be available until then.
    if (dbe.get_errno() == ENOENT) {
    cerr << status.id << " DB not available yet, retrying." << endl;
    db_->close(0);
    db_ = NULL;
    } else {
    env_->err(dbe.get_errno(), "DB->open");
    throw dbe;
    sleep(5);
    // DbException is not a subclass of std::exception, so we
    // need to catch them both.
    catch(DbException &e)
    std::cerr << "Error opening database: " << dbFileName_ << "\n";
    std::cerr << e.what() << std::endl;
    catch(std::exception &e)
    std::cerr << "Error opening database: " << dbFileName_ << "\n";
    std::cerr << e.what() << std::endl;
    I am running this code with verbose replication output on a local machine. I start a single client on port 9090 and add a replica on port 9091 (the replica does not start since the first client does not return). I have tried cleaning out the folder where is db is written to and it makes no difference. I have provided some /* comments */ to augment what is being output.
    REP_UNDEF: EID 0 is assigned for site localhost:9091
    9090 Master Priority
    REP_UNDEF: Read in gen 9
    REP_UNDEF: Read in egen 9
    REP_UNDEF: rep_start: Found old version log 14
    CLIENT: dbs/ rep_send_message: msgv = 5 logv 14 gen = 9 eid -1, type newclient, LSN [0][0] nogroup nobuf
    event: DB_EVENT_REP_CLIENT, I am now a replication client
    CLIENT: starting election thread
    CLIENT: elect thread to do: 0
    CLIENT: repmgr elect: opcode 0, finished 0, master -2
    CLIENT: init connection to site localhost:9091 with result 115
    connecting to site localhost:9091: Connection refused
    Done sleeping, trying to open dbs
    /* Environment has been opened, now the client will try to open the database */
    Attempting to open db
    DB not available yet, retrying.
    /* Open fails since it is a client and there is no master to create the database yet */
    CLIENT: elect thread to do: 1
    DB_ENV->rep_elect:WARNING: nvotes (1) is sub-majority with nsites (2)
    DB_ENV->rep_elect:WARNING: nvotes (1) is sub-majority with nsites (2)
    CLIENT: Start election nsites 2, ack 1, priority 500
    Attempting to open db
    CLIENT: Tallying VOTE1[0] (2147483647, 9)
    CLIENT: Beginning an election
    CLIENT: dbs/ rep_send_message: msgv = 5 logv 14 gen = 9 eid -1, type vote1, LSN [1][5174] nogroup nobuf
    DB not available yet, retrying.
    CLIENT: Tallying VOTE2[0] (2147483647, 9)
    CLIENT: Counted my vote 1
    CLIENT: Skipping phase2 wait: already got 1 votes
    CLIENT: Got enough votes to win; election done; winner is 2147483647, gen 9
    CLIENT: Election finished in 2.098189000 sec
    CLIENT: Election done; egen 10
    event: DB_EVENT_REP_ELECTED
    CLIENT: Ended election with 0, sites 0, egen 10, flags 0x200a01
    CLIENT: Election done; egen 10
    CLIENT: New master gen 10, egen 11
    CLIENT: Establishing group as master.
    MASTER: rep_start: Old log version was 14
    MASTER: dbs/ rep_send_message: msgv = 5 logv 14 gen = 10 eid -1, type newmaster, LSN [1][5174] nobuf
    MASTER: restore_prep: No prepares. Skip.
    MASTER: dbs/ rep_send_message: msgv = 5 logv 14 gen = 10 eid -1, type log, LSN [1][5174]
    event: DB_EVENT_REP_MASTER
    event: DB_EVENT_REP_MASTER
    MASTER: election thread is exiting
    /* Client gets elected to be the master, and thus can set the db create flag */
    Setting DB_CREATE Flag
    Attempting to open db
    MASTER: dbs/ rep_send_message: msgv = 5 logv 14 gen = 10 eid -1, type log, LSN [1][5210] flush
    DB not available yet, retrying.
    /* Master cannot open the database event though the db create flag is set, this is the issue */
    Setting DB_CREATE Flag
    Attempting to open db
    MASTER: dbs/ rep_send_message: msgv = 5 logv 14 gen = 10 eid -1, type log, LSN [1][5272] flush
    DB not available yet, retrying.
    /* repeated indefinitely */
    Can anyone help? Thank you.

    dbFileName is "./dbs/test.db" and the dbs folder exists. I tried putting 777 permissions on the folder as well as using " dbs/test.db" to no avail.
    I removed the database and all logs and ran it again for the same time as before and below is the db_printlog output:
    [1][28]__txn_recycle: rec: 14 txnp 0 prevlsn [0][0]
         min: 2147483648
         max: 4294967295
    [1][64]__fop_create: rec: 143 txnp 80000001 prevlsn [0][0]
         name: ./dbs/80000000.f1e7a7fc0
         appname: 1
         mode: 660
    [1][128]__fop_create: rec: 143 txnp 80000003 prevlsn [0][0]
         name: ./dbs/80000002.b856343a0
         appname: 1
         mode: 660
    [1][192]__fop_create: rec: 143 txnp 80000005 prevlsn [0][0]
         name: ./dbs/80000004.f447bb460
         appname: 1
         mode: 660
    [1][256]__fop_create: rec: 143 txnp 80000007 prevlsn [0][0]
         name: ./dbs/80000006.d66a33830
         appname: 1
         mode: 660
    [1][320]__fop_create: rec: 143 txnp 80000009 prevlsn [0][0]
         name: ./dbs/80000008.d59895bb0
         appname: 1
         mode: 660

  • Unable to open database in READ ONLY mode

    When trying to open database in READ ONLY MODE it says needs recovery. How ever database opens succesfully in READ WRITE MODE.
    1) Startup mount
    2) SQL> ALTER DATABASE OPEN READ ONLY;
    ALTER DATABASE OPEN READ ONLY
    ERROR at line 1:
    ORA-16005: database requires recovery
    But database opens succesfully when opened in READ WRITE mode.

    user12038051 wrote:
    When trying to open database in READ ONLY MODE it says needs recovery. How ever database opens succesfully in READ WRITE MODE.
    1) Startup mount
    2) SQL> ALTER DATABASE OPEN READ ONLY;
    ALTER DATABASE OPEN READ ONLY
    ERROR at line 1:
    ORA-16005: database requires recovery
    But database opens succesfully when opened in READ WRITE mode.
    sqlplus '/as sysdba'
    shutdown imediate;
    startup;
    shutdown imediate;
    startup mount;
    recover database;
    alter database open read only;

  • Oracle 10G Express:Unable To open DataBase Home Page

    I am not able to open Database Home page.
    http://127.0.0.1:8040/apex
    I verified the below steps:
    1.OracleListener and Service are starting up fine.
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleXETNSListener
    The OracleXETNSListener service is starting.
    The OracleXETNSListener service was started successfully.
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>net start OracleServiceXE
    The OracleServiceXE service is starting.......
    The OracleServiceXE service was started successfully.
    2. netsat output - local host listening to port 8040
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>netstat -an | find "8040"
    TCP 127.0.0.1:8040 0.0.0.0:0 LISTENING
    3. Http port in database
    C:\oraclexe\app\oracle\product\10.2.0\server\BIN>sqlplus
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Aug 20 18:11:13 2006
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Enter user-name: system
    Enter password:
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SQL> select dbms_xdb.gethttpport() from dual;
    DBMS_XDB.GETHTTPPORT()
    8040
    SQL>
    4. Disabled Personal Firewall before starting the Service and Listener
    5. listener.ora
    LISTENER =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 8040))
    DEFAULT_SERVICE_LISTENER = (XE)
    CONNECT_TIMEOUT_LISTENER=10
    6.tnsnames.ora
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 8040))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    7. Listener log when i try to open the database home page.
    Started with pid=180
    Listening on: (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=127.0.0.1)(PORT=8040)))
    Listener completed notification to CRS on start
    TIMESTAMP * CONNECT DATA [* PROTOCOL INFO] * EVENT [* SID] * RETURN CODE
    20-AUG-2006 17:28:23 * 12502
    TNS-12502: TNS:listener received no CONNECT_DATA from client
    20-AUG-2006 17:30:34 * 12502
    TNS-12502: TNS:listener received no CONNECT_DATA from client
    Can someone help me how to get to the home page.

    What does your lsnrctl status give you?

  • Unable to open Database: TrueSuite Access Manager

    Every time I attempt to register fingerprints in the TrueSuite Access Manager, I receive an error that states that it failed to open the specific database.

    Hi there, I have the same problem on a Portege R500, short history:
    1. Vista was installed with BIOS and HDD password + fingerprint - worked fine
    2. Installed XP with the recovery image, re-formatting the HDD
    3. The BIOS and HDD fingerprint was accepted (!) - i.e. he remembered the fingerprints on the board
    4. But the Windows welcome screen showed "please wait"
    5. New installation of actual version of True Suite Software did not help
    6. When running the Access Manager and trying to record new fingerprints, it shows "error: database not found"
    7. Another observation: clicking delete fingerprint reveals a fingerprint with a scrambled name, it can't be deleted
    8. Ignoring the fingerprint reader works (on BIOS, HDD and Windows logon)
    9. I believe it would have been better to delete the BIOS and HDD fingerprint in Vista before installing XP. Now there is an inconsistency between the fingerprints on the board and in the Software database - does that help?
    Thanks for keep working on it,
    Regards

  • Unable to open database connection after applicaiton is running for several days.

    Has anyone experienced a similar error to this:
    After about 3 days of use our application starts to report errors opening
    the database connection. By that time we've had thousands of transactions
    happen. Oracle is only showing a few open connections to our iAS host so
    the error seems to indicate the connection pool. I'm configured for 64
    connections (the default). We are using the Oracle native driver on iAS
    SP3, Solaris.
    The iAS ksvradmin monitor gives errors when trying to see how many open
    connections it has (verified bug in SP3), so I can't get any info from iAS
    on the connection pool.
    Thanks in advance,
    Rodger Ball
    Sr. Engineer
    Business Wire

    iAS6 SP3 and earlier cannot detect dead connections. If connections become
    stale, iAS does not detect this and will hand out these stale connections.
    I don't know enough about your problem, but you can check for this.
    hope this helps,
    -James
    "Rodger Ball" <[email protected]> wrote in message
    news:9suucb$[email protected]..
    Has anyone experienced a similar error to this:
    After about 3 days of use our application starts to report errors opening
    the database connection. By that time we've had thousands of transactions
    happen. Oracle is only showing a few open connections to our iAS host so
    the error seems to indicate the connection pool. I'm configured for 64
    connections (the default). We are using the Oracle native driver on iAS
    SP3, Solaris.
    The iAS ksvradmin monitor gives errors when trying to see how many open
    connections it has (verified bug in SP3), so I can't get any info from iAS
    on the connection pool.
    Thanks in advance,
    Rodger Ball
    Sr. Engineer
    Business Wire

  • Unable to open database : error , ora-03113 end of file communication

    Hi Guys ,
    I am facing a serious issue with my database
    machine Oracle Linux Tikanga 5
    database : 10.2.0.1
    Error : ora-03113
    I was trying to drop a logfile , while inserting the data ....
    I restored and tried recovering it but it recovers with message , media recover complete but doesnot allows to open the database
    gives the same error : Error : ora-03113 end of file communication
    alert_log shows
    alter database recover if needed
    start
    Media Recovery Start
    ORA-264 signalled during: alter database recover if needed
    start
    Wed Jan 9 16:20:18 2013
    db_recovery_file_dest_size of 2048 MB is 40.79% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.
    Wed Jan 9 16:22:02 2013
    alter database recover datafile list clear
    Wed Jan 9 16:22:02 2013
    Completed: alter database recover datafile list clear
    Wed Jan 9 16:22:02 2013
    alter database recover datafile list
    1 , 2 , 3 , 4 , 5
    Completed: alter database recover datafile list
    1 , 2 , 3 , 4 , 5
    Wed Jan 9 16:22:02 2013
    alter database recover if needed
    start
    Media Recovery Start
    ORA-264 signalled during: alter database recover if needed
    start
    Wed Jan 9 16:22:07 2013
    alter database open
    Wed Jan 9 16:22:07 2013
    LGWR: STARTING ARCH PROCESSES
    ARC0 started with pid=16, OS id=2049
    Wed Jan 9 16:22:07 2013
    ARC0: Archival started
    ARC1: Archival started
    LGWR: STARTING ARCH PROCESSES COMPLETE
    ARC1 started with pid=17, OS id=2051
    Wed Jan 9 16:22:07 2013
    Repairing half complete open of thread 1
    Wed Jan 9 16:22:07 2013
    Errors in file /d1/app/oracle/oradata/orcl/bdump/orcl_lgwr_1966.trc:
    ORA-00600: internal error code, arguments: [3712], [1], [1], [0], [445262], [0], [445261], []
    Wed Jan 9 16:22:08 2013
    Errors in file /d1/app/oracle/oradata/orcl/bdump/orcl_lgwr_1966.trc:
    ORA-00600: internal error code, arguments: [3712], [1], [1], [0], [445262], [0], [445261], []
    LGWR: terminating instance due to error 470
    Instance terminated by LGWR, pid = 1966
    can you please suggest on the same ..
    Thanks

    Due to the nature of the error and to prevent any trial-and-error, I would highly recommand you to open a service request with Oracle asap.
    Oracle too recommands the same.
    Thanks...

  • Unable to open Database Home Page after installation

    Hello!
    I have made my very first installation of Oracle 10g XE and I have immediately tried to open the Database Home Page, as suggested by the installer.
    However, I have got a browser error and I noticed that no process was listening on port 8080.
    No Oracle service was running, except OracleXETNSListener. Nonetheless I have started OracleServiceXE as well and it started without visible errors.
    However, port 8080 is still not open.
    I am really disappointed with my first experience with Oracle products. No errors whatsoever, but an inaccessible home page. In addition, I have noticed other questions about the same problem. No working answers for me. I feel quite frustrated.
    Just FYI: I am running Windows XP SP3.
    Is there any way to solve this issue at the end of the day?
    Thank you and sorry if being offending. I think that a company like Oracle should not tolerate such an unfriendly product installation, especially if counting on winning new customers with its free XE database.
    Best wishes,
    Georgi
    P.S. Yes, I have errors in C:\oraclexe\app\oracle\product\10.2.0\server\config\log files, but they are quite a lot and I can't realize what went wrong exactly. There are probably errors elsewhere as well, but they are not visible to the ordinary user/developer during the installation. Sad.
    Edited by: user10677497 on Dec 3, 2008 4:30 PM

    Hello!
    I have made my very first installation of Oracle 10g XE and I have immediately tried to open the Database Home Page, as suggested by the installer.
    However, I have got a browser error and I noticed that no process was listening on port 8080.
    No Oracle service was running, except OracleXETNSListener. Nonetheless I have started OracleServiceXE as well and it started without visible errors.
    However, port 8080 is still not open.
    I am really disappointed with my first experience with Oracle products. No errors whatsoever, but an inaccessible home page. In addition, I have noticed other questions about the same problem. No working answers for me. I feel quite frustrated.
    Just FYI: I am running Windows XP SP3.
    Is there any way to solve this issue at the end of the day?
    Thank you and sorry if being offending. I think that a company like Oracle should not tolerate such an unfriendly product installation, especially if counting on winning new customers with its free XE database.
    Best wishes,
    Georgi
    P.S. Yes, I have errors in C:\oraclexe\app\oracle\product\10.2.0\server\config\log files, but they are quite a lot and I can't realize what went wrong exactly. There are probably errors elsewhere as well, but they are not visible to the ordinary user/developer during the installation. Sad.
    Edited by: user10677497 on Dec 3, 2008 4:30 PM

  • File Manager unable to open, Windows error message...

    When I try to open File Manager from Nokia PC Suite or Nokia Phone Browser in My Computer, a Windows error message suddenly appears and says "Windows Explorer has encountered a problem and needs to close." I don't know what seems to be the problem. I've been using it for months and this is the only time I encountered a problem like this. How can I solve this problem?
    I have the latest version of Nokia PC Suite (Version 6.85.12.0), my OS is Windows XP 2000, and I'm using a USB cable as a connector.
    Please, I really do need to fix this one.

    "In a lot of cases, these errors are caused by 3rd party shell extensions that are not functioning properly", check here for details and solution: http://www.helpwithwindows.com/techfiles/explorer-crashes.html .
    What's the law of the jungle?

  • New mac user, unable to open camera raw files in CS6

    I'd really appreciate some simple 'idiot steps' that will enable me to open camera raw files (nefs) in CS6...
    you will have to assume that I am an idiot and know nothing about Macs (one of which is true, the other debateable!)
    thank you

    Applied this update?:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5390

  • Mac users unable to open PDF Package created in version 9

    Any ideas? Some have said a plugin works but I have been unable to find the plug in on adobe's site.
    Thanks in advance for any help you can offer. :-)
    ~Nikki

    Mac OS 10.4.11: I could not open pdf docs today (12-24-08), uninstalled & installed Adobe Reader 9.0.0. pdf docs icons changed but open, however cannot open Reader from Applications and get: Adobe Reader
    Version 9.0.0
    Installing/fixing installation
    Then immediately get this error message:
    Adobe Reader could not install correctly.
    Adobe Reader was unable to install a necessary component
    and must quit.
    Any help out there for me?
    Thanks, Tony

Maybe you are looking for

  • Using MDM Web UI for Tracking Changes in MDM with SQL

    Hi Does any one have Step to step document on How to Generate MDM Web UI for Tracking Changes with SQL Server. we are using SAP Netweaver Composition Environemnt 7.1,SAP MDM 7.1and Micorsoft  Sql Server 2008. I found few blogs and documents in SDN, b

  • Panel Splitter width

    Hi , i can set panel splitter width of an application from skin using af|panelSplitter -tr-divider-size: 0; is it possible to define splitter width for differ panel splitter i tried with style class like af|panelSplitter.splitter1  af|panelSplitter -

  • How do I getFirefox to connect me automatically to AOL Mail?

    My Firefox was set up to connect me to AOL Mail right away. In my attempt to solve a different problem, I returned to the "default" setting, and lost that automatic connection. How can I restore it?

  • Help! Nothing works...

    i have had my ipod nano for a week. i had it on charger and it finished charging. then all of a sudden while updating it came up with the funny little battery sign with the lightining bolt on the left? and it still has the do not disconnect sign. als

  • To reduce quantity to be confirmed by posting scrap in process order

    Hi Experts,                    Is it possible to use MQC such that the planned quantity in each phase keeps reducing by the quantity of scrap posted in COR6N in the earlier phase. That means if planned quantity in phase 20 is 100 and i post a scap of