Dropped database, attempt to recreate it fails

Previously I inadvertently created a TEST database with objects in the SYSTEM tablespace so I removed all trace of that database by deleting all the files associated with it (control, rollback, temp, user, redo, data).
Now I'm trying to recreate the database from scratch but it's failing with "ORA-01092: ORACLE instance terminated. Disconnection forced".
My create statement is (almost certainly more complex than absolutely necessary):
create database test datafile '$ORACLE_HOME/dbs/test/testdata01.dbf' size 20m reuse extent management local
logfile group 1 ('$ORACLE_HOME/dbs/test/testredo01.log') size 10m, group 2 ('$ORACLE_HOME/dbs/test/testredo02.log') size 10m
default temporary tablespace testtemp tempfile '$ORACLE_HOME/dbs/test/testtemp01.dbf' size 20m reuse
undo tablespace testundo datafile '$ORACLE_HOME/dbs/test/testundo01.dbf' size 40m reuse autoextend on next 5120k maxsize unlimited;
I've specified AUTO for undo_management in my ORA file. I was hoping that it would make my life simpler.
I suspect that some remnant of my old database exists and its preventing the new database being created. Any ideas what it could be? Or where to look?
PS I previously had remote login to the old database via an orapwd password file but that file has also been deleted.

Thanks for checking Joel. I think we've resolved the underlying problem.
I found a log file that indicated that the 'compatible' setting in my init<sid>.ora file was wrong. It would have been nice for the create database call to tell me that rather than "ORA-01092: ORACLE instance terminated. Disconnection forced" but, in its defence, maybe it can't.
Also, it would have been nice if it had deleted all the files that it created during the failed database creation attempt. I can understand that Oracle don't typically delete datafiles but this is surely the one situation in which they can definitely do so safely -- Oracle just created them after all so it must know that it's safe to delete them. Plus for a product that supports the notion of all or nothing transactions, you'd have thought it was a given ;-)
Anyhow, I had no explicit 'compatible' setting in init<sid>.ora so it must have defaulted to something other than 9.2.0. This is a little strange, because previously I had no setting either yet I was able to create a database. Perhaps I recently enabled some 9i-specific feature that forced me to set compatible to 9.2.0? Not quite sure.
Bottom line is that it's alive and I've even inserted 3 records into my new table. Woohoo. And my three records only take up 100Mb ;-)

Similar Messages

  • I am attempting to replace a failed hard drive on a F500 Vista laptop. I have a home premium recover

    I am attempting to replace a failed hard drive on a F500 Vista laptop. I have a home premium recovery DVD (1 of 1) and It runs the recovery after a while of loading, and it creates a 24GB partion and loads about 2.6Gb of information on it. the it ejects the disc and asks if I have any suplimental disks, which I don't have. Then it reboots it's self and cycles through reboots for 5 hours, yes I let it do this for 5 hours as the HP site says it could take several hours.
     After this I finally shut down the computer and loaded the hard drive in an ext case and retrieved the above information. I also note that the 250GB drive is shown as a 24GB drive, so I guess it hasn't completed the partions?
    I never get to a Vista window.
    This hard drive does pass the laptop's Bios hard drive check (the former 80GB drive did NOT) and was used to store Old Time Radio shows, until I went to a larger drive.
    The Laptop has a dual core Athlon TK-53 processor and the recovery disc is for 32 bit Vista (and the label in front and license on back don't state Vista 64, just Vista)
    So, Do I need a Vista 64 recovery disc? Should I download the available driver on the HP site and slap in that disc when the Recovery disc finishes and asks for supplimental discs? Might thngs indicate other issues with the laptop?
    I've loaded from scratch XP several times, but this is my 1st Vista experience. Thank you for any help!

    Okay. So I was able to install, and format the new internal HD. Was able to install Lion then Mavericks.  Next, is to try to retrieve my data from my failing old HD.  I bought an enclosure (sled), and have my HD hooked up to my laptop, and it finally showed up in Finder.  So.  Now.  What is next?  I am seeing a screen that shows these folders:  Applications (translate for the PC me = Programs), Library (I am assuming?? these are my various files such as docs, photos, music, etc.) System, opt, and Users.  Should I just try to drag and drop some/all of the folders onto my desktop, then open up the folders and do something with the contents?  Sorry to sound so vague and frankly, rather dumb-sounding, but the nomenclature with a Mac is a bit different than with a PC, and Finder is a little different looking to me than Windows Explorer.  I am relieved to see that I was even able to get this failing drive to show up in the first place, so I feel a little like I could be on borrowed time with it.  I think it may just be bad sectors, since I don't hear any clicking or other mechanical issues with the drive as it spins.  But, any further help with retrieving the data would be VERY much appreciated!!

  • Drop foreign keys and recreate foreign keys with on delete cascade dymanica

    I need to drop foreign keys and recreate foreign keys with on delete cascade dymanically via a script. Does anyone have a script available?

    You could also disable the integrity contraints.
    SET PAGESIZE 0
    SET FEEDBACK OFF
    SET PAUSE OFF
    -- create a disable script
    SPOOL do_disable.sql
    SELECT 'ALTER TABLE '
           || table_name
            || chr(10) ||
           'DISABLE CONSTRAINT '
            || constraint_name
            || ';'
      FROM user_constraints
    WHERE constraint_type = 'R'
       AND status = 'ENABLED'
    select 'alter trigger '
           || trigger_name
            || ' disable;'
      from user_triggers
    where status = 'ENABLED'
    SPOOL OFF
    -- now create a enable script as well
    SPOOL do_enable.sql
    SELECT 'ALTER TABLE '
           || table_name
            || chr(10)
            || 'ENABLE CONSTRAINT '
            || constraint_name
            || ';'
      FROM user_constraints
    WHERE constraint_type = 'R'
       AND status = 'ENABLED'
    SELECT 'ALTER trigger '
           || trigger_name
            || ' ENABLE;'
      FROM user_triggers
    WHERE status = 'ENABLED'
    SPOOL OFF
    SET FEEDBACK ONif you run this script on a TESTdatabase you will end up with a do_disable.sql and a do_enable.sql script on youre local directory.
    Running do disable will disable all the currently enabled triggers and contraints.
    Running do_enable.sql will enable the previously disables triggers and contraints.
    be sure to test before executing this on a real live production database.
    Make sure you have a good backup!

  • ORA-02026 when dropping database.

    Is the Drop Database functionality available in 9i? This is what I get when I try to execute the statement under sys. I also went through the DBCA to drop the database but for some reason none of my databases are showing up in it. Looked under the help file, and it said my SID is not in its "Shell"... whatever that means...
    SQL> DROP DATABASE;
    DROP DATABASE
    ERROR at line 1:
    ORA-02026: missing LINK keyword
    So. my question is, is there a way to get my databases to show up in the DBCA? If not, how do I drop a database in 9i manually? Thanks for all the help so far :)

    Thats cute guys, but you fail to notice 98% of the questions that are asked on this forum can be answered directly from some kind of documentation written either in the past or close to present. If what your asking is for people to check documentation before posting, what your really asking for is a INACTIVE FORUM.
    So tell me, who's being lazy? The developer thats found a faster way to get their questions answered (which coincidentally is getting more work done at light speed) or the plethora of "trying-to-be-oracle-aces" who continually ask for less work on the very forum they're supposed to help people on?
    I imagine that this forum is supposed to help oracle lessen the work load of meta-link. So do you job guys, and help some people. Flaming people will just make you look like an *ss.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • A problem to drop database and its backups.

    HI,
    database: 10.2.0.4.0
    OS: AIX
    SQL> startup mount exclusive;
    ORACLE instance started.
    Total System Global Area 1610612736 bytes
    Fixed Size 2084336 bytes
    Variable Size 385876496 bytes
    Database Buffers 1174405120 bytes
    Redo Buffers 48246784 bytes
    Database mounted.
    SQL> alter system enable restricted session;
    sql> exit
    rman target / catalog rman@rmancatalog
    RMAN> drop database including backups;
    starting full resync of recovery catalog
    full resync complete
    database name is "xxxx" and DBID is xxxxx
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of drop db & bck command at 09/28/2012 15:40:12
    RMAN-06941: Database must be closed and mounted EXCLUSIVE and RESTRICTED.
    RMAN> sql 'alter system enable restricted session';
    sql statement: alter system enable restricted session
    RMAN>
    RMAN> drop database including backups;
    database name is "xxxxx" and DBID is xxxxx
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of drop db & bck command at 09/28/2012 15:41:37
    RMAN-06941: Database must be closed and mounted EXCLUSIVE and RESTRICTED.
    what is wrong?
    thank you
    Edited by: 951932 on Sep 28, 2012 1:49 PM

    Hello,
    this is what I did, anyway, still failed. thank you very much.
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup restrict mount
    ORACLE instance started.
    Total System Global Area 1610612736 bytes
    Fixed Size 2084336 bytes
    Variable Size 385876496 bytes
    Database Buffers 1174405120 bytes
    Redo Buffers 48246784 bytes
    Database mounted.
    SQL> drop database;
    drop database
    ERROR at line 1:
    ORA-01586: database must be mounted EXCLUSIVE and not open for this operation
    SQL> alter system enable restricted session;
    System altered.
    SQL> drop database;
    drop database
    ERROR at line 1:
    ORA-01586: database must be mounted EXCLUSIVE and not open for this operation
    ### try another way.
    SQL> shutdown immediate
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    SQL> startup nomount;
    ORACLE instance started.
    Total System Global Area 1610612736 bytes
    Fixed Size 2084336 bytes
    Variable Size 385876496 bytes
    Database Buffers 1174405120 bytes
    Redo Buffers 48246784 bytes
    SQL> alter database mount exclusive;
    Database altered.
    SQL> SQL> alter system enable restricted session;
    System altered.
    SQL> SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle][gamfcs]/home/oracle>rman target /
    Recovery Manager: Release 10.2.0.4.0 - Production on Mon Oct 8 09:29:36 2012
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    connected to target database: GAMFCS (DBID=2082941597)
    RMAN>
    RMAN> drop database including backups;
    database name is "GAMFCS" and DBID is 2082941597
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of drop db & bck command at 10/08/2012 09:29:57
    RMAN-06941: Database must be closed and mounted EXCLUSIVE and RESTRICTED.
    Edited by: 951932 on Oct 8, 2012 7:33 AM

  • Discoverer Desktop (4)- Receiving error Attempt to Open Workbook Failed

    Hi,
    The reason for this error is multiple people are opening same workbook. This has never been a problem before as the user would receive message: "Open Workbook as Read Only..."
    Now they only get the message: "Attempt to Open Workbook Failed."
    We have tested here and have determined it is not a generell issue because we have the problem only on two workstations.
    I check the registry HKEY_CURRENT_USER for diffenerence between the workstations but without any success.
    There is no file access problem
    Any idea?
    Thx
    Arnd

    Hi all,
    We are having exactly the same problem. I've come to the point that there's a problem between Discoverer Desktop 4i and XP SP3.
    The scenario we have is:
    a) If an user with SP2 creates a workbook and saves it into the network shared folder,
    a.1) It can be opened by users with SP2 as many times as the want. They just receive the "Open Workbook as Read Only" warning message.
    a.2) Users with SP3 can open it only if the workbook is not open by any other user. After that all users receive the "Attempt to Open..." error message.
    a.3) If a user with SP3 makes any change to the workbook and saves it, it doesn't matter which SP version you have, the file becomes "corrupt" and only one user can open it at the same time.
    b) If an user with SP3 creates a workbook and saves it into the network shared folder it can only be opened by one user at the same time
    I've also made tests and the same error occurs if the .dis file is located in a local directory (c:\My Documents for example). I can not open it twice in my computer in two different discoverer desktop instances, and I have SP3, while another user with SP2 can.
    Any ideas? Our Discoverer Desktop version is 4.1.48.06.00
    Regards.

  • "Attempt to open workbook failed" error while opening Discoverer report

    Discoverer is opening and connecting but its throwing an error "Attempt to open Workbook failed".
    same report is opening If I call from a .bat file.
    Only problem is coming when I call from from using host command.
    Please do help me on this as its very urgent.
    thanks in advance

    Hi all,
    We are having exactly the same problem. I've come to the point that there's a problem between Discoverer Desktop 4i and XP SP3.
    The scenario we have is:
    a) If an user with SP2 creates a workbook and saves it into the network shared folder,
    a.1) It can be opened by users with SP2 as many times as the want. They just receive the "Open Workbook as Read Only" warning message.
    a.2) Users with SP3 can open it only if the workbook is not open by any other user. After that all users receive the "Attempt to Open..." error message.
    a.3) If a user with SP3 makes any change to the workbook and saves it, it doesn't matter which SP version you have, the file becomes "corrupt" and only one user can open it at the same time.
    b) If an user with SP3 creates a workbook and saves it into the network shared folder it can only be opened by one user at the same time
    I've also made tests and the same error occurs if the .dis file is located in a local directory (c:\My Documents for example). I can not open it twice in my computer in two different discoverer desktop instances, and I have SP3, while another user with SP2 can.
    Any ideas? Our Discoverer Desktop version is 4.1.48.06.00
    Regards.

  • The Attempt to burn disc failed.  The burn failed because of a medium write error.

    When trying to burn a CD, I'm getting an error that reads:The Attempt to burn disc failed.  The burn failed because of a medium write error.  I experienced this message before and took my Macbook in to the store and the the genius was stumped but when he tried one of his CD's it burned fine to he concluded that the problem was in the CD's NOT the Macbook or program  HOWEVER, months later, I'm having the same issue using the NEW CD's.  Does anyone have any information about this?

    3 methods to fix this:
    The first is to reset pram
    at boot up hold four keys down till you hear 3 chimes:
    command(apple)=option+p+r
    release keys and it will now reboot.
    The second is to reset nvram
    at boot up hold four keys down:
    command(apple)+option+o+f
    a black screen will appear
    now type: reset-nvram
    click enter
    now type: reset-all
    click enter
    it will now reboot
    The third is to open system preferences.
    go to international
    under languages: drag any of the other languages to the top, then drag english back to the top.
    make sure "order for sorted lists" is set to english
    make sure "word break" is set to english(united states, computer)
    then restart.
    I hope this helps you as it certainly did me. :^)

  • I am getting an error every time i try to burn a playlist. The error reads The Attempt to burn disc failed. The burn failed because of a medium write error.

    Can somebody help me. I used to be able to burn with no problem. But now while finishing discs, I get the following message.
    The Attempt to burn disc failed. The burn failed because of a medium write error.

    Try a different brand of discs.  Try restarting your computer.

  • Unable to drop database user

    Hi All,
    I am unable to drop database user and getting the folllowing error:
    " must use DBMS_AQADM.DROP_QUEUE_TABLE to drop queue tables "
    I find 3 table with AQ prefix in the schema but unable to drop these table even by using "sys" user.
    Any idea how can I do that ?
    Regards,

    Hi,
    select object_name,object_type from dba_objects where owner='USERNAME' and object_name like '%AQ%';TO drop the queue table, login as the owner and
    exec DBMS_AQADM.DROP_QUEUE_TABLE(queue_table=>'PASTE_THE_OBJECT_NAME_FROM_ABOVE',force =>TRUE);Anand

  • "The attempt to burn disc failed."

    Hi,
    I have an older MBP, from July of the first year they were sold...2006? Can't remember. Anyway. I am running tiger still and everything is up to date. 10.4.11, iTunes 7.6 etc etc....
    Anyway. My problem is, I can't get anything to burn!! Extended hardware test does not reveal any problems...
    Here is what is happening..
    I want to burn music so that I can play it in my car. I had a stack of 2 year old Sony CD-R's that I was using and they were perfectly, except I ran out of them. So I bought the same exact thing again...and iTunes spits out the cd and says "The attempt to burn disc failed. The burn failed because of a medium write error." Ok so I tried another disc. Same issue. Then I went and took one of my brothers 2 year old Sony CD-Rs and it worked perfectly. So I exchanged my new stack of cds for the same thing, same issue and returned them.
    Since then I have burned a couple of movie DVDs on Sony DVD-Rs and they work fine. I have even burned data DVDs on Playo DVD-Rs.
    This evening I purchased a stack of HP Music CD-Rs and guess what! My computer spit them out and said the same exact error message!!!
    Does anyone have any suggestions?
    Is it a Tiger issue?
    It can't be hardware related because I have proven it can burn with no problem (just on older cds). Is it maybe a cd issue? Are newer cds somehow formated in a different way that will not work with my combination of hardware and software?
    Maybe I should just spend the $300 and get an ipod adapter installed in my car...
    Thanks
    Adam
    Other info...
    MATSHITA DVD-R UJ-857:
    Firmware Revision: HAEA
    Interconnect: ATAPI
    Burn Support: Yes (Apple Shipped/Supported)
    Cache: 2048 KB
    Reads DVD: Yes
    CD-Write: -R, -RW
    DVD-Write: -R, -RW, +R, +RW
    Burn Underrun Protection CD: Yes
    Burn Underrun Protection DVD: Yes
    Write Strategies: CD-TAO, CD-SAO, DVD-DAO
    Media: No

    Hi ASal,
    If your Optical drive is reading correctly then the report suggests that there is already data on that disc and it cannot be written to again. Needless to say, only a CD/RW can be burned to more than once. Your info suggests that it is definitely a CD-R.
    Double click your disc mounted on the desktop and see if there is any data on it. If there is then you cannot burn to it again. (Not without burning the data in "Sessions."-- A CD-R can have multiple burns in different sessions, but it cannot write over the top of already existing data. You will need a CD/RW if you wish to be able to completely erase and write again. See how you go. Hope this helps.
    It appears that your profiler is well able to SEE the CD-R, but you still might have CD Burn issues. Have you tried just burning data to a CD-R through the Finder to see if burns successfully..? If it does, then you should be able to burn audio through iTunes too. Make sure youre not trying to fit too much data on the disc too. That is a common error with people...
    Make sure the discs you are using are completely blank.
    Regards,
    Ben.

  • Attempt to process file failed with Exception in XML Parser-format problem

    Hi all,
    Iam getting an unusual error in the J2EE stack in XI.
    And the message is:
    006-11-30 17:31:07 Error Attempt to process file failed with Exception in XML Parser (format problem?):'com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)(:main:, row=1, col=1044002) -> com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)' 2006-11-30 17:31:07 Error Exception caught by adapter framework: null 2006-11-30 17:31:07 Error Delivery of the message to the application using connection AFW failed, due to: RecoverableException.
    My scenerio iam posting IDOC to a flat file with content conversion in the receiver side,the mapping got executed successfully and in the audit log i found that the error was after the 'Start converting XML document content to plain text'.
    This means that error occured during content conversion of XML to the prescribed file format.
    Can anyone suggest any better approach using which we may trace the junk data in IDoc. Manual adhoc approach could take time and is error prone.
    Thanks in advance...
    karun

    Hi Bhavesh,
    Thanks for the early reply. I checked the mapping and everything is fine and the output is also in valid XML format.
    The audit log shows that the mapping got executed successfully and the error is after the step 'Start converting XML document content to plain text '. Is there any constraint in the file adapter regarding the message size for parsing.
    2006-11-30 17:30:50 Success Transfer: "BIN" mode, size 2912595 bytes, character encoding -
    2006-11-30 17:30:50 Success Start converting XML document content to plain text
    2006-11-30 17:31:07 Error Attempt to process file failed with Exception in XML Parser (format problem?):'com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)(:main:, row=1, col=1044002) -> com.sap.engine.lib.xml.parser.ParserException: Invalid char #0xf(:main:, row:1, col:1044002)'
    2006-11-30 17:31:07 Error Exception caught by adapter framework: null
    2006-11-30 17:31:07 Error Delivery of the message to the application using connection AFW failed, due to: RecoverableException.
    2006-11-30 17:31:07 Success The asynchronous message was successfully scheduled to be delivered at Thu Nov 30 17:36:07 GMT 2006.
    2006-11-30 17:31:07 Success The message status set to WAIT.
    2006-11-30 17:31:08 Success Acknowledgement creation triggered for type: SystemErrorAck
    2006-11-30 17:31:08 Success Acknowledgement sent successfully for type: SystemErrorAck
    2006-11-30 17:36:08 Success Retrying to deliver message to the application. Retry: 1

  • Drag and dropping database objects in Jdev

    I evaluated Visual Cafe and deciding wheather to go with VC or JDev. One of the cool things I noticed in VC is that one can drag and drop database objects in the form using DBNavigator. I haven't seen anything similar in JDev 3.1. Does this or something similar exist in JDev?
    Regards,
    Mark

    Mark,
    Yes, the DB Navigator in Visual Cafe may provide a nice simple look at the database Tables - but so does JDeveloper's Database Navigator - VC may excel in the Drag and Drop functionality - but this is not the real objective. Let me explain...
    When creating a real enterprise level application in Visual Cafe, you begin to discover that DB Navigator along with it's nifty Drag & Drop is no match for JDeveloper's unprecedented level of database integration. JDeveloper's Database related integration includes (but not limited to):
    - JDevelopers Database Navigator
    - Integrated SQLJ environment
    - Tight Business Components for Java (BC4J) integration
    - Wizard driven Form generation (thin & thick)
    - DAC Controls / InfoSwing components
    - Named Connections / Connection Manager
    - WebBeans / JSP Element Wizard
    The closest thing in JDeveloper to what you are referring to in VC is JDeveloper's support for the Design mode which allows you to design both graphical and non-graphical elements. In particular, JDeveloper allows you to design your InfoSwing and InfoProducer components using the Designer - by selecting the component (JavaBean) from the Component Palette and then [Dragging Optional] Dropping it on either the Design Canvas or the Structure pane (lower pane of Navigator window).
    For non-visual elements (such as InfoProducer elements), the Structure pane allows for Creation via Drag & Drop and allows for property setting by using the Property Inspector (Since it is a JavaBean...).
    There are many reasons why JDeveloper provides a much richer and more productive development environment than Visual Cafe. Most have to do with seeking a complete enterprise level solution. JDeveloper adresses the enterprise level application developers needs directly with integration of elements from Tools & Wizards to the integration of a complete application development framework - Oracle Business Components for Java - No other tool can provide you with such a rich and productive development environment.
    John - JDeveloper Team
    null

  • Connection refused: proxy: HTTP: attempt to connect to failed [error] ap_proxy_connect_backend disabling worker

    Hi all,
    I'm investigating cause of a wedged wiki this morning. The MacMini (10.7.5) was working well for the last year but we're not sure when it gave up the ghost.
    I've already applied the fixes detailed at Mac OS X v10.5, Mac OS X Server v10.5: Web, Mail, Wiki, Personal Web Sharing, Parental Controls services may not start after restoring a Time Machine backup but it has't helped.
    The error we see when we visit the top level of the server is:
    Service Temporarily Unavailable
    The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later.
    Apache/2.2.22 (Unix) PHP/5.3.15 with Suhosin-Patch mod_ssl/2.2.22 OpenSSL/0.9.8r DAV/2 Server at sacmini.local Port 80
    The message in the httpd error logs is:
    Connection refused: proxy: HTTP: attempt to connect to failed [error] ap_proxy_connect_backend disabling worker
    Let me know if you have any ideas.  Thank you.
    --Athonia

    Thanks for the reply.
    So, there were some Ruby related log file entries. Do these have any meaning to you?  I'm checking to see what collabcored2 does exactly.
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygem s/custom_require.rb:31:in `require'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config/environment.rb:11
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygem s/custom_require.rb:31:in `gem_original_require'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygem s/custom_require.rb:31:in `require'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config.ru:13
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /Library/Ruby/Gems/1.8/gems/rack-1.2.1/lib/rack/builder.rb:46:in `instance_eval'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /Library/Ruby/Gems/1.8/gems/rack-1.2.1/lib/rack/builder.rb:46:in `initialize'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config.ru:1:in `new'
    May  7 14:22:33 sacmini com.apple.collabcored2[22106]:
    from /usr/share/collabd/coreclient/config.ru:1
    May  7 14:22:33 sacmini com.apple.launchd[1] (com.apple.collabcored2[22106]): Exited with code: 1
    May  7 14:22:33 sacmini com.apple.launchd[1] (com.apple.collabcored2): Throttling respawn: Will start in 9 seconds

  • Business Server exception: attempt to establish connection failed.

    Hi.
    I'm a total newbie to the BPA Suite, but I have experience with other tool sets like MEGA. I've downloaded and installed an evaluation copy of version 10.1.3.4 of the tool.
    I'm working through the Business Process Architect Quick Start Guide, going through the sample Quote to Cash process. Everything is progressing relatively well as I go through the document (except that the QuoteToCash project is already loaded in the LOCAL business repository without me having to load it separately), until I get to the first simulation.
    When I go to the Simulation module, I get an error: "Server access exception: Business Server exception: attempt to establish connection failed."
    I don't know what's wrong, but there are a couple of things I'm thinking about. One is that I didn't install XE separately, so I think that I'm just using the default Oracle Lite instance that gets installed with the tool. Another is that my account is configured without administrator privileges, so I generally have to run installers as a separate user with administrator privileges to get things to work.
    Any suggestions would be greatly appreciated!
    Thanks.

    It might be bad form to answer your own question, but after further experimentation, I think that it's a permissions problem.
    I repeated the installation on another (virtual) machine on an account that is an administrator, and I can simulate the Process Order process as described in the Quick Start Guide to my heart's content.
    Now, the second machine isn't configured exactly the same as the first machine, so there could be other underlying or contributing factors. But I'm un-stuck for now.
    I just thought I'd share what I found. Thanks.

Maybe you are looking for

  • Can I restore a single photo/photo folder from Time Machine/Time Capsule

    Hi So I'm usuing Time Machine to back up my MacBook to Airport Time Capsule. If I somehow lost a couple of photos and its taken a few months to realise, can I retrieve just these photos/photo folder or do I need to restore my whole photo library goin

  • Is there any other way to view and interact with notes except through Mail?

    Using the iPad I really like using notes as a stand-alone app. Is there a way to do this in OSX or can I only access my notes through Mail? If only through mail, can they live someplace other than my inbox? Thanks

  • BTE for print Dunning letters

    Hi How to find BTE for action when I press button preview form (Print) in transaction F150.

  • UCCE 9.0 Precision Queue.

    Guys,            I have some experience in 8.5. Now I would like to install learn ICM 9.0. Installation I can do by reading documents. I don't know what is Precision Queue in 9.0. I have gone through SRND, I can't get what they are trying to convey.

  • Transfer SOP plan to Demand Mgmt

    Dear friends,    I  have created SOp through MC88. And i wants to transfer SOP plan to demand management through t.code MC74. While filling the data in the fields, i do not know what to enter in the field "Version" either "00" or "GP". Please guide m