Cannot connect on OWB - "started new global transaction without ending..."

Hi, folks.
I had to change my computer and reinstall my OWB 11.1.0.6.0 in my PC (Windows 7 64b), but thus far I couldn't connect to OWB and we don't really know what to do here.
We've been experiencing these following mistakes:
"PRS-00322: Internal Error: started new global transaction without ending existing global transaction. Please contact Oracle Support with the stack trace and details on how to reproduce it".
"API5022: It's not possible to establish connection with the specified account. Check out the connection information".
Do I have to change something on the TNSNAMES.ora or something like this?
Thanks for your help

have u tried this
alter system session kill immediate""..
else
login as sys and check status of OWB design user...see if that is locked
or at last
if possible reboot the database server

Similar Messages

  • Cannot start a global transaction. A LocalTransactionContainment is already

    Getting 'javax.transaction.NotSupportedException: java.lang.IllegalStateException: Cannot start a global transaction. A LocalTransactionContainment is already active with work.' while running the following code using XA datasource.
    Setup: WAS 5.0.2, TopLink 9.0.4.4, Oracle JDBC Driver (XA), Oralce9i database flatform, using external transaction controller.
    Code:
    SessionManager sm = SessionManager.getManager();
    Server serverSession = (Server)sm.getSession("PersistenceUnitTest");
    ClientSession clientSession = serverSession.acquireClientSession();
    int key = 1003;
    Customer customerPK = new Customer();
    customerPK.setId(new Integer(key));
    ReadObjectQuery query =
    new ReadObjectQuery(customerPK.getClass());
    query.setSelectionKey(clientSession.keyFromObject(customerPK));
    Customer customer = null;
    try {
    customer = (Customer)clientSession.executeQuery(query);
    } catch (Exception e) {
    clientSession.release();
    InitialContext ctx = new InitialContext();
    UserTransaction userTxn = (UserTransaction) ctx.lookup("java:comp/UserTransaction");
    try {
    userTxn.begin();
    userTxn.rollback();
    } catch (Exception e) {
    e.printStackTrace();
    } finally {
    clientSession.release();
    Trace:
    2005.03.14 01:04:57.452--ServerSession(863114877)--Thread[Servlet.Engine.Transports : 0,5,main]--client acquired
    2005.03.14 01:04:57.462--ServerSession(863114877)--Thread[Servlet.Engine.Transports : 0,5,main]--Connection(1731483245)--SELECT PERSON_TYPE, ID, GENDER, VERSION, LAST_NAME, FIRST_NAME, MIDDLE_INITIAL, HOME_ADDRESS_ID, PREFERRED_CUSTOMER, DISCOUNT_RATE, CONTACT_NUMBER, WORK_ADDRESS_ID FROM USER04.PERSON WHERE ((ID = ?) AND (PERSON_TYPE = ?))
         bind => [1003, C]
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R javax.transaction.NotSupportedException: java.lang.IllegalStateException: Cannot start a global transaction. A LocalTransactionContainment is already active with work.
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at com.ibm.ejs.jts.jta.UserTransactionImpl.begin(UserTransactionImpl.java:173)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at com.ford.it.persistence.impl.toplink.unittest.GlobalTransactionTest.testXA(GlobalTransactionTest.java:808)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at java.lang.reflect.Method.invoke(Native Method)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at junit.framework.TestCase.runTest(TestCase.java:154)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at junit.framework.TestCase.runBare(TestCase.java:127)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.ServletTestCase.runCactusTest(ServletTestCase.java:295)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.ServletTestCase.runBare(ServletTestCase.java:263)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.AbstractWebTestCaller.doTest(AbstractWebTestCaller.java:156)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.AbstractWebTestController.handleRequest_aroundBody0(AbstractWebTestController.java:130)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.AbstractWebTestController.handleRequest_aroundBody1$advice(AbstractWebTestController.java:158)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.AbstractWebTestController.handleRequest(AbstractWebTestController.java)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.ServletTestRedirector.doPost_aroundBody2(ServletTestRedirector.java:138)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.ServletTestRedirector.doPost_aroundBody3$advice(ServletTestRedirector.java:158)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.ServletTestRedirector.doPost(ServletTestRedirector.java)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.ServletTestRedirector.doGet_aroundBody0(ServletTestRedirector.java:109)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.ServletTestRedirector.doGet_aroundBody1$advice(ServletTestRedirector.java:158)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at org.apache.cactus.server.ServletTestRedirector.doGet(ServletTestRedirector.java)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    [3/14/05 13:04:57:502 EST] 17d31642 SystemErr R      at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:610)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:431)
    [3/14/05 13:04:57:512 EST] 17d31642 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:593)
    [3/14/05 13:04:57:492 EST] 17d31642 LocalTransact E WLTC0018E: Cannot begin a LocalTransactionContainment. A LocalTransactionContainment is already active.
    2005.03.14 01:04:57.512--ClientSession(1258968685)--Thread[Servlet.Engine.Transports : 0,5,main]--client released
    If we perform a query on a thread and then subsequently start a UserTransaction, we get the above failure on the begin() method of the UserTransaction
    Did anyone experience this before? Your inputs/comments are greatly appreciated.
    Haiwei

    James, thanks very much for your response.
    I hope you did not mis-understand my previous posts in this thread.
    In the example I provided, the database query was outside the UserTransaction. I could successfully perform rollback on an XA db connection after the query was executed. The rollback call cleans up the resources used in the local transaction that was created for the query; thus allows the UserTransaction to start following the query.
    The local transaction was created for the query because autoCommit property was false for XA datasource connections. If I set autoCommit to true after getting the connection from XA datasource, the query will finish with the commit of the local transaction that's created for the query. The WAS code appears to work correctly.
    If using non-XA datasource, the local transaction created for the query will be committed because the autoCommit is default to true for the non-XA connections.
    While using TopLink, there seems to be two options for solving my problem (which was stated at the begining of this thread):
    1) after the execution of a TopLink query, trap the connection.close() event and call the connection.rollback() before closing the connection to clean up the resources used in the local transaction; or
    2) trap the getConnection() event, and call conneciton.setAutoCommit(true) on the connection if the query is not part of the TopLink transaction or UserTransaction.
    I studied and experimented with the TopLink code. Option 1) is not do-able. After the execution of a TopLink qeury, TopLink's PreReleaseConnection event does not contain the connection that was used in the query. The connection was closed in the executeCall method of DatabaseAccessor.
    The postConnect event seems to provide some possibility of implementing option 2). However, when TopLink executes a query (at least, the ReadObjectQuery that I used in my testing), after getting a connection from DatabaseLogin, the executeCall method in DatabaseAccessoor never triggers the postConnect event.
    I posted a seperate note on the issue. Here is the link: postConnect event .
    or use a non-JTA DataSource for the TopLink session read login.<We use WAS connection pooling. Did you mean using non-XA datasource for TopLik read?
    your own TopLink ExternalConnectionPool subclass to workaround the issue<Could you elaborate the details? Or where can I find more information on the technique?
    Your help would be greatly appreciated.
    Haiwei
    Haiwei

  • Cannot connect to iTunes on new iPad2

    My new iPad cannot connect to iTunes. PC iTunes has latest software.  Sync but still cannot connect to iTunes. Frustrated;--(

    Next approach is to work through the troubleshooting knowledge base article on iOS devices.

  • I cannot connect to iTunes after new update on iPad air

    I Cannot connect to iTunes or App Store after new update and I have tried all the trouble shooting stuff....no good. When I close the app the contents are there but when I tap on them the error message comes up and the app contents goes blank....Help. I need them for my business.
    thanks

    Hello Deryn340,
    Thanks for using Apple Support Communities.
    If you're currently unable to connect to either the iTunes Store or the App Store on your iPad, then I'd like you to please follow the troubleshooting steps outlined below.
    Troubleshoot issues on an iPhone, iPad, or iPod touch
    If you haven't been able to connect to the iTunes Store:
    Make sure your date, time, and time zone are correct in Settings > General > Date & Time. 
    Note: Time Zone may list another city in your time zone.
    Make sure that your iOS software is up to date by tapping Settings > General > Software Update(iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
    Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
    Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
    Make sure that you have an active Internet connection. You can check the user guide for your device for help with connecting to the Internet.
    Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Try resetting (turning off and then on again) your Wi-Fi router.
    If the issue persists, try troubleshooting your Wi-Fi networks and connections.
    If the steps above didn't resolve your issue, be sure that your specific alert isn't listed as a possible iTunes Store error. Then, if your issue is still unresolved, follow these steps.
    Can't connect to the iTunes Store - Apple Support
    Cheers,
    Alex H.

  • HT201304 Cannot connect to apps store new ipad

    Update to ios6 cannot connect to apps store.has anyone got a workaround every thing else works fine. I can access http sites and all other apple places.
    Sky go also has problem says needs wi fi to work . I am connected to my home wi fi . So do to understand. Apple don't seem to be bothered .

    The Complete Guide to Using the iTunes Store
    http://www.ilounge.com/index.php/articles/comments/the-complete-guide-to-using-t he-itunes-store/
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    iTunes: Advanced iTunes Store troubleshooting
    http://support.apple.com/kb/TS3297
    This works for some users. Not sure why.
    Go to Settings>General>Date and Time> Set Automatically>Off. Set the date ahead by about a year.Then see if you can connect to the store.
     Cheers, Tom

  • Start New Company Transactions in Oracle Financials

    Hi,
    Recently we have implemented Oracle Financials (All 5 Modules) in our Organization. Now the company is changing the name and wants to start Transactions afresh in that new company. This is a Single Org & Single Currency instance on R12.1 Version.
    Can anyone suggest the best approach for doing the same.
    Thanks in advance
    Regards,
    Rohan

    Approach 1:
    Define a new BSV and disable the old one. This is the easiest method as no setups will be required.
    Approach 2 :
    If there is change in Registered Name and Legal Entity.
    Define a new ledger, LE and OU. and complete the setup same as fresh implementation.
    Regards,
    CP

  • Cannot connect to wifi with new iPad or iphone5

    Everything was fine before ios6 update? Do I need a new router or what? This is very frustrating and it seems apple is doing nothing! Not acceptable!

    Look at iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    Additional things to try.
    Try this first. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    Another thing to try - Go into your router security settings and change from WEP to WPA with AES.
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    If none of the above suggestions work, look at this link.
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
     Cheers, Tom

  • Cannot connect to broadband with new modem

    Hello
    Had to upgrade my setup with a new router and a new modem.
    The modem is a TP-link 8817 and I have followed the instructions to set it up.
    All went through fine and I can see the ADSL status as 'showtime' and can see the sync rate fine too.
    What I cannot see is the ip address, dns and gateway field populated. The status of the line is "Down"
    I am connecting using PPoA VC MUX using a MTU of 1400 with VPI 0 and VCI 38. Frankly I cannot see what I am doing wrong. 
    I have got FON on the line which is not disconnected yet, would that be an issue?
    THanks

    rento wrote:
    Out of boredom I tried using [email protected] and password as a password.... It does connect now.
    Cheers!
    Yes, you normally need a password, otherwise many routers simply do not authenticate.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Cannot connect to GET STARTED page

    Hello,
    First off, I am sorry, I did a search and saw numerous posts on this issue, but about all of them either ended their replies after a user asked "Did you do this or that ?" or they just stopped posting... at most I saw some topics where it magically worked later on, but no real step-by-step instructions.
    So, the problem: I installed XE 11g, no apparent problems during install (no warnings so I assume everything is OK), tried the GET STARTED link, but it said it can't connect.
    System: Win XP PRO SP3, 2 gb ram using Firefox 7.0.1
    DB: Oracle 11g Express Edition
    Antivirus: avast 6 (firewall included), but disabled during testing...
    lsnrctl:
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 11.2.0.2.0 - Produ
    ction
    Start Date                05-OCT-2011 02:36:42
    Uptime                    0 days 0 hr. 21 min. 51 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Default Service           XE
    Listener Parameter File   E:\Database\Oracle\app\oracle\product\11.2.0\server\network\admin\listener.ora
    Listener Log File         E:\Database\Oracle\app\oracle\diag\tnslsnr\EASTFRONTIERS03\listener\alert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1ipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=EASTFRONTIERS03)(PORT=1521)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
      Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
      Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "xe" has 1 instance(s).
      Instance "xe", status BLOCKED, has 1 handler(s) for this service...
    The command completed successfullytns:
    XE =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = PLSExtProc)
          (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
      (DESCRIPTION =
        (ADDRESS_LIST =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
        (CONNECT_DATA =
          (SID = CLRExtProc)
          (PRESENTATION = RO)
      ) listener:
    SID_LIST_LISTENER =
      (SID_LIST =
        (SID_DESC =
          (SID_NAME = PLSExtProc)
          (ORACLE_HOME = E:\Database\oracle\app\oracle\product\11.2.0\server)
          (PROGRAM = extproc)
        (SID_DESC =
          (SID_NAME = CLRExtProc)
          (ORACLE_HOME = E:\Database\oracle\app\oracle\product\11.2.0\server)
          (PROGRAM = extproc)
    LISTENER =
      (DESCRIPTION_LIST =
        (DESCRIPTION =
          (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))
          (ADDRESS = (PROTOCOL = TCP)(HOST = 127.0.0.1)(PORT = 1521))
    DEFAULT_SERVICE_LISTENER = (XE)Services:
    OracleJobSchedulerXE
    OracleMTSRecoveryService
    OracleServiceXE (started)
    OracleXEClrAgent
    OracleXETNSListener (started)sqlplus:
    SQL> connect
    Enter user-name: SYS
    Enter password:
    ERROR:
    ORA-01089: immediate shutdown in progress - no operations are permitted
    Process ID: 0
    Session ID: 0 Serial number: 0alert_xe:
    Wed Oct 05 02:37:35 2011
    AUD: OS Error = 1717 encountered while writing audit record
    AUD: OS Error = 1717 encountered while writing audit record
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_1 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    Starting up:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production.
    Using parameter settings in client-side pfile E:\DATABASE\ORACLE\APP\ORACLE\PRODUCT\11.2.0\SERVER\CONFIG\SCRIPTS\INIT.ORA on machine EASTFRONTIERS03
    System parameters with non-default values:
      sessions                 = 172
      memory_target            = 760M
      control_files            = "E:\DATABASE\ORACLE\APP\ORACLE\ORADATA\XE\CONTROL.DBF"
      compatible               = "11.2.0.0.0"
      db_recovery_file_dest    = "E:\Database\Oracle\app\oracle\fast_recovery_area"
      db_recovery_file_dest_size= 10G
      undo_management          = "AUTO"
      undo_tablespace          = "UNDOTBS1"
      remote_login_passwordfile= "EXCLUSIVE"
      dispatchers              = "(PROTOCOL=TCP) (SERVICE=XEXDB)"
      shared_servers           = 4
      job_queue_processes      = 4
      audit_file_dest          = "E:\DATABASE\ORACLE\APP\ORACLE\ADMIN\XE\ADUMP"
      db_name                  = "XE"
      open_cursors             = 300
      diagnostic_dest          = "E:\DATABASE\ORACLE\APP\ORACLE"
    Wed Oct 05 02:37:53 2011
    PMON started with pid=2, OS id=2308
    Wed Oct 05 02:37:53 2011
    PSP0 started with pid=3, OS id=1168
    Wed Oct 05 02:37:54 2011
    VKTM started with pid=4, OS id=1920 at elevated priority
    VKTM running at (10)millisec precision with DBRM quantum (100)ms
    Wed Oct 05 02:37:54 2011
    GEN0 started with pid=5, OS id=372
    Wed Oct 05 02:37:54 2011
    DIAG started with pid=6, OS id=1580
    Wed Oct 05 02:37:54 2011
    DBRM started with pid=7, OS id=1552
    Wed Oct 05 02:37:54 2011
    DIA0 started with pid=8, OS id=2668
    Wed Oct 05 02:37:54 2011
    MMAN started with pid=9, OS id=2132
    Wed Oct 05 02:37:54 2011
    DBW0 started with pid=10, OS id=3716
    Wed Oct 05 02:37:54 2011
    LGWR started with pid=11, OS id=3952
    Wed Oct 05 02:37:54 2011
    CKPT started with pid=12, OS id=2992
    Wed Oct 05 02:37:54 2011
    SMON started with pid=13, OS id=2616
    Wed Oct 05 02:37:54 2011
    RECO started with pid=14, OS id=1764
    Wed Oct 05 02:37:54 2011
    MMON started with pid=15, OS id=4012
    Wed Oct 05 02:37:54 2011
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    ORACLE_BASE from environment = E:\Database\Oracle\app\oracle
    Wed Oct 05 02:37:55 2011
    AUD: OS Error = 1717 encountered while writing audit record
    Wed Oct 05 02:37:54 2011
    MMNL started with pid=16, OS id=1516
    Wed Oct 05 02:37:57 2011
    AUD: OS Error = 1717 encountered while writing audit record
    AUD: OS Error = 1717 encountered while writing audit record
    Shutting down instance (immediate)
    Shutting down instance: further logons disabled
    Stopping background process MMNL
    Stopping background process MMON
    License high water mark = 1
    All dispatchers and shared servers shutdown
    AUD: OS Error = 1717 encountered while writing audit record
    Starting ORACLE instance (normal)
    Wed Oct 05 02:38:02 2011
    AUD: OS Error = 1717 encountered while writing audit record
    AUD: OS Error = 1717 encountered while writing audit record
    Wed Oct 05 02:38:03 2011
    AUD: OS Error = 1717 encountered while writing audit record
    AUD: OS Error = 1717 encountered while writing audit record
    Wed Oct 05 02:38:03 2011
    AUD: OS Error = 1717 encountered while writing audit record
    AUD: OS Error = 1717 encountered while writing audit record
    Wed Oct 05 02:38:03 2011
    AUD: OS Error = 1717 encountered while writing audit record
    AUD: OS Error = 1717 encountered while writing audit recordFrom what I could gather from other posts here (and on other sites) the problem is I don't have anything listening on 8080. Other than that, all seems OK (I think).
    So, can anyone tell me\help me on why that one isn't starting ? I reinstalled this 6 times and still can't figure out the problem... (as you saw, I even replaced the tns hostname with 127.0.0.1 out of paranoia). It's seriously driving me mad. Every topic I searched for (from the problem itself to even a step-by-step for dummies) shows an install, then the interface working... I see some questions regarding "I can't connect to..." but most are unanswered :(
    Thanks in advance!
    P.S. let me know if I forgot to mention anything relevant

    TheNomad wrote:
    orafad: Sad to say that was the full output...
    C:\Documents and Settings\User>sqlplus / as SYSDBA
    SQL*Plus: Release 11.2.0.2.0 Production on Thu Oct 6 12:55:47 2011
    Copyright (c) 1982, 2010, Oracle.  All rights reserved.
    Connected to an idle instance.
    SQL> select 1 from dual
    2  /
    select 1 from dual
    ERROR at line 1:
    ORA-01034: ORACLE not available
    Process ID: 0
    Session ID: 0 Serial number: 0
    SQL>
    jgarry: I believe what you explained may be related to the fact some reported the DB doesn't work properly when the event log is full (I just emptied mine so it doesn't apply). Normally I disable it but without it started, the DB is not working properly (not that I can get it started anyway).
    There was a post on a site I found hinting at 3 things:
    1. ORACLE_HOME must be defined as an env-var
    2. ORACLE_SID must be defined as an env-var
    3. there might be a problem with spfile
    Regarding those:
    1. shouldn't the setup declare it automatically ? I don't have it declared, but I added it (no change)As Orafad pointed out, Windows is different. It does have a search hierarchy it follows to figure out what the environment should be. So first, unset what you set and go into a cmd window and:
    sqlplus sys as sysdba
    Edit: Oops, I meant
    sqlplus / as sysdba
    startup
    2. same as above, except I am not sure what SID to add so I didn't declare it ... The only 2 I have are PLSExtProc and CLRExtProc in tnsnames by default. I tried with each but the only thing that changes is instead of getting the shared memory realm error I get a TNS adapter error... trading one error for another is not funFor XE, the ORACLE_SID is XE (unless you do screwy things to change it). So now that I see you had some other db installed before, I suspect an environment collision. Delve into your registry and see what oracle definitions you have - this is a lot of work, things are spread around some, but searching for oracle is usually a good start. I'm not up on the 11.2 details (or others, really, I just have vague memories of seeing MOS notes that purported to explain clean up entirely, without truly doing so, and I avoid Windows as much as possible). I would uninstall XE, uninstall the other one, then search the registry for any leftover stuff, then install XE and see if it all magically works. But that is a fairly brain-dead way to deal with it.
    So that said, you can set up a little batch file to set your environment in a cmd window (specifically ORACLE_HOME and ORACLE_SID), and go into sqlplus / as sysdba and give the startup command. If you get the memory realm error, you have one of those wrong, if you get the tnsnames errors you can fix those following the advice in Ed Steven's blog. You can run tnsping to see which tnsnames.ora you are using, if you use one (which is determined by an @ sign in your connection string, which you should not need to connect locally, but if you do, you need to have XE defined in the tnsnames.ora, and may need to set TNS_ADMIN to get the right one).
    Your tnsnames.ora should have an entry like this:
    XE =
      (DESCRIPTION =
        (ADDRESS = (PROTOCOL = TCP)(HOST = Yourcomputer.yourdomian.whatever)(PORT = 1521))
        (CONNECT_DATA =
          (SERVER = DEDICATED)
          (SERVICE_NAME = XE)
      )You might want to search for any tnsname.ora on your computer, the default correct one would be: C:\oraclexe\app\oracle\product\11.2.0\server\network\ADMIN\tnsnames.ora
    3. I don't have that file in the folder but I suspect it might be created on a first successful launch of the DBWithout an spfile you need to use a pfile, then create a pfile from spfile. But there should be one at C:\oraclexe\app\oracle\product\11.2.0\server\dbs\SPFILEXE.ORA (if you used default installation).
    >
    Other than that I didn't find anything helpful in logs (or don't know where else to look), nor on sites.
    I did have WAMP installed at a point (uninstalled it) but if it were to conflict I guess SETUP would tell me (since the XE license doesn't let you use 2 DBs at the same time)Is that some mysql thing? That shouldn't interfere. It's only installing multiple Oracle products related some what to the Oracle database that can be a problem, and normally isn't with the more recent stuff.
    I swear to god this is killing my neurons :(When you find the solution, you will slap your forehead.
    Edited by: jgarry on Oct 6, 2011 9:36 AM

  • Cannot connect azure file using IIS global.asax

    We have been using Azure File with IIS 7.5. We use, in global.asax, a script that mounts azure file to a specific drive allowing our aspx application working with smb files.
    It happens sometimes, when VM restarts, that mount operation fails showing the following error
    [Exception: WNetAddConnection2 failed with error 1312]
    MountShare.Mount(String shareName, String driveLetterAndColon, String username, String password) in e:\Siti\Condomini\CReport\App_Code\MountShare.cs:53
    ASP.global_asax.Application_Start(Object sender, EventArgs e) in e:\Siti\Condomini\CReport\Global.asax:14
    Global.asax contains these lines of code
        void Application_Start(object sender, EventArgs e)
            String AzureUrl = ConfigurationManager.AppSettings["AzureUrl"];
            String AzureUser = ConfigurationManager.AppSettings["AzureUser"];
            String AzurePassword = ConfigurationManager.AppSettings["AzurePassword"];
            String AzureLocalLetterDrive = ConfigurationManager.AppSettings["AzureLocalLetterDrive"];
            if (!string.IsNullOrWhiteSpace(AzureUrl) && !string.IsNullOrWhiteSpace(AzureUser) && !string.IsNullOrWhiteSpace(AzurePassword) && !string.IsNullOrWhiteSpace(AzureLocalLetterDrive))
                MountShare.Mount(AzureUrl, AzureLocalLetterDrive, AzureUser, AzurePassword);
    How can i fix these error that happens randomly after VM restarts ?
    Thanks
    Francesco

    Hi Francesco,
    You can create a persistent connection to an Azure File share so that after a VM reboots, the share will be available for your scheduled tasks, applications, or logged in user.
    You could refer the following link for details on how to persist connection on IaaS VMs and Windows PaaS roles.
    http://blogs.msdn.com/b/windowsazurestorage/archive/2014/05/27/persisting-connections-to-microsoft-azure-files.aspx
    Also error 1312 means 'A specified logon session does not exist. It may already have been terminated.', You might consider the code available in the blog to persist connections.
    Regards,
    Malar.

  • Cannot connect to DB2 with new v7.1.1

    Our DB2 has just been updated from version 6 to 7.1. Now, when I try to connect I get this error:
    SQLException: COM.ibm.db2.jdbc.DB2Exception: [IBM][CLI Driver] SQL0332N There is no available conversion for the source code page "1208 UNKNOWN 3" to the target code page "". Reason Code "". SQLSTATE=57017
    Error Code: -332
    Do I need a new driver? I don't think so, because the docs say it works with version 7.1.
    Any clues as to what I need to do to fix this?

    FYI: I believe we've made some ground on this one. We strongly feel it is a character conversion problem. The DB2 docs say that when a client or application accessing a database is running in a code page that is different from the code page of the database, then a character conversion will occur. However, does anyone know how to solve this problem. Do we have to install something on the DB2 side that will interpret the code pages of JDBC?

  • MBP shut off by itself, cannot connect after re-start

    Hi All,
    I'm writing because I know some wonderful person out there, will help this badgered father get his daughter back on line. Earlier this afternoon, my daughters MBP13 shut off all by itself (battery was fully charged). She was not able to get it restarted for 20 minutes. Finally upon re-start, all of the normal settings were missing. Such as the date and the time. It was re-set to 2008. Since then, she has not been able to get on to our home wireless network. The others (1 iMac and 1 MBP) are all fine. I did not have an appointment, but I went to the local Genius Bar. They were too busy to help me, but allowed me to start the MBP and checked it quickly on the stores' network. It found the network and signed on fine, so I know it's not a hardware related issue. I've gone through all of the diagnostics and help screens and cannot get it back on line. I've also re-started my Verizon FIOS router three times, but all without any luck. Can anyone help me get this back on line and peace back into my home?
    cheers,
    Jack

    Try this: Shut down your computer, take out the battery and power cord and pres the power button for about 10 seconds. After that, reseat the battery (and power cord if necessary) and turn on the computer whilst holding down Command-Option-P-R. Wait until you hear the startup chime AT LEAST once after the initial chime. What you just did is a reset of SMC and pram.
    After that calibrate the battery by fully charging it, use the computer on power supply for at least 2 hours. Then unplug it and use it off battery power until it completely runs down. Let it stand for at least 5 hours and plug it back in.
    Hope this helps

  • Cannot Connect to Wi-Fi, New to G4

    Hi, I'm trying to resolve an issue with an old PowerBook G4 15" Alu. I can detect networks and input a password and even attempt to connect, but the results that are generated are always the same: Unable to connect.
    My question is, do these older PowerBook G4's NEED a Wi-Fi card to receive internet? I'm not sure if this model even comes with built-in Wifi antenna or is compatible with a non-Airport router. This PowerBook was purchased as is, computer and charger. I do not have any documents for this computer.
    If anyone can please help or shed light on this Wi-Fi matter I would greatly appreciate it. Thanks!

    TypeRLover wrote:
    My question is, do these older PowerBook G4's NEED a Wi-Fi card to receive internet? I'm not sure if this model even comes with built-in Wifi antenna or is compatible with a non-Airport router. This PowerBook was purchased as is, computer and charger. I do not have any documents for this computer.
    Q. Does it come with an antenna/card?
    A. Yes, because you said you can detect networks. If it didn't have a card, Airport would not be available to even turn on in the first place. On some early PowerBooks the Airport card was an option, but it was later built in.
    Q. Is it compatible with a non-Airport router?
    A. Yes, all Airport cards work with non-Apple routers, because they all use the industry 802.11 wifi standard. In fact that should be part of your testing. If you go to a Starbucks or a McDonalds that has free wifi, can you get on their network? If so, your problem may be related to your router settings, especially security settings that may be locking out your recently acquired PowerBook.
    You said you only got the computer and charger. Does this mean you never reinstalled the system? Was it reset to factory, or did it have the former user's data in it? Because if the computer was set up for their router, the settings may be inappropriate for your own network and you should reset the network settings on the PowerBook.
    For example, if the former owner set a manual IP address for the PowerBook (like 192.168.0.25) but your router is set to DCHP from a different base IP address (like 192.168.1.1), you'll never connect until you change the network settings on the PowerBook.
    If you seriously suspect something wrong with the card, it is possible to use a non-Apple wifi card in the slot on the left side of your PowerBook, if the card has a Mac driver.

  • Cannot connect iphoto '08 to new Epson printer

    I recently bought a new Epson DX8400 printer replacing the old HP printer but when I try to print photos from iphoto it still looks to print using the old HP printer. I loaded the setup CD without any problem restarted the Mac all seemed fine until I tried to print any photos, there is a print manager for the Epson but it does not see the iphoto program.
    Please help before my wife and children ask to see the great quality photographs I promised with my new printer!
    Thanks Peter

    Welcome to the Apple Discussions. Go into the System/Print and Fax preference pane and remove the HP printer from the list of available printers in the small window. Make sure the Epson is listed i the window. If not click on the "+" button and select your Epson model in the windows that come up. Reboot and try again.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    Note: There's now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • When I restart I get a screen asking to restore the last sesion or start new, how do I set it to start new each time without being asked?

    When I close a session I close all the tabs first then exit out. The next time on I get an error screen telling me everything didn't close right and asking me if I wanted to restore the old tabs or start a new session. I am not interested in restoring the old tabs as I want to start a new session. If the old tabs come up I have to close them out anyway. How do I by pass that error screen and just restart a new session automatically going to my home page without all the extra tabs and without being bothered about it? Never had this problem with the older versions. Maybe I should go back to the older versions and forget about any updates. But I don't know how to do that.

    This can be a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    See:
    * http://kb.mozillazine.org/Session_Restore

Maybe you are looking for