Re: Corrupt Environment

Hi Pascal,
We ran into this problem frequently.
It looked like these partitions got corrupt when they were running
a task that did not return to the client (eg an infinite loop or a very
long
request) and the client was shut down harshly.
Then it even caused EConsole to either hang or blow up when
trying to open the Forte_Executor.
When running from
partition workshop and when the application is hanging, killing harshly
the Forte client is the worst thing to do. Developers should always
try 'Cancel Run' and/or closing the partition workshop, or anything
but killing the Forte client.
The only work-around we found is to try to guess what process
is corrupt (ps -ef might help on a Unix server) and kill it manually.
This worked in 50% cases. Otherwise we had to kill all Forte
processes and recycle the node like you describe it.
I had sent a message on this forum a while ago (may be a
year) about this problem, but had no answer then. May be
someone has a clue by now ?
Vincent Figari
On Fri, 5 Jun 1998 11:40:17 +0200 "Rottier, Pascal"
<[email protected]> writes:
Hi all,
This is a problem that keeps popping up now an again.
When you look at the contents of a node in the envi-
ronment, you will see a "Forte executor". If you open
this, it contains a number of partitions. Some of these
may be "none", meaning the processes are still alive,
but they are not in use right now. Others are busy,
and have a name like "<ProjectName>_cl0_part3".
Somehow, some of these partitions have become
corrupt. You can't open them, you can't shut them
down. If you startup your application (in development),
it may try to use these partitions and hang.
The only solution we have is shutdown the entire node,
kill all processes manually that somehow won't go down
and start everything up again.
Here are my questions.
1) What went wrong?
2) How do we prevent this?
3) Is there another way to solve it, if preventing it failed?
Pascal Rottier.
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive
<URL:http://pinehurst.sageit.com/listarchive/>
You don't need to buy Internet access to use free Internet e-mail.
Get completely free e-mail from Juno at http://www.juno.com
Or call Juno at (800) 654-JUNO [654-5866]
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

[Pascal Rottier]
The "none" ftexecs aren't the problem. They stay none and they
stay alive
for days if you don't cancel them. They just sit there, waiting
to be used.
It's like it was posted in a previous message. If the ftexec on
the server
sides cancels a bit too awkward, it hang's and doesn't respond
anymore.
When econsole of escript tries to open this ftexec, it waits
forever.
So it's not a "none" ftexec, but a running ftexec that's
cancelled, that causes
the problem.
Pascal.
Attached is a program that we wrote for killing those "None" ftexecs
every 15
minutes (hopefully, before they become corrupt). This is completely
based on
technote 11435, but a member of our staff added a service object to do
the
dirty work every 15 minutes. Also, there is a constant defined
(kServerNode)
that you'll want to set to the name of your server node.
-Martin-
To unsubscribe, email '[email protected]' with
'unsubscribe forte-users' as the body of the message.
Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

Similar Messages

  • Removing corrupt environment without losing database data?

    OK, I'm using Berkeley DB 4.3.28, Java API with no transactions or concurrency. We have several environments with multiple databases under them. Occasionally the environment gets corrupted. The original coder didn't understand this had to be coded for, so I'm trying to fix that.
    Normally, all database environments are opened with the following settings:
    setErrorPrefix(prefix);
    setPanicHandler(new EmsPanicHandler(prefix));
    setJoinEnvironment(true);
    I've recreated the environment corruption and used the following code to remove and recreate the environment (as suggested here: http://www.oracle.com/technology/documentation/berkeley-db/db/ref/cam/fail.html)
              EnvironmentConfig env_config = new EmsEnvironmentConfig("CleanEnvironment");
              env_config.setAllowCreate(true);
                    env_config.setErrorPrefix("string");
                    env_config.setPanicHandler(new MyPanicHandler());
              Environment m_env_handle = null;
            try {
                 File m_file = new File(environment);
                 if (!m_file.exists())
                      System.err.println("Environment "+environment+" does not exist. Skipping");
                      return;
                 System.out.println("Attempting to remove environment "+environment+" with recovery enabled");
                  //m_env_handle = new Environment(m_file, env_config);
                 Environment.remove(m_file, true, env_config);
                 System.out.println("Attempting to recreate environment");
                 m_env_handle = new Environment(m_file, env_config);
            } catch (Throwable t) {
                System.err.println("Exception trying to recover environment "+environment+": "+t.getLocalizedMessage());
            finally
                 if (m_env_handle != null)
                      System.out.println("Closing environment "+environment);
                      try {
                           m_env_handle.close();
                           System.out.println("Environment "+environment+" closed successfully");
                      catch (Exception e)
                           System.err.println("Exception trying to close environment "+environment+": "+e.getLocalizedMessage());
            }This removes and recreates the environment without giving me an error message and apparently without touching any of the underlying databases.
    Unfortunately, when I try using a database in the environment again, I can open the environment, but I get this error when trying to open the database:
    java.lang.IllegalArgumentException: Invalid argument
            at com.sleepycat.db.internal.db_javaJNI.Db_open(Native Method)
            at com.sleepycat.db.internal.Db.open(Db.java:329)
            at com.sleepycat.db.DatabaseConfig.openDatabase(DatabaseConfig.java:478)
            at com.sleepycat.db.Environment.openDatabase(Environment.java:81)
            at com.nmss.db.berkeleydb.Name_Address_Map.open(Name_Address_Map.java:358)
            at com.nmss.db.berkeleydb.Name_Address_Map.retrieveAddress(Name_Address_Map.java:296)
            at com.nmss.framework.inventory.Command.add(Command.java:269)
            at com.nmss.framework.inventory.Command.processArgs(Command.java:59)
            at com.nmss.framework.inventory.Command.<init>(Command.java:39)
            at com.nmss.framework.inventory.Command.main(Command.java:483)The Environment config is the same one I posted at the start of the message:
    setErrorPrefix(prefix);
    setPanicHandler(new MyPanicHandler(prefix));
    setJoinEnvironment(true);
    The Database config is:
    DatabaseConfig db_config = new DatabaseConfig();
    db_config.setType(DatabaseType.BTREE);
    db_config.setAllowCreate(true);
    Can anyone tell why I would be getting this error? Or does removing the environment simply invalidate any database files that were underneath it?
    db_verify used against the database returns 0.
    Thanks,
    Mike
    Message was edited by:
    msully
    Message was edited by:
    msully

    So the latest - I totally removed my old databases and rebuilt my app, with the following environment config:
            setErrorPrefix(prefix.toUpperCase());
            setPanicHandler(new EmsPanicHandler(prefix));
            setInitializeCache(true);
            setTransactional(true);
            setInitializeLogging(true);
            setInitializeLocking(true);
            setAllowCreate(true);Now I am getting the error:
    /var/tmp: no base system shared memory ID specified
    java.lang.IllegalArgumentException: Invalid argument
            at com.sleepycat.db.internal.db_javaJNI.DbEnv_open(Native Method)
            at com.sleepycat.db.internal.DbEnv.open(DbEnv.java:235)
            at com.sleepycat.db.EnvironmentConfig.openEnvironment(EnvironmentConfig.java:714)
            at com.sleepycat.db.Environment.<init>(Environment.java:30)
            at com.nmss.db.berkeleydb.LogHandler.getEnvironment(LogHandler.java:226)
            at com.nmss.db.berkeleydb.LogHandler.open(LogHandler.java:197)
            at com.nmss.db.berkeleydb.LogHandler.store(LogHandler.java:235)
            at com.nmss.util.LogHandlerImpl.publish(LogHandlerImpl.java:45)
            at java.util.logging.Logger.log(Logger.java:452)
            at java.util.logging.Logger.doLog(Logger.java:474)
            at java.util.logging.Logger.logp(Logger.java:590)
            at com.nmss.util.Logger.log(Logger.java:87)
            at com.nmss.framework.inventory.Command.add(Command.java:306)
            at com.nmss.framework.inventory.Command.processArgs(Command.java:59)
            at com.nmss.framework.inventory.Command.<init>(Command.java:39)
            at com.nmss.framework.inventory.Command.main(Command.java:483)

  • Recovery from a corrupted par file

    The "com.sap.portal.layouts.default" par file in our EP6 SP9 development environment has become corrupted.  This renders many of our admin tools useless, including par file deployment.
    Is there an easy way (or any way!) to retrieve this par file from a working portal environment and overlay it in the corrupted environment, maybe through a file transfer, without using the portal System Administration tools?
    Any suggestions will be greatly appreciated!
    Thanks,
    Manny

    Raj,
    Thanks for the quick response.  Unfortunately, it did not work.  Even more unfortunately, I am not the actual system administrator, so I don't have the operating system access to the file system (although I do have admin access via the portal).  Therefore, I'm not positive that the person who tried to implement your suggestion did it right.
    I downloaded the good version of the par file from a working portal environment and emailed it to our administrator.  He took it and placed it in the directory that you mentioned, and restarted the server.  Is it possible that something got lost in the translation from the par file getting downloaded, emailed, and detached?
    Anyway, the portal is not completely down.  I am actually able to go to Content Administration (which I could do before your suggestion as well).  When I open a page in the page editor that contains one of the default layout, and go to Page Layout, I get this message:
    Error in Layout Jsp component (pageId or jspName not available)
    Anyway, I may have our administrator try it again.  Our other option at this point is to perform a database & filesystem restore.
    Thanks,
    Manny

  • WARNING: Cookie information is corrupt

    Followed FN - 63170.
    After C3200_RM_ALT.srec.124-15r.T1 is installed I still get the cookie warning and when I do a show cookie it still shows all 00 00 00's.
    Can't get to the next step, TFTP or xmodem the new IOS image. It haults at rommon everytime. When I attempt to TFTP or xmodem the new image "WARNING: Cookie information is corrupt" scrolls down the screen and when complete I get a "Download failed, invalid image"...something like that.
    Now I get more error messages...
    System Bootstrap, Version 12.4(15r)T1,RELEASE SOFTWARE (fc1)
    Technical Support: http://www.cisco.com/techsupport
    Copyright (c) 2008 by cisco Systems, Inc.
    correct_flash_nvram:Both copies of NVRAM corrupted
    environment checksum failed
    WARNING: Cookie information is corrupt
    C3200 platform with 131072 Kbytes of main memory
    rommon 1 >
    Any suggestions????

    Yes I did. It turns out once the cookie is corrupt there is no way for a customer of Cisco to re-create the cookie. It holds information (hardware information) that is necessary for the IOS upgrade. It will transfer to flash but when complete it will not verify correctly and will fail the download.
    This link explains it all. The bootstrap upgrade is only to prevent the cookie from being corrupt. Once it is you must RMA with Cisco.
    http://www.cisco.com/en/US/ts/fn/631/fn63170.html

  • (JE 3.2.44) Couldn't open file

    Hello!
    We recently upgraded to newer version of BDB JE, and failed with random, but weird issue:
    17/Oct/2007 04:49:38 ERROR [pool-97-thread-2] - com.sleepycat.je.DatabaseException: (JE 3.2.44) Database r
    elations_database14269 id=26 rootLsn=0xffffffff/0xffffffff  IN type=DBIN/2 id=29976291 not expected on INL
    ist
    com.sleepycat.je.DatabaseException: (JE 3.2.44) Database relations_database14269 id=26 rootLsn=0xffffffff/
    0xffffffff  IN type=DBIN/2 id=29976291 not expected on INList
            at com.sleepycat.je.evictor.Evictor.selectIN(Evictor.java:511)
            at com.sleepycat.je.evictor.Evictor.evictBatch(Evictor.java:354)
            at com.sleepycat.je.evictor.Evictor.doEvict(Evictor.java:249)
            at com.sleepycat.je.evictor.Evictor.doCriticalEviction(Evictor.java:274)
            at com.sleepycat.je.dbi.CursorImpl.close(CursorImpl.java:684)
            at com.sleepycat.je.Cursor.close(Cursor.java:262)
            at com.sleepycat.je.Cursor.close(Cursor.java:250)
            at com.sleepycat.je.Database.putInternal(Database.java:667)
            at com.sleepycat.je.Database.put(Database.java:609)
            at com.redwerk.webcrawler.storage.url.bdbje.BDBJEStorage.saveRelations(BDBJEStorage.java:361)
            at com.redwerk.webcrawler.storage.url.bdbje.BDBJEStorage.update(BDBJEStorage.java:396)
            at com.redwerk.webcrawler.storage.url.RetryHandlingStorageDecorator.update(RetryHandlingStorageDec
    orator.java:159)
            at com.redwerk.webcrawler.storage.url.CountHandlingStorageDecorator.update(CountHandlingStorageDec
    orator.java:86)
            at com.redwerk.webcrawler.filter.record.UrlProcessedFilter._accept(UrlProcessedFilter.java:34)
            at com.redwerk.webcrawler.filter.record.ChainedFilter.accept(ChainedFilter.java:23)
            at com.redwerk.webcrawler.filter.record.ChainedFilter.accept(ChainedFilter.java:25)
            at com.redwerk.webcrawler.Crawler.addRecord(Crawler.java:731)
            at com.redwerk.webcrawler.ConsumerThread.run(ConsumerThread.java:301)
            at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44
    2)
            at edu.emory.mathcs.backport.java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
            at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:135)
            at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.
    java:990)
            at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
    .java:531)
            at java.lang.Thread.run(Thread.java:595)
    17/Oct/2007 04:49:38 ERROR [pool-97-thread-4] - com.sleepycat.je.DatabaseException: (JE 3.2.44) fetchTarge
    t of 0x1d3/0x472b30 parent IN=32738188 lastFullVersion=0x1d3/0x479cdc parent.getDirty()=true state=2 com.s
    leepycat.je.log.LogFileNotFoundException: (JE 3.2.44) 0x1d3/0x472b30 (JE 3.2.44) Couldn't open file db/000
    001d3.jdb: db/000001d3.jdb (No such file or directory)
    com.sleepycat.je.DatabaseException: (JE 3.2.44) fetchTarget of 0x1d3/0x472b30 parent IN=32738188 lastFullV
    ersion=0x1d3/0x479cdc parent.getDirty()=true state=2 com.sleepycat.je.log.LogFileNotFoundException: (JE 3.
    2.44) 0x1d3/0x472b30 (JE 3.2.44) Couldn't open file db/000001d3.jdb: db/000001d3.jdb (No such file or dire
    ctory)
            at com.sleepycat.je.tree.ChildReference.fetchTarget(ChildReference.java:143)
            at com.sleepycat.je.tree.DIN.getDupCountLN(DIN.java:147)
            at com.sleepycat.je.dbi.CursorImpl.lockDupCountLN(CursorImpl.java:2409)
            at com.sleepycat.je.tree.Tree.insertDuplicate(Tree.java:2703)
            at com.sleepycat.je.tree.Tree.insert(Tree.java:2652)
            at com.sleepycat.je.dbi.CursorImpl.putLN(CursorImpl.java:1004)
            at com.sleepycat.je.dbi.CursorImpl.put(CursorImpl.java:1027)
            at com.sleepycat.je.Cursor.putAllowPhantoms(Cursor.java:871)
            at com.sleepycat.je.Cursor.putNoNotify(Cursor.java:808)
            at com.sleepycat.je.Cursor.putInternal(Cursor.java:762)
            at com.sleepycat.je.Database.putInternal(Database.java:663)
            at com.sleepycat.je.Database.put(Database.java:609)
            at com.redwerk.webcrawler.storage.url.bdbje.BDBJEStorage.saveRelations(BDBJEStorage.java:361)
            at com.redwerk.webcrawler.storage.url.bdbje.BDBJEStorage.update(BDBJEStorage.java:396)
            at com.redwerk.webcrawler.storage.url.RetryHandlingStorageDecorator.update(RetryHandlingStorageDec
    orator.java:159)
            at com.redwerk.webcrawler.storage.url.CountHandlingStorageDecorator.update(CountHandlingStorageDec
    orator.java:86)
            at com.redwerk.webcrawler.filter.record.UrlProcessedFilter._accept(UrlProcessedFilter.java:34)
            at com.redwerk.webcrawler.filter.record.ChainedFilter.accept(ChainedFilter.java:23)
            at com.redwerk.webcrawler.filter.record.ChainedFilter.accept(ChainedFilter.java:25)
            at com.redwerk.webcrawler.filter.record.ChainedFilter.accept(ChainedFilter.java:25)
            at com.redwerk.webcrawler.Crawler.addRecord(Crawler.java:731)
            at com.redwerk.webcrawler.ConsumerThread.run(ConsumerThread.java:301)
            at edu.emory.mathcs.backport.java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:44
    2)
            at edu.emory.mathcs.backport.java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:305)
            at edu.emory.mathcs.backport.java.util.concurrent.FutureTask.run(FutureTask.java:135)
            at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.
    java:990)
            at edu.emory.mathcs.backport.java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor
    .java:531)
            at java.lang.Thread.run(Thread.java:595)
    Caused by: com.sleepycat.je.log.LogFileNotFoundException: (JE 3.2.44) 0x1d3/0x472b30 (JE 3.2.44) Couldn't
    open file db/000001d3.jdb: db/000001d3.jdb (No such file or directory)
            at com.sleepycat.je.log.LogManager.getLogSource(LogManager.java:760)
            at com.sleepycat.je.log.LogManager.getLogEntry(LogManager.java:594)
            at com.sleepycat.je.log.LogManager.get(LogManager.java:735)
            at com.sleepycat.je.tree.ChildReference.fetchTarget(ChildReference.java:135)
            ... 27 moreWe checked our code and found we are not doing any removal of JE files at this stage (we had to implement removal of JE files BEFORE thread start to avoid cases when corrupted environment causes current task to not start, probably there's a better way? However this is definitely not a cause of the error, because removal is performed before environment is created)
    The je.properties we're using is:
    je.cleaner.threads=7
    je.maxMemoryPercent=40
    je.cleaner.deadlockRetry=7
    #je.cleaner.minFileUtilization=20
    je.cleaner.readSize=1048576
    je.cleaner.lookAheadCacheSize=262144
    #je.evictor.lruOnly=false
    #je.evictor.nodesPerScan=100
    je.log.faultReadSize=102400So the question is - is this is some bug in BDB JE, or we just missed things?

    Hi Eugene,
    We recently upgraded to newer version of BDB JE, and
    failed with random, but weird issue:Were any of the log files for this environment created with an earlier version of JE? If so, what version?
    Are you using DeferredWrite? There were bugs in earlier JE releases involving DeferredWrite and database removal/truncation and duplicates. I see from the information in your post that you are using database removal/truncation and duplicates.
    We checked our code and found we are not doing any removal
    of JE files at this stage (we had to implement
    removal of JE files BEFORE thread start to avoid
    cases when corrupted environment causes current task
    to not start, probably there's a better way? However
    this is definitely not a cause of the error, because
    removal is performed before environment is created)I'm not sure I understand. Before opening an environment, if you wish to clear out all data in the environment directory and start from scratch, then the right thing to do is delete all the log files. If that's what you're doing, that's fine.
    --mark                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Not able to start the database

    I have installed Oracle Database 10g on my PC. It was working fine untill today.
    When i tried to start Oracle, error messages appear -
    *"isqlplussvc.exe was not found"*
    and
    "This application has failed to start because orancds10.dll was not found."
    What could be the reason for these errors and what could be the work around?
    Please help!!!

    This application has failed to start because orancds10.dll was not found ...There's something wrong in your environment. Either you don't have this (and maybe others) file in %ORACLE_HOME%\bin or you lost the file for whatever reason.
    Check your PATH variable, whether it contains %ORACLE_HOME%\bin . And ORACLE_HOME must be the one from Developer Suite 10g, not the old 8i home.
    If you have a corrupted environment you may have to reinstall.
    Werner

  • Application dying with core dump on what appears to be berkeley

    I have a web app being run on a solaris server. This web app ran for approximately 20 hours before crashing. I have the core dump file, but it is quite large (11GB). Using mdb I am able to get the stack trace from the core dump. Could this be an issue with a corrupted BDB? Or could it be corrupted environment file(s)? A similar, but different (slightly different stack trace) error that happened on another server a few hours later. We have 3 other servers that continue to run successfully though with the same BDB objects.
    We are not writing to any of the BDBs. They are read only. Same with secondary BDBs. It is a java webapp interacting with the native solaris libraries. I forgot to add, this is a 64 bit machine.
    If you have any ideas/suggestions/need more info please let me know.
    Top of the stack trace below.
    libc.so.1`_lwp_kill+8(6, 0, ffffffff7ef45538, ffffffffffffffff, ffffffff7ef3a000, 0)
    libc.so.1`abort+0x118(1, 1d8, ffffffff7e2fc6f8, 1ef13c, 0, 0)
    libjvm.so`__1cCosFabort6Fb_v_+0x58(1, 1, 2dbc8, ffffffff7e69e000, 3abb94, 2d800)
    libjvm.so`__1cHVMErrorOreport_and_die6M_v_+0xcb4(ffffffff7e700480, 0, 1, ffffffff7e70ace0, ffffffff7e6cbb80, ffffffff7e55c873)
    libjvm.so`JVM_handle_solaris_signal+0xa6c(a, fffffffccbefd500, fffffffccbefd220, 1a0c00, 101b8a800, 280000)
    libc.so.1`__sighndlr+0xc(a, fffffffccbefd500, fffffffccbefd220, ffffffff7ddf5df0, 0, 9)
    libc.so.1`call_user_handler+0x3e0(ffffffff7bc15a00, ffffffff7bc15a00, fffffffccbefd220, c, 0, 0)
    libc.so.1`sigacthandler+0x54(0, fffffffccbefd500, fffffffccbefd220, ffffffff7bc15a00, 0, ffffffff7ef3a000)
    libdb_java-4.6.so`__env_alloc_free+0x140(100bab1c0, fffffffc6c0c75f8, fffffffc8bcff5dc, 1a, 66e, fffffffccbefe461)
    libdb_java-4.6.so`__memp_free+0x1c(100bab1c0, fffffffc82123140, fffffffc6c0c75f8, fffffffccbefe710, 0, fffffffc6a00f1d0)
    libdb_java-4.6.so`__memp_bhfree+0x6fc(100fc46e0, 100bab1c0, fffffffc6a00f1c8, fffffffc6c0c75f8, 1, 3)
    libdb_java-4.6.so`__memp_alloc+0x1df8(100fc46e0, 100bab1c0, fffffffc82100698, 0, 0, fffffffccbefdeb0)
    libdb_java-4.6.so`__memp_fget+0x233c(100ba5e50, 10142eb84, 0, 1, 10142eb78, 0)
    libdb_java-4.6.so`__ham_get_cpage+0x33c(101258860, 1, 4, 1, 10142ebc8, 10142ebb0)
    libdb_java-4.6.so`__ham_lookup+0x104(101258860, fffffffccbefe770, 0, 1, fffffffccbefe34c, 4c000)
    libdb_java-4.6.so`__hamc_get+0x278(101258860, fffffffccbefe770, fffffffccbefe710, 1a, fffffffccbefe34c, 0)
    libdb_java-4.6.so`__dbc_get+0x81c(101258860, fffffffccbefe770, fffffffccbefe710, 1a, 66e, fffffffccbefe461)
    libdb_java-4.6.so`__db_get+0x1a4(1012b2570, 0, fffffffccbefe770, fffffffccbefe710, 0, 4c000)
    libdb_java-4.6.so`__db_get_pp+0x3e0(1012b2570, 0, fffffffccbefe770, fffffffccbefe710, 0, fffffffccbefe700)
    libdb_java-4.6.so`Db_get+0x40(1012b2570, 0, fffffffccbefe770, fffffffccbefe710, 0, 0)
    libdb_java-4.6.so`Java_com_sleepycat_db_internal_db_1javaJNI_Db_1get+0x128(101b8a9b8, fffffffccbefe8e8, 1012b2570, 0, fffffffccbefe8c8, fffffffccbefe8d0)
    0xffffffff78391410(1012b2570, 0, ffffffff11fc9a38, ffffffff11fc9a70, 0, fffffffccbefe101)
    0xffffffff78005eac(ffffffff559ee358, b6, fffffffce2f93180, ffffffff78018100, 7124, fffffffccbefe221)
    0xffffffff78005eac(ffffffff559ee338, b6, fffffffce2f92f60, ffffffff78017d20, ae1, fffffffccbefe331)
    0xffffffff78005e60(ffffffff5fad4f80, b7, fffffffce2ff6ac0, ffffffff78017d28, 66e, fffffffccbefe461)
    0xffffffff78005e60(ffffffff5fad4f80, fffffffce150e618, fffffffce2f9dd20, ffffffff78017f60, 5, fffffffccbefe5e1)
    0xffffffff780063b8(ffffffff5fad4f20, b7, 0, ffffffff78018200, 1e400, fffffffccbefe701)
    0xffffffff78005e60(ffffffff5fad4f20, fffffffce14a5828, 0, ffffffff78017f60, ffffffff11ff0cf0, fffffffccbefe811)
    0xffffffff780063b8(ffffffff5f995ce0, fffffffce145f868, 0, ffffffff78017ce0, ffffffff11ff0cf0, fffffffccbefe931)
    0xffffffff780063b8(ffffffff5f995d78, b6, 0, ffffffff78018200, ffffffff11ff0cf0, fffffffccbefea51)
    0xffffffff78005fdc(fffffffef354e068, fffffffce00427e0, 0, ffffffff78017ce0, 0, fffffffccbefeb71)
    0xffffffff78006534(fffffffef354e0f8, b7, 0, ffffffff78018200, 0, fffffffccbefecb1)
    0xffffffff78005fdc(fffffffef354e0f8, fffffffce00427e0, 0, ffffffff78017f60, 912c14, fffffffccbefedc1)
    0xffffffff78006534(fffffffccbefff50, 60800, 0, ffffffff78018200, fffffffef354e178, fffffffccbefeeb1)
    0xffffffff78000240(fffffffccbeff8a0, fffffffccbeffd50, a, fffffffce00441e8, ffffffff7800bda0, fffffffccbeffb48)
    libjvm.so`__1cJJavaCallsLcall_helper6FpnJJavaValue_pnMmethodHandle_pnRJavaCallArguments_pnGThread__v_+0x1f4(1, 101b8a800, fffffffccbeffb38, a,
    ffffffff780001e0, fffffffccbeff870)
    libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nLKlassHandle_nMsymbolHandle_4pnRJavaCallArguments_pnGThread__v_+0x130(fffffffccbeffd48,
    ffffffff7e6ea148, fffffffef354e178, 4c148, fffffffccbeffb38, ffffffffff6f4950)
    libjvm.so`__1cJJavaCallsMcall_virtual6FpnJJavaValue_nGHandle_nLKlassHandle_nMsymbolHandle_5pnGThread__v_+0x50(fffffffccbeffd48, 100c8f880, 100c8f888,
    ffffffff7e71c2b0, ffffffff7e71c798, 101b8a800)
    libjvm.so`__1cMthread_entry6FpnKJavaThread_pnGThread__v_+0xf0(fffffffef354e178, 101b8a800, 7dd50, 85fc64, ffffffff7e71bd50, 7dc00)
    Edited by: user11287228 on Jun 9, 2011 11:33 AM

    Hello,
    If you can one thing that might help is rebuilding the Berkeley DB library with enable-debug and enable-diagnostic. With enable-debug we might get line numbers and see exact where we are in __env_alloc_free and see what the input parameters leading up to the abort are. With enable-diagnostic run-time checking is in place which might also help see what is causing this. (see http://download.oracle.com/docs/cd/E17076_02/html/installation/build_unix_conf.html) Another thing to do if you are not using a private environment is to look at the db_stat -E output:
    http://download.oracle.com/docs/cd/E17076_02/html/api_reference/C/db_stat.html
    Thank you,
    Sandra

  • Oracle 11g on Windows server 2003

    I've oracle 11g installed on Windows Server 2003.
    I have installed oracle 11g twice, so wasn't sure how to uninstall one version without effecting the other.
    There are a few databases set up, none of which are now working.
    Trying to connect using mysql client, or the oracle11g client results in TNSListener errors:
    'TNSListener does not currently know of service requested in connect descriptor'
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1521)))
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 11.1.0.6.0 - Produ
    ction
    Start Date 02-MAR-2009 11:54:42
    Uptime 0 days 3 hr. 30 min. 1 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File c:\apps\oracle\product\11.1.0\db\network\admin\listene
    r.ora
    Listener Log File c:\apps\oracle\diag\tnslsnr\selene\listener\alert\log.
    xml
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1521ipc)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=selene.compsci.cs.tcd.ie)(PORT=1521)
    Services Summary...
    Service "cs.compsci" has 1 instance(s).
    Instance "cs", status READY, has 2 handler(s) for this service...
    Service "cs_XPT.compsci" has 1 instance(s).
    Instance "cs", status READY, has 2 handler(s) for this service...
    The command completed successfully
    Trying to modify the database (using Database Configuration Assistant) results in the error:
    'there is an error in creating the following process: c:\apps\oracle\product\11.1.0\db\bin\sqlplus.exe -S /NOLOG the error is: Error 6 initializing SQL*Plus Messaging file sp1<lang>.msb not found SP2-0750: You may need to set ORACLE_HOME to your oracle software directory'
    If there are forums you would recommend to a completely new oracle sysadmin please let me know.
    Many thanks.

    I recommend you read the '2 Days DBA' manual in order to get a basic understanding. It may be necessary to uninstall the current installation(s), especially the last error message looks like a corrupted environment.
    Werner
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28301/toc.htm
    Edited by: oradba on Mar 2, 2009 7:57 PM

  • Database not found

    I am connecting through Java to the polite sample database that comes with OLite, but when I try to connect to another db, I get the error: [POL-3023] database does not exist. However, the odb file is sitting in the same directory as the polite.odb.
    I am executing the following:
    Class.forName("oracle.lite.poljdbc.POLJDBCDriver");
    conn = DriverManager.getConnection("jdbc:Polite:polite"); // This works.. but when I change to
    "jdbc:Polite:contacts", // I get the error.
    Thanks for any help!
    null

    I don't think we've seen a situation before where DbDump -l lists the database and DbDump -s throws DatabaseNotFoundException.  As you say, this seems to be a corruption.
    Were you using transactions (EntityStore.setTransactional(true)) when you applied the renamer mutation?
    If you can demonstrate the problem, especially without replication, please contact me separately (mark.hayes at the obvious domain) so that you can send me your test program and/or corrupted environment files.
    --mark

  • Re: System segmentattion access violation

    There is a special utility you must run which will clean the environment
    repository. It is located under the following directory:
    %{FORTE_ROOT}/install/diag/bin/
    It is called envedit
    The command works like this:
    %FORTE_ROOT%/install/diag/bin/envedit -fs -fr
    %FORTE_ROOT%/sysdata/envrepos/<envrepos_name>
    You can use the -i option to specifiy a script to run. Such a script will
    need to look like this:
    # envedit script for cleaning the environment repositories
    setworkspace SystemMgr
    open
    browse
    compactrepos
    quit
    quit
    This will clean and compact your environment repository. Make sure that yo
    ur environment is offline before you attempt this.
    Mark Musgrove
    Object Technologies. Inc.
    <Graphic image not retained>
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\ on 06/29/99 03:58:06 PM
    To: Mark Musgrove/BCS/BBS/BLS@BLS
    cc: ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\@yahoo.com@omgw,
    forte-users@O1=Internet/DD.RFC-822=forte-users\@sageit.com@omgw
    Subject: System segmentattion access violation
    Received: from carnac.bst.bellsouth.com (bos17943.al.bst.bls.com [90.110.28
    .65])
    by om1.al.bst.bls.com (8.8.6 (PHNE_17135)/8.8.6) with ESMTP id OAA1038
    9
    for <[email protected]>; Tue, 29 Jun 1999 14:56:37 -0
    500 (CDT)
    Received: from web502.yahoomail.com ([128.11.68.69])
    by carnac.bst.bellsouth.com (Netscape Messaging Server 3.52)
    with SMTP id AAA3C12 for <[email protected]>;
    Tue, 29 Jun 1999 14:56:03 -0500
    Received: from [206.49.176.243] by web502.yahoomail.com; Tue, 29 Jun 1999 1
    2:58:06 PDT
    Message-ID: <[email protected]>
    Date: Tue, 29 Jun 1999 12:58:06 -0700 (PDT)
    From: Jorge Espinoza <[email protected]>
    Subject: System segmentattion access violation
    To: [email protected]
    Cc: [email protected]
    MIME-Version: 1.0
    Content-Type: text/plain; charset=us-ascii
    Mark,
    We have tried # 1. It does not work.
    How do I clean the environment repository?
    Thanks
    Jorge
    --- [email protected] wrote:
    This type of segmentation violation is due to an
    environment manager
    repository corruption. One of the three options
    below will fix it(listed
    from easiest solution to most difficult). If the
    first two do not work,
    the third one will always fix the problem.
    1. Shutdown and restart the environment.
    2. If #1 does not fix the problem, then your
    environment repository has
    become corrupted. Shutdown the environment and
    clean your environment
    repository. This will fix your corruption problem
    about 75 % of the time.
    3. If #2 does not correct your error, then the
    environment is corrupted
    beyond repair. You will need to delete your current
    environment repository
    and rebuild it. Sometimes you can rebuild it using
    an export of your
    current environment(bootstrap). Many times though
    the current corrupted
    environment will not successfully allow you to
    export the environment
    definition. In this case, you will have to rebuild
    your environment from
    scratch.
    Hope this helps...
    Mark Musgrove
    Object Technologies, Inc
    <Graphic image not retained>
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\ on
    06/26/99 12:05:55 AM
    To:
    forte-users@O1=Internet/DD.RFC-822=forte-users\@SageIT.com@omgw
    cc:
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\@yahoo.com@omgw
    Subject: System segmentattion access violation
    Received: from carnac.bst.bellsouth.com
    (bos17943.al.bst.bls.com [90.110.28
    .65])
    by om1.al.bst.bls.com (8.8.6
    (PHNE_17135)/8.8.6) with ESMTP id XAA0132
    8
    for <[email protected]>; Fri,
    25 Jun 1999 23:45:53 -0
    500 (CDT)
    Received: from pebble.SageIT.com ([206.169.110.3])
    by carnac.bst.bellsouth.com (Netscape
    Messaging Server 3.52)
    with SMTP id AAA64AA for
    <[email protected]>;
    Fri, 25 Jun 1999 23:45:20 -0500
    Received: (from sync@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3783 for forte-users-outgoing; Fri, 25 Jun 1999
    20:51:51 -0700
    Received: (from uucp@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3767 for <[email protected]>; Fri, 25 Jun 1999
    20:51:46 -0700
    Received: from web501.yahoomail.com(128.11.68.68) by
    pebble.sagesoln.com vi
    a smap (V2.0)
    id xma013762; Fri, 25 Jun 99 20:51:31 -0700
    Message-ID:
    <[email protected]>
    Received: from [206.49.176.243] by
    web501.yahoomail.com; Fri, 25 Jun 1999 2
    1:05:55 PDT
    Date: Fri, 25 Jun 1999 21:05:55 -0700 (PDT)
    From: Jorge Espinoza <[email protected]>
    Subject: System segmentattion access violation
    To: [email protected]
    MIME-Version: 1.0
    Content-Type: text/plain; charset=us-ascii
    Sender: [email protected]
    Precedence: bulk
    Reply-To: Jorge Espinoza <[email protected]>
    Hello :
    We're try connect with our Central Server Node and
    have a problem, if we're make the connection with
    Escript this is
    succesfull, but if we're connected again with
    Econsole , Launcher
    Distributed or Forte Distributed then this
    connection display the
    following error
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition FTLaunch_cl0_Client built on
    03-Sep-1998 00:37:56.
    There is no manager active for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg sp 8 255
    cfg em 2 2
    FTLaunch_cl0: Configuring node agent.
    FTLaunch_cl0: Opening configuration repository
    bt:c:\forte\sysdata\envrepos\fort
    e1.
    FTLaunch_cl0: Attached to manager for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg em 2 2
    Begin Stack Backtrace
    ==========================================================
    Trace caused by a segmentation or access violation
    in the Forte
    executable:
    ftexec Version 3.0.J.1
    Windows NT
    Forte Application Environment (tm), Forte Runtime
    Environment (tm),
    Forte Conductor (tm):
    Copyright (c) 1994-1998, Forte Software, Inc. and
    its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1995-1998, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws
    of the United
    States.
    Wed Sep 2 22:53:49 1998
    Fault at 25-Jun-1999 13:23:56, pid '180', node
    'FORTE1':
    User Name: Administrador
    Machine Name: FORTE1 with 1 CPU(s)
    OS version 4.0
    Loading symbols for ...
    c:\forte\install\bin\QQRP.dll
    c:\forte\install\bin\QQCT.dll
    c:\forte\install\bin\QQSH.dll
    c:\forte\install\bin\QQKN.dll
    c:\forte\install\bin\QQSM.dll
    c:\forte\install\bin\ftexec.exe
    c:\forte\install\bin\QQDO.dll
    c:\forte\install\bin\QQCM.dll
    c:\forte\install\bin\QQFO.dll
    c:\forte\install\bin\QQDS.dll
    c:\forte\install\bin\qqtlnt.dll
    c:\forte\install\bin\w3tpwss.dll
    c:\forte\install\bin\qqem.dll
    c:\forte\install\bin\QQDD.dll
    c:\forte\install\bin\QQRT.dll
    C:\WINNT\System32\WINSPOOL.DRV
    C:\WINNT\System32\rpcltc1.dll
    C:\WINNT\System32\rnr20.dll
    C:\WINNT\System32\rasadhlp.dll
    C:\WINNT\System32\IMM32.dll
    C:\WINNT\System32\spool\DRIVERS\W32X86\2\RASDDUI.DLL
    C:\WINNT\system32\msafd.dll
    C:\WINNT\System32\wshtcpip.dll
    C:\WINNT\System32\WS2HELP.dll
    C:\WINNT\System32\WS2_32.dll
    C:\WINNT\System32\WSOCK32.dll
    C:\WINNT\system32\ole32.dll
    C:\WINNT\system32\COMCTL32.dll
    C:\WINNT\system32\SHELL32.dll
    C:\WINNT\system32\comdlg32.dll
    C:\WINNT\system32\ADVAPI32.dll
    C:\WINNT\system32\RPCRT4.dll
    C:\WINNT\system32\USER32.dll
    C:\WINNT\system32\GDI32.dll
    C:\WINNT\system32\KERNEL32.dll
    C:\WINNT\System32\ntdll.dll
    C:\WINNT\system32\MSVCRT.dll
    Stack backtrace ...
    qqem 026e2c5d (0130bac0,00000001,00000000,013b8aa0)
    QQSM 003b238a (0130bac0,013b8aa0,013f0001,013f4768)
    QQKN 0024d5f1 (0130bac0,013b8aa0,013f0001,013f4748)
    QQKN 00250915 (0130bac0,013b8aa0,013f4730,013f4748)
    QQDO 00432d96 (0130bac0,0209fd40,000000d0,013365b8)
    === message truncated ===
    Do You Yahoo!?
    Get your free @yahoo.com address at http://mail.yahoo.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    There is a special utility you must run which will clean the environment
    repository. It is located under the following directory:
    %{FORTE_ROOT}/install/diag/bin/
    It is called envedit
    The command works like this:
    %FORTE_ROOT%/install/diag/bin/envedit -fs -fr
    %FORTE_ROOT%/sysdata/envrepos/<envrepos_name>
    You can use the -i option to specifiy a script to run. Such a script will
    need to look like this:
    # envedit script for cleaning the environment repositories
    setworkspace SystemMgr
    open
    browse
    compactrepos
    quit
    quit
    This will clean and compact your environment repository. Make sure that yo
    ur environment is offline before you attempt this.
    Mark Musgrove
    Object Technologies. Inc.
    <Graphic image not retained>
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\ on 06/29/99 03:58:06 PM
    To: Mark Musgrove/BCS/BBS/BLS@BLS
    cc: ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\@yahoo.com@omgw,
    forte-users@O1=Internet/DD.RFC-822=forte-users\@sageit.com@omgw
    Subject: System segmentattion access violation
    Received: from carnac.bst.bellsouth.com (bos17943.al.bst.bls.com [90.110.28
    .65])
    by om1.al.bst.bls.com (8.8.6 (PHNE_17135)/8.8.6) with ESMTP id OAA1038
    9
    for <[email protected]>; Tue, 29 Jun 1999 14:56:37 -0
    500 (CDT)
    Received: from web502.yahoomail.com ([128.11.68.69])
    by carnac.bst.bellsouth.com (Netscape Messaging Server 3.52)
    with SMTP id AAA3C12 for <[email protected]>;
    Tue, 29 Jun 1999 14:56:03 -0500
    Received: from [206.49.176.243] by web502.yahoomail.com; Tue, 29 Jun 1999 1
    2:58:06 PDT
    Message-ID: <[email protected]>
    Date: Tue, 29 Jun 1999 12:58:06 -0700 (PDT)
    From: Jorge Espinoza <[email protected]>
    Subject: System segmentattion access violation
    To: [email protected]
    Cc: [email protected]
    MIME-Version: 1.0
    Content-Type: text/plain; charset=us-ascii
    Mark,
    We have tried # 1. It does not work.
    How do I clean the environment repository?
    Thanks
    Jorge
    --- [email protected] wrote:
    This type of segmentation violation is due to an
    environment manager
    repository corruption. One of the three options
    below will fix it(listed
    from easiest solution to most difficult). If the
    first two do not work,
    the third one will always fix the problem.
    1. Shutdown and restart the environment.
    2. If #1 does not fix the problem, then your
    environment repository has
    become corrupted. Shutdown the environment and
    clean your environment
    repository. This will fix your corruption problem
    about 75 % of the time.
    3. If #2 does not correct your error, then the
    environment is corrupted
    beyond repair. You will need to delete your current
    environment repository
    and rebuild it. Sometimes you can rebuild it using
    an export of your
    current environment(bootstrap). Many times though
    the current corrupted
    environment will not successfully allow you to
    export the environment
    definition. In this case, you will have to rebuild
    your environment from
    scratch.
    Hope this helps...
    Mark Musgrove
    Object Technologies, Inc
    <Graphic image not retained>
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\ on
    06/26/99 12:05:55 AM
    To:
    forte-users@O1=Internet/DD.RFC-822=forte-users\@SageIT.com@omgw
    cc:
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\@yahoo.com@omgw
    Subject: System segmentattion access violation
    Received: from carnac.bst.bellsouth.com
    (bos17943.al.bst.bls.com [90.110.28
    .65])
    by om1.al.bst.bls.com (8.8.6
    (PHNE_17135)/8.8.6) with ESMTP id XAA0132
    8
    for <[email protected]>; Fri,
    25 Jun 1999 23:45:53 -0
    500 (CDT)
    Received: from pebble.SageIT.com ([206.169.110.3])
    by carnac.bst.bellsouth.com (Netscape
    Messaging Server 3.52)
    with SMTP id AAA64AA for
    <[email protected]>;
    Fri, 25 Jun 1999 23:45:20 -0500
    Received: (from sync@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3783 for forte-users-outgoing; Fri, 25 Jun 1999
    20:51:51 -0700
    Received: (from uucp@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3767 for <[email protected]>; Fri, 25 Jun 1999
    20:51:46 -0700
    Received: from web501.yahoomail.com(128.11.68.68) by
    pebble.sagesoln.com vi
    a smap (V2.0)
    id xma013762; Fri, 25 Jun 99 20:51:31 -0700
    Message-ID:
    <[email protected]>
    Received: from [206.49.176.243] by
    web501.yahoomail.com; Fri, 25 Jun 1999 2
    1:05:55 PDT
    Date: Fri, 25 Jun 1999 21:05:55 -0700 (PDT)
    From: Jorge Espinoza <[email protected]>
    Subject: System segmentattion access violation
    To: [email protected]
    MIME-Version: 1.0
    Content-Type: text/plain; charset=us-ascii
    Sender: [email protected]
    Precedence: bulk
    Reply-To: Jorge Espinoza <[email protected]>
    Hello :
    We're try connect with our Central Server Node and
    have a problem, if we're make the connection with
    Escript this is
    succesfull, but if we're connected again with
    Econsole , Launcher
    Distributed or Forte Distributed then this
    connection display the
    following error
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition FTLaunch_cl0_Client built on
    03-Sep-1998 00:37:56.
    There is no manager active for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg sp 8 255
    cfg em 2 2
    FTLaunch_cl0: Configuring node agent.
    FTLaunch_cl0: Opening configuration repository
    bt:c:\forte\sysdata\envrepos\fort
    e1.
    FTLaunch_cl0: Attached to manager for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg em 2 2
    Begin Stack Backtrace
    ==========================================================
    Trace caused by a segmentation or access violation
    in the Forte
    executable:
    ftexec Version 3.0.J.1
    Windows NT
    Forte Application Environment (tm), Forte Runtime
    Environment (tm),
    Forte Conductor (tm):
    Copyright (c) 1994-1998, Forte Software, Inc. and
    its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1995-1998, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws
    of the United
    States.
    Wed Sep 2 22:53:49 1998
    Fault at 25-Jun-1999 13:23:56, pid '180', node
    'FORTE1':
    User Name: Administrador
    Machine Name: FORTE1 with 1 CPU(s)
    OS version 4.0
    Loading symbols for ...
    c:\forte\install\bin\QQRP.dll
    c:\forte\install\bin\QQCT.dll
    c:\forte\install\bin\QQSH.dll
    c:\forte\install\bin\QQKN.dll
    c:\forte\install\bin\QQSM.dll
    c:\forte\install\bin\ftexec.exe
    c:\forte\install\bin\QQDO.dll
    c:\forte\install\bin\QQCM.dll
    c:\forte\install\bin\QQFO.dll
    c:\forte\install\bin\QQDS.dll
    c:\forte\install\bin\qqtlnt.dll
    c:\forte\install\bin\w3tpwss.dll
    c:\forte\install\bin\qqem.dll
    c:\forte\install\bin\QQDD.dll
    c:\forte\install\bin\QQRT.dll
    C:\WINNT\System32\WINSPOOL.DRV
    C:\WINNT\System32\rpcltc1.dll
    C:\WINNT\System32\rnr20.dll
    C:\WINNT\System32\rasadhlp.dll
    C:\WINNT\System32\IMM32.dll
    C:\WINNT\System32\spool\DRIVERS\W32X86\2\RASDDUI.DLL
    C:\WINNT\system32\msafd.dll
    C:\WINNT\System32\wshtcpip.dll
    C:\WINNT\System32\WS2HELP.dll
    C:\WINNT\System32\WS2_32.dll
    C:\WINNT\System32\WSOCK32.dll
    C:\WINNT\system32\ole32.dll
    C:\WINNT\system32\COMCTL32.dll
    C:\WINNT\system32\SHELL32.dll
    C:\WINNT\system32\comdlg32.dll
    C:\WINNT\system32\ADVAPI32.dll
    C:\WINNT\system32\RPCRT4.dll
    C:\WINNT\system32\USER32.dll
    C:\WINNT\system32\GDI32.dll
    C:\WINNT\system32\KERNEL32.dll
    C:\WINNT\System32\ntdll.dll
    C:\WINNT\system32\MSVCRT.dll
    Stack backtrace ...
    qqem 026e2c5d (0130bac0,00000001,00000000,013b8aa0)
    QQSM 003b238a (0130bac0,013b8aa0,013f0001,013f4768)
    QQKN 0024d5f1 (0130bac0,013b8aa0,013f0001,013f4748)
    QQKN 00250915 (0130bac0,013b8aa0,013f4730,013f4748)
    QQDO 00432d96 (0130bac0,0209fd40,000000d0,013365b8)
    === message truncated ===
    Do You Yahoo!?
    Get your free @yahoo.com address at http://mail.yahoo.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • System segmentattion access violation

    Mark,
    We have tried # 1. It does not work.
    How do I clean the environment repository?
    Thanks
    Jorge
    --- [email protected] wrote:
    This type of segmentation violation is due to an
    environment manager
    repository corruption. One of the three options
    below will fix it(listed
    from easiest solution to most difficult). If the
    first two do not work,
    the third one will always fix the problem.
    1. Shutdown and restart the environment.
    2. If #1 does not fix the problem, then your
    environment repository has
    become corrupted. Shutdown the environment and
    clean your environment
    repository. This will fix your corruption problem
    about 75 % of the time.
    3. If #2 does not correct your error, then the
    environment is corrupted
    beyond repair. You will need to delete your current
    environment repository
    and rebuild it. Sometimes you can rebuild it using
    an export of your
    current environment(bootstrap). Many times though
    the current corrupted
    environment will not successfully allow you to
    export the environment
    definition. In this case, you will have to rebuild
    your environment from
    scratch.
    Hope this helps...
    Mark Musgrove
    Object Technologies, Inc
    <Graphic image not retained>
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\ on
    06/26/99 12:05:55 AM
    To:
    forte-users@O1=Internet/DD.RFC-822=forte-users\@SageIT.com@omgw
    cc:
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\@yahoo.com@omgw
    Subject: System segmentattion access violation
    Received: from carnac.bst.bellsouth.com
    (bos17943.al.bst.bls.com [90.110.28
    .65])
    by om1.al.bst.bls.com (8.8.6
    (PHNE_17135)/8.8.6) with ESMTP id XAA0132
    8
    for <[email protected]>; Fri,
    25 Jun 1999 23:45:53 -0
    500 (CDT)
    Received: from pebble.SageIT.com ([206.169.110.3])
    by carnac.bst.bellsouth.com (Netscape
    Messaging Server 3.52)
    with SMTP id AAA64AA for
    <[email protected]>;
    Fri, 25 Jun 1999 23:45:20 -0500
    Received: (from sync@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3783 for forte-users-outgoing; Fri, 25 Jun 1999
    20:51:51 -0700
    Received: (from uucp@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3767 for <[email protected]>; Fri, 25 Jun 1999
    20:51:46 -0700
    Received: from web501.yahoomail.com(128.11.68.68) by
    pebble.sagesoln.com vi
    a smap (V2.0)
    id xma013762; Fri, 25 Jun 99 20:51:31 -0700
    Message-ID:
    <[email protected]>
    Received: from [206.49.176.243] by
    web501.yahoomail.com; Fri, 25 Jun 1999 2
    1:05:55 PDT
    Date: Fri, 25 Jun 1999 21:05:55 -0700 (PDT)
    From: Jorge Espinoza <[email protected]>
    Subject: System segmentattion access violation
    To: [email protected]
    MIME-Version: 1.0
    Content-Type: text/plain; charset=us-ascii
    Sender: [email protected]
    Precedence: bulk
    Reply-To: Jorge Espinoza <[email protected]>
    Hello :
    We're try connect with our Central Server Node and
    have a problem, if we're make the connection with
    Escript this is
    succesfull, but if we're connected again with
    Econsole , Launcher
    Distributed or Forte Distributed then this
    connection display the
    following error
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition FTLaunch_cl0_Client built on
    03-Sep-1998 00:37:56.
    There is no manager active for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg sp 8 255
    cfg em 2 2
    FTLaunch_cl0: Configuring node agent.
    FTLaunch_cl0: Opening configuration repository
    bt:c:\forte\sysdata\envrepos\fort
    e1.
    FTLaunch_cl0: Attached to manager for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg em 2 2
    Begin Stack Backtrace
    ==========================================================
    Trace caused by a segmentation or access violation
    in the Forte
    executable:
    ftexec Version 3.0.J.1
    Windows NT
    Forte Application Environment (tm), Forte Runtime
    Environment (tm),
    Forte Conductor (tm):
    Copyright (c) 1994-1998, Forte Software, Inc. and
    its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1995-1998, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws
    of the United
    States.
    Wed Sep 2 22:53:49 1998
    Fault at 25-Jun-1999 13:23:56, pid '180', node
    'FORTE1':
    User Name: Administrador
    Machine Name: FORTE1 with 1 CPU(s)
    OS version 4.0
    Loading symbols for ...
    c:\forte\install\bin\QQRP.dll
    c:\forte\install\bin\QQCT.dll
    c:\forte\install\bin\QQSH.dll
    c:\forte\install\bin\QQKN.dll
    c:\forte\install\bin\QQSM.dll
    c:\forte\install\bin\ftexec.exe
    c:\forte\install\bin\QQDO.dll
    c:\forte\install\bin\QQCM.dll
    c:\forte\install\bin\QQFO.dll
    c:\forte\install\bin\QQDS.dll
    c:\forte\install\bin\qqtlnt.dll
    c:\forte\install\bin\w3tpwss.dll
    c:\forte\install\bin\qqem.dll
    c:\forte\install\bin\QQDD.dll
    c:\forte\install\bin\QQRT.dll
    C:\WINNT\System32\WINSPOOL.DRV
    C:\WINNT\System32\rpcltc1.dll
    C:\WINNT\System32\rnr20.dll
    C:\WINNT\System32\rasadhlp.dll
    C:\WINNT\System32\IMM32.dll
    C:\WINNT\System32\spool\DRIVERS\W32X86\2\RASDDUI.DLL
    C:\WINNT\system32\msafd.dll
    C:\WINNT\System32\wshtcpip.dll
    C:\WINNT\System32\WS2HELP.dll
    C:\WINNT\System32\WS2_32.dll
    C:\WINNT\System32\WSOCK32.dll
    C:\WINNT\system32\ole32.dll
    C:\WINNT\system32\COMCTL32.dll
    C:\WINNT\system32\SHELL32.dll
    C:\WINNT\system32\comdlg32.dll
    C:\WINNT\system32\ADVAPI32.dll
    C:\WINNT\system32\RPCRT4.dll
    C:\WINNT\system32\USER32.dll
    C:\WINNT\system32\GDI32.dll
    C:\WINNT\system32\KERNEL32.dll
    C:\WINNT\System32\ntdll.dll
    C:\WINNT\system32\MSVCRT.dll
    Stack backtrace ...
    qqem 026e2c5d (0130bac0,00000001,00000000,013b8aa0)
    QQSM 003b238a (0130bac0,013b8aa0,013f0001,013f4768)
    QQKN 0024d5f1 (0130bac0,013b8aa0,013f0001,013f4748)
    QQKN 00250915 (0130bac0,013b8aa0,013f4730,013f4748)
    QQDO 00432d96 (0130bac0,0209fd40,000000d0,013365b8)
    === message truncated ===
    Do You Yahoo!?
    Get your free @yahoo.com address at http://mail.yahoo.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Mark,
    We have tried # 1. It does not work.
    How do I clean the environment repository?
    Thanks
    Jorge
    --- [email protected] wrote:
    This type of segmentation violation is due to an
    environment manager
    repository corruption. One of the three options
    below will fix it(listed
    from easiest solution to most difficult). If the
    first two do not work,
    the third one will always fix the problem.
    1. Shutdown and restart the environment.
    2. If #1 does not fix the problem, then your
    environment repository has
    become corrupted. Shutdown the environment and
    clean your environment
    repository. This will fix your corruption problem
    about 75 % of the time.
    3. If #2 does not correct your error, then the
    environment is corrupted
    beyond repair. You will need to delete your current
    environment repository
    and rebuild it. Sometimes you can rebuild it using
    an export of your
    current environment(bootstrap). Many times though
    the current corrupted
    environment will not successfully allow you to
    export the environment
    definition. In this case, you will have to rebuild
    your environment from
    scratch.
    Hope this helps...
    Mark Musgrove
    Object Technologies, Inc
    <Graphic image not retained>
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\ on
    06/26/99 12:05:55 AM
    To:
    forte-users@O1=Internet/DD.RFC-822=forte-users\@SageIT.com@omgw
    cc:
    ja.espinoza@O1=Internet/DD.RFC-822=ja_espinoza\@yahoo.com@omgw
    Subject: System segmentattion access violation
    Received: from carnac.bst.bellsouth.com
    (bos17943.al.bst.bls.com [90.110.28
    .65])
    by om1.al.bst.bls.com (8.8.6
    (PHNE_17135)/8.8.6) with ESMTP id XAA0132
    8
    for <[email protected]>; Fri,
    25 Jun 1999 23:45:53 -0
    500 (CDT)
    Received: from pebble.SageIT.com ([206.169.110.3])
    by carnac.bst.bellsouth.com (Netscape
    Messaging Server 3.52)
    with SMTP id AAA64AA for
    <[email protected]>;
    Fri, 25 Jun 1999 23:45:20 -0500
    Received: (from sync@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3783 for forte-users-outgoing; Fri, 25 Jun 1999
    20:51:51 -0700
    Received: (from uucp@localhost) by pebble.SageIT.com
    (8.6.10/8.6.9) id UAA1
    3767 for <[email protected]>; Fri, 25 Jun 1999
    20:51:46 -0700
    Received: from web501.yahoomail.com(128.11.68.68) by
    pebble.sagesoln.com vi
    a smap (V2.0)
    id xma013762; Fri, 25 Jun 99 20:51:31 -0700
    Message-ID:
    <[email protected]>
    Received: from [206.49.176.243] by
    web501.yahoomail.com; Fri, 25 Jun 1999 2
    1:05:55 PDT
    Date: Fri, 25 Jun 1999 21:05:55 -0700 (PDT)
    From: Jorge Espinoza <[email protected]>
    Subject: System segmentattion access violation
    To: [email protected]
    MIME-Version: 1.0
    Content-Type: text/plain; charset=us-ascii
    Sender: [email protected]
    Precedence: bulk
    Reply-To: Jorge Espinoza <[email protected]>
    Hello :
    We're try connect with our Central Server Node and
    have a problem, if we're make the connection with
    Escript this is
    succesfull, but if we're connected again with
    Econsole , Launcher
    Distributed or Forte Distributed then this
    connection display the
    following error
    NLM Startup is Complete - Partition's Locale is 'c'
    Loading partition FTLaunch_cl0_Client built on
    03-Sep-1998 00:37:56.
    There is no manager active for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg sp 8 255
    cfg em 2 2
    FTLaunch_cl0: Configuring node agent.
    FTLaunch_cl0: Opening configuration repository
    bt:c:\forte\sysdata\envrepos\fort
    e1.
    FTLaunch_cl0: Attached to manager for node FORTE1.
    Type Service Flags Level
    err sh * 255
    cfg em 2 2
    Begin Stack Backtrace
    ==========================================================
    Trace caused by a segmentation or access violation
    in the Forte
    executable:
    ftexec Version 3.0.J.1
    Windows NT
    Forte Application Environment (tm), Forte Runtime
    Environment (tm),
    Forte Conductor (tm):
    Copyright (c) 1994-1998, Forte Software, Inc. and
    its licensors.
    US Patent No. 5,457,797
    Forte Express (tm), Forte WebEnterprise (tm):
    Copyright (c) 1995-1998, Forte Software, Inc.
    All Rights Reserved.
    Unpublished rights reserved under the copyright laws
    of the United
    States.
    Wed Sep 2 22:53:49 1998
    Fault at 25-Jun-1999 13:23:56, pid '180', node
    'FORTE1':
    User Name: Administrador
    Machine Name: FORTE1 with 1 CPU(s)
    OS version 4.0
    Loading symbols for ...
    c:\forte\install\bin\QQRP.dll
    c:\forte\install\bin\QQCT.dll
    c:\forte\install\bin\QQSH.dll
    c:\forte\install\bin\QQKN.dll
    c:\forte\install\bin\QQSM.dll
    c:\forte\install\bin\ftexec.exe
    c:\forte\install\bin\QQDO.dll
    c:\forte\install\bin\QQCM.dll
    c:\forte\install\bin\QQFO.dll
    c:\forte\install\bin\QQDS.dll
    c:\forte\install\bin\qqtlnt.dll
    c:\forte\install\bin\w3tpwss.dll
    c:\forte\install\bin\qqem.dll
    c:\forte\install\bin\QQDD.dll
    c:\forte\install\bin\QQRT.dll
    C:\WINNT\System32\WINSPOOL.DRV
    C:\WINNT\System32\rpcltc1.dll
    C:\WINNT\System32\rnr20.dll
    C:\WINNT\System32\rasadhlp.dll
    C:\WINNT\System32\IMM32.dll
    C:\WINNT\System32\spool\DRIVERS\W32X86\2\RASDDUI.DLL
    C:\WINNT\system32\msafd.dll
    C:\WINNT\System32\wshtcpip.dll
    C:\WINNT\System32\WS2HELP.dll
    C:\WINNT\System32\WS2_32.dll
    C:\WINNT\System32\WSOCK32.dll
    C:\WINNT\system32\ole32.dll
    C:\WINNT\system32\COMCTL32.dll
    C:\WINNT\system32\SHELL32.dll
    C:\WINNT\system32\comdlg32.dll
    C:\WINNT\system32\ADVAPI32.dll
    C:\WINNT\system32\RPCRT4.dll
    C:\WINNT\system32\USER32.dll
    C:\WINNT\system32\GDI32.dll
    C:\WINNT\system32\KERNEL32.dll
    C:\WINNT\System32\ntdll.dll
    C:\WINNT\system32\MSVCRT.dll
    Stack backtrace ...
    qqem 026e2c5d (0130bac0,00000001,00000000,013b8aa0)
    QQSM 003b238a (0130bac0,013b8aa0,013f0001,013f4768)
    QQKN 0024d5f1 (0130bac0,013b8aa0,013f0001,013f4748)
    QQKN 00250915 (0130bac0,013b8aa0,013f4730,013f4748)
    QQDO 00432d96 (0130bac0,0209fd40,000000d0,013365b8)
    === message truncated ===
    Do You Yahoo!?
    Get your free @yahoo.com address at http://mail.yahoo.com
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • HT1277 Mail has gone crazy. Header's and messages are mixed up. New Mac Book Pro. Migrated files from Time machine running snow leopard. Reinstall or new computer needed?

    Mail has gone crazy. Header's and messages are mixed up. New Mac Book Pro. Migrated files from Time machine running snow leopard. Reinstall or new computer needed?

    Ok; I'm not sure what you're doing.    36 hours is rather long.  Seems like a new migration.  Not what I intended.
    Here's what I intended: from the newly-migrated and apparently-corrupt environment, create a new user, not related to any existing user, nor any migration-created user, or any other user for that matter.  That is, use  > System Preferences > Users and Groups, authenticate yourself by clicking on the padlock, and then click the + and create a wholly new user.  Then log in under that user and establish the mail access.
    36 hours?  I'm wondering if there's an error or an exceedingly slow network here?  Or a really, really slow disk?  Or a sick backup?  (WiFi isn't the path I'd usually choose, either.)
    Failing the attempted second migration, I'd try a different tactic.  Does your existing (old) system work?   If so, I'd bypass the backup and connect an external (scratch) USB disk drive to the (old) sstem and then boot and use Disk Utility booted from the installer DVD disk or boot and use Disk Utility from the recovery partition or booted from a recovery partition created on some other external storage (details here vary by the OS X version and what hardware you have), and perform a full-disk backup of your original internal disk to (scratch) external storage.  (Make sure you get the source and target disks chosen correctly here; copying the wrong way — from the scratch disk to your existing disk — will clobber your data!)  In esssence, this will clone your existing boot disk.  Then dismount the (formerly-scratch) external disk, transfer it over to the new system, and use it as the source of the migration, by performing a fresh OS X installation on the new system.
    Target Disk Mode is also sometimes an option for accessing the disk for a migration, but that requires the right cable, and requires systems that have the same external connection; newer MacBook Pro systems use Thunderbolt for this, and older systems tend to use FireWire.  And I'm guessing you don't have compatible hardware.
    The details here can and do vary by your OS X versions and your particular Mac systems — if you'll identify the specific models and hardware, somebody might be able to better tailor the above (fairly generic) sequence to your particular configuration.

  • XPS 2720 Question - best ssd setup for performance

    Hi Guys
    the 32gb msata on the motherboard that comes with the AIO, is this any good, want to upgrade ssd, do I keep msata but get larger or do I get rid of this and the 1tb sata 7200 and buy samsung 850 evo/pro and will this give me the best all round performance, interested what you think and what you would buy
    next thing I will need is a dummies guide how to do this and i am not that technically minded,
    1 important thing is I dont have recover disks and my backup/recovery does not work as it says I have corrupted environment, and dell does not detect my machine and when i input my service tag number it does not recognise that either.
    what is going on,lol
    regs
    paul

    The first thing you need is Windows 8.1 installation media, see here:
    http://dellwindowsreinstallationguide.com/download-microsoft-windows-and-office/download-microsoft-windows/download-windows-8-1-retail-and-oem-iso/
    Get a 250-500 GB mSATA and get rid of the 32 GB SSD cache drive. I prefer Crucial in particular the MX200 but Samsung are good also:
    http://uk.crucial.com/gbr/en/compatible-upgrade-for/Dell/xps-one-2720
    To install follow the instructions in the owner's manual to remove the mSATA mini-card:
    http://ftp.dell.com/Manuals/all-products/esuprt_desktop/esuprt_xps_desktop/xps-27-2720-aio_Owner%27s%20Manual_en-us.pdf
    Change the SATA operation to AHCI and wipe the HDD using DISKPART → CLEAN ALL:
    http://dellwindowsreinstallationguide.com/ensure-you-have-the-correct-sata-configuration-in-the-bios-setup-for-your-configuration/sata-operation/
    http://dellwindowsreinstallationguide.com/cleaning-up-a-drive-format-vs-secure-wipe-ssd-and-hdd/
    Install Windows using a local account without a password (so your new factory image doesn't have your Microsoft Account associated with it):
    http://dellwindowsreinstallationguide.com/a-clean-install-of-windows/a-clean-install-of-windows-8-1/windows-8-1-installation/
    After installation of Windows you will need to install the system drivers (in the correct order):
    http://dellwindowsreinstallationguide.com/downloading-drivers-checking-hardware-ids-and-downloading-and-installing-dell-system-drivers-in-the-correct-order/driver-installation/
    Installation of Dell Backup and Recovery will make a new recovery partition from the clean install.
    You may then want to switch to a Microsoft Account.
    You will then want to initialize the HDD and migrate the user directories to it:
    http://dellwindowsreinstallationguide.com/a-clean-install-of-windows/a-clean-install-of-windows-8-1/solid-state-drive-and-hard-drive-configuration/
    You might want to look though the full guide (A Clean Install of Windows):
    http://dellwindowsreinstallationguide.com/a-clean-install-of-windows/a-clean-install-of-windows-8-1/

  • Re: Forte Gremlins -- Thanks

    We are using vF.2 running on NT 4.0.
    Here are some of the responses I got. In case anyone is interested.
    It looks like we aren't completely crazy.
    Regards,
    Ty
    Response #1
    You did not mention what platform or version of Forte you are running.
    We had similar problems with Forte version 2.D on Sun/Solaris using
    both the gemstone repository and objectivity. We have since moved to
    Forte version 2F and our repository problems are gone (knock wood).
    You may also want to call Forte tech support. They were helpful in
    helping resolve our problems(we had a corrupt environment at one
    point). We started doing twice daily dumps of a workspace that
    contained all projects. We first update and then export. This does
    prevent integration during the 20 minutes it takes for the update and
    export.
    Response #2
    We had the same problems ( Reposity corrupted, code that disappeared...).
    , but in ( VMS, first btree, next ctree ). We find that the problem only
    raise when not have space in disk.
    Response #3
    Have you Shadow repository ?
    If yes, it could exist some data in the
    shadow, witch was not backing up with the repository,
    especialy if the shadow repository was detached to
    improve performance.
    Our problems were not related to a Shadow Repository

    We are using vF.2 running on NT 4.0.
    Here are some of the responses I got. In case anyone is interested.
    It looks like we aren't completely crazy.
    Regards,
    Ty
    Response #1
    You did not mention what platform or version of Forte you are running.
    We had similar problems with Forte version 2.D on Sun/Solaris using
    both the gemstone repository and objectivity. We have since moved to
    Forte version 2F and our repository problems are gone (knock wood).
    You may also want to call Forte tech support. They were helpful in
    helping resolve our problems(we had a corrupt environment at one
    point). We started doing twice daily dumps of a workspace that
    contained all projects. We first update and then export. This does
    prevent integration during the 20 minutes it takes for the update and
    export.
    Response #2
    We had the same problems ( Reposity corrupted, code that disappeared...).
    , but in ( VMS, first btree, next ctree ). We find that the problem only
    raise when not have space in disk.
    Response #3
    Have you Shadow repository ?
    If yes, it could exist some data in the
    shadow, witch was not backing up with the repository,
    especialy if the shadow repository was detached to
    improve performance.
    Our problems were not related to a Shadow Repository

  • Oracle 8i Personal Install corrupts Sun Java 2 development environment

    I encountered no errors during installation of Oracle 8i Personal for Windows/NT; and the sample database appears fully functional.
    However, the Sun Java 2 development kit (JDK 1.2) that I use for other projects is no longer functional. The registry appears to have been corrupted by the Oracle 8i installation. Now, whenever I attempt to run a Java 2 program I encounter the error:
    "Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
    has value '1.1', but '1.2' is required."
    Does anyone have suggestions on how to cure this problem?
    null

    Although I installed 8i Lite rather than personal Oracle 8, my experience was unlike yours. My jdk2 never stopped working - although, when I think about it, I did have to immediately fix a bunch of problems I visually detected after the install.
    After the installation, my Registry (on Win95) remained set correctly to version 1.2 of the javasoft runtime environment.
    My autoexec.bat file however was badly trashed by the installer - my multiple classpath statements were all combined into one monolith at the end.
    I hate products that silently overwrite carefully crafted key system files with no prior warning and no automatic backup process.
    After an hour or two recovering the autoexec and setting environment variables for jdk 1.2, everything is fine with my jdk setup.
    In the NT world, I can't help you with recovering your jdk2 environment. However, I'd check your environment settings on NT very carefully to ensure the installer hasn't wreaked havoc with them.
    You can also try re-installing the jdk2 run time environment from sun's web site.
    Good luck.

Maybe you are looking for

  • Problem in Service Registry of VC 7.1

    Hi Experts, I have created a Service Registry Destination for my ABAP Backend System in NWA, Where I have many Web Services Published. When I see in SR using http://<Host Name>:<Port No>/SR, I am able to find the Web Services that are published from

  • Date control

    Hi . I want to control if  malz_itab2-poper ne s_poper but  it gives "non-convertible error " . S_poper in selection screen . How can I define it as it must .Malz_itab2 is internal table and it can be store many poper . Poper is month data . Thanks i

  • Solio charger for 5200 phone?

    Have bought my first Nokia and want a travel charger - solar/wind-up-able. Am being lured by the solio as it could be used with my camera and ipod too. But my phone (5200) is not listed as compatible with the solio. Can anyone advise me if there's a

  • Ability to duplicate objects in transaction tab

    I am using Solution Manager 3.2. I am building "worksteps" (sequecing transactions and programs) in to the transaction tab at the business process step level.  Currently, if I attempt to add an object (transaction or program) more that once, I get th

  • XMP + PEF files in Download Backup

    For my first few imports, the Download Backup folder showed only PEF files. Today it also imported XMP files for some of the photos imported. The photos with XMP files correspond to photos I later edited using Adobe Bridge, so I imagine the XMP files