Unable to open  database on rac

hi,
I am using oracle 11.2.0.1.0 RAC two node on OEL5 , i have down the db using command /srvctl stop database -d rac. When i start the db it shows below error
[oracle@machine1 bin]$ ./srvctl start database -d rac
PRCR-1079 : Failed to start resource ora.rac.db
ORA-00119: invalid specification for system parameter %s
CRS-2674: Start of 'ora.rac.db' on 'machine1' failed
CRS-2632: There are no more servers to try to place resource 'ora.rac.db' on that would satisfy its placement policy
ORA-00119: invalid specification for system parameter %s
CRS-2674: Start of 'ora.rac.db' on 'machine2' failed

HI,
Can you please check following link: PRCR-1079 pada saat starting database RAC | Z's cheat sheets
Thank you

Similar Messages

  • 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)  

  • 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.

  • 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 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

  • Unable to create database in RAC

    Hi All,
    I installed oracle RAC 10.2.0 on linux RHEL 4 in VMware 5.5.
    The crs and oracle software are successfully installed and asm instance also create with one diskgroup, then i start dbca in first node, that time i am getting the error like this.
    the current asm instance in single asm instance, if you wnat to use this asm for rac then convert the single asm indtance to RAC asm instance.
    Kindly tell me how to convert it. if i try to create daatabse in node 2 that time i am getting the ora-12547.
    Kindly tell me...
    DEatils about the installtion
    Server : VMWARE
    node : RAC1 and RAC1
    CRS version: 10.2.0
    Oracel version: 10.2.0
    OS : linux RHEL4
    REgards
    Senthil Kumar.

    Oracle® Database Oracle Clusterware and Oracle Real Application Clusters Installation Guide 10g Release 2 (10.2) for Linux
    D.3.6 Converting Single-Instance ASM to Cluster ASM
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b14203/cvrt2rac.htm#BABJDAJG

  • 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

  • StarOffice Update 6 = Unable to open database tables anymore

    Since I updated my StarOffice installallation to StarOffice 8 Product Update 6 I can't open the tables in my firebird and mysql databases. The connection is successfully established but when I try to open a table StarOffice freezes and about 30 seconds later I get the following error messages:
    Microsoft Visual C++ Runtime Library
    Runtime Error!
    Program: C:\Programme\Sun\StarOffice 8\program\soffice.BIN
    abnormal program terminationWhen I revert back to StarOffice 8 Product Update 5 everything is ok again.
    I'm using StarOffice under Windows XP SP2 (German) with all available patches. I'm able to reproduce the error with JRE 1.4.2 and 1.5.0.
    The problem also exists in OpenOffice 2.2.
    Thanks for help
    Sebastian
    edit: This seems to be a bug. For more Informations look at
    http://www.openoffice.org/issues/show_bug.cgi?id=74732
    and for an OpenOffice inofficial fix
    http://dba.openoffice.org/servlets/ProjectDocumentList?folderID=547&expandFolder=547&folderID=0

    Monday 30 April 2007
    From your description, the only thing I can think of is that SO8 comes with Mastersoft filters for MacWord up to version 5.1. It may be possible that SO8-PP6 is reading something in the file header and trying to open the file using the Mastersoft filter. OOo does not have the filters.
    To test I would try to open the file making sure to select the filter to be used, rather than using auto open.
    Phil

  • Error :: ODBC Unable To Open Database And Windows Photo Gallery.  How do I fix?

    I get an ODBC error when I try to get photos in the organizer of Photoshop 4.  It just started.  What is wrong?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • Unable to Open Database

    I have been experiencing something weird in C1. We are running Gw 7.03 with latest patches on Windows 2003. Every several weeks it seems that c1 cannot access the wpdomain.db file. The workaround is to stop the MTA and copy the DC files from the SDD and then the problem goes away. It seems odd we have to do this frequently. Has anyone else seen this running GW on Windows where the DC files have to be copied over every so often or would a Rebuild fix this problem?
    TIA
    B

    Bquinner,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Visit http://support.novell.com and search the knowledgebase and/or check all
    the other self support options and support programs available.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://forums.novell.com)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://forums.novell.com/faq.php
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

Maybe you are looking for