Trouble with ASA9 database

Hi,
We've got an ASA9 database that started causing us some trouble yesterday. It appears to not allow any connections to be made to it. Doesn't give any return messages, it just hangs at the client level and never does anything. The service window looks normal. Says the server is started normally, as well as the sharedmemory link, namedpipes link and TCPIP link. Starts on the port and says that it is now accepting requests. Try to connect through our application, scjview, dbisql, dbvalid, etc. all just hang with no response. Go to stop the service, and it just hangs as well. Have to kill all of the processes.
Had IT get me the backup, and it had the same problem. Had to go back 3 days to get a backup that would actually start and allow connections. I ended up translating the log and applying the sql to the last good backup in order to get us running again. Ran dbvalid against the database and nothing was found to be wrong.
I'm concerned that there is something else going on. Has anyone seen anything similar? Any thoughts on what the issue could be?
Thanks!
John

Hi John,
Assuming you still have a copy of the database that hangs, could you try starting it with request level logging enabled?
dbsrv9 -z -zr ALL -zo C:\path\to\file.txt database.db
As well as connecting with a client log:
dbisql -c "UID=DBA;PWD=sql;ENG=database;LOG=C:\path\to\file2.txt"
Which operating system are you running the server on?
Thanks,
Mikel

Similar Messages

  • Trouble with access database online

    Hello everyone,
    I created an applet that simply inserts data into an access database and then prints it out on the screen the sql insert statement.
    I signed the applet so I can trust it so I wont get any security errors.
    When I upload it to the site it shows the correct insert statement because the primary key auto increments and displays on the screen. I don't get any SQLException errors or SecurityException errors so I assume it is working.
    When I download my database and look at it I dont see the data inserted into it. But when I see it in my browser it displays the insert statement with the primary key so I am really confused.
    I tried in internet explorer and firefox and made sure I cleared my cache. Is there any possible thing that I missed as to why it gets the auto-increment primary key and doesnt get caught in the try catch but when I look at the database I don't see anything.
    Any help would be great.
    Thanks

    Thanks for the advice but this does not really help
    my situation.
    Well it does in that it is not "advice" it is a statement of fact and so it does help you in that you shouldn't waste time pursuing that.
    The reason is, as you are already seeing, that when you update the Access database in your applet you are only actually updating the local copy (downloaded by the Applet) not the copy of the file on the server. So you can make all the changes you want but won't see them.
    I could send data through a url and then program an
    asp page to handle the database stuff.Yes that would be a better way all around.
    >
    If you cant help me with doing the sql in the appletIt's not that I can't help you. It's that is impossible. If you chose another database that was a server it would be possible.
    I mean I can help but I cannot do the impossible.
    can you help me on sending data through a url in a
    java applet.
    Yes. Use the HttpURLConnection class to do what you want. You can send it by GET (aka ASP Request.QueryString) or by POST (aka ASP Request.Form).
    This tutorial shows you how http://java.sun.com/docs/books/tutorial/networking/urls/index.html

  • Trouble with ADF portlet :) Connect Database

    Hi every body!
    Thank so much when you send time care to my trouble.
    When I deploy a simple ADF portlet without Connecting Database ==> It run :))
    After that, with Connecting Database and Create Bussiness Component from Table
    ==> It run but Result show in Portal: Could not get mark up ...
    I using Jdevelop 11g
    Thank again!

    OK

  • Trouble with database path (DSC)

    Hello,
    I use DSC and LabVIEW 2009 in my application, and I created programmatically Shared variables, which have to be logged in Citadel database. For that, I create a database with Create Database VI with a specified path , and afterwards I use Configure Process Log State VI to bind values from my shared variables to the database.
    The problem I have is the following: the database is created as expected in the correct path ( I have a folder created, with some .cdih , .cdin file), but after, on MAX, when I want to see trendings, i notice my database appears under Citadel 5, but nothing is inside. Actually, all my shared var are log in Default_database, the default database of DSC...Moreover, I have this event in Event Viewer (see attached image), which says
     I don't understand why i have such error...The problem is the final purpose is to create a standalone app with installer, and clients want to choose where they store their data...
    thanks for your help
    Antoine

    Hi Antoine,
    could you please post you code and your LabVIEW Version?
    Kind regards
    Carsten

  • Trouble with OR in where clause

    Hello,
    I'm having trouble with execution speed. The problem seems to be with using OR in my where clause.
    Here's the meat of the function where i_pledge_number is an input parm:
    BEGIN
    SELECT /*+ INDEX (pp) */ SUM(pp.prim_pledge_amount)
    INTO return_amount
    FROM
    primary_pledge pp
    WHERE
    -- Get total if multiple allocations
    pp.prim_pledge_number IN
    (SELECT pc.pledge_number
    FROM pledge_codes pc
    WHERE pc.pledge_code_type = 'M'
    AND pc.pledge_code = 'AC'
    AND lpad(pc.pledge_comment,10,'0') = i_pledge_number)
    -- Get total if single allocation
    OR pp.prim_pledge_number = i_pledge_number;
    RETURN return_amount;
    END;
    If I comment out either half of the OR statement (either the subquery or the pp.prim_pledge_number = i_pledge_number half) the function returns a value in .02 seconds. If I leave the OR in, it takes 2.764 seconds to execute?? Can someone please show me a better way (faster) to do this? I tried using nvl() around the subquery but couldn't get it to compile.
    Thanks

    These things are difficult to diagnose remotely, but here is something you can try....
    SELECT */ SUM(pp.prim_pledge_amount)
    INTO return_amount
    FROM   primary_pledge pp
    WHERE  pp.prim_pledge_number IN (SELECT pc.pledge_number
                                     FROM pledge_codes pc
                                     WHERE pc.pledge_code_type = 'M'
                                     AND pc.pledge_code = 'AC'
                                     AND lpad(pc.pledge_comment,10,'0') = i_pledge_number
    UNION ALL
    SELECT i_pledge_number FROM dual)
       RETURN return_amount;
    END;If that doesn't do anything (and it might well not) there are a large number of different ways we can recast this query. To save us further guessing please give us more details: execution plans, database version number, volumetrics.
    Cheers, APC

  • Having trouble with persist

    I have created a simple application where a user can order items and then i'm saving the order and all the items (details of order) to the dataBase.
    i'm using jdk1.5 with jboss and mySql (also hibernate).
    i'm having troubles with saving the details of the order, the relevant code is-
    order entity -
    @Entity
    public class Orders implements Serializable
        @Id @GeneratedValue
        private long orderId;                    //generated in db
        private String name;
       public Orders(String userName)
            this.userName=userName;
        public long getOrderId() { return orderId; }
        //getters and setters...
    detailsOfOrder entity -
    @Entity
    public class DetailsOfOrders implements Serializable
    @Id
    private long orderId;
    @Id
    private int productId;
    private int quantity;
    public DetailsOfOrders(long orderId,int productId)
         this.productId=productId;
         this.orderId=orderId;
    public long getOrderId() { return orderId; }
    public int getProductId() { return productId; }
    //getters and setters...
    }session bean (order method) -
            List<SCItem> listOfItems;                         //SCItem is a regular class
            Orders order=new Orders(userName);
            manager.persist(order);
            long orderId=order.getOrderId();   //get order id after persisting
            for(SCItem item : listOfItems)    //save details of order
             DetailsOfOrders detail=new DetailsOfOrders(orderId,"1");
             manager.persist(detail);                                                   //exception occures here
           }when i'm trying to make an order i'm getting the exception-
    javax.transaction.RollbackException: [com.arjuna.ats.internal.jta.transaction.arjunacore.commitwhenaborted] [com.arjuna.ats.internal.jta.transaction.arjunacore.commitwhenaborted] Can't commit because the transaction is in aborted state
    what is the problem?
    thanks in advanced.

    yes, the entity classes have no-arg constructors (i just tried to write it shortly here...)
    about the other thing , well i'm sorry , the right code is-
    session bean (order method) -
       List<SCItem> listOfItems;                         //SCItem is a regular class
       Orders order=new Orders(userName);
       manager.persist(order);
       long orderId=order.getOrderId();   //get order id after persisting
       for(SCItem item : listOfItems)    //save details of order
         DetailsOfOrders detail=new DetailsOfOrders(orderId,item.getProductId());
         manager.persist(detail);                                                   //exception occures here
         }what else could it be?

  • I am having trouble with a form, won't tab to 2nd page...

    I am having trouble with a form I created in Acrobat Pro 10. I created tabs etc, they all work wonderfully in Adobe, but once I uploaded it onto the web-based program for other users, the tabs only work  on page 1, I have to click on page 2 to keep tabbing through.  It won't tab into it.  Any advise?  Also, when the users open it it opens in the web.

    1. The library is separate from the application, so re-installing shouldn't cause an issue with the actual photos. But it would be foolhardy in the extreme to do anything without first backing up.
    2. Often these issues are caused by a damaged Library, so reinstalling doesn't change much.
    FWIW
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.
    Alternative approach:
    Option 1
    Back Up and try rebuild the library: hold down the command and option (or alt) keys while launching iPhoto. Use the resulting dialogue to rebuild. Choose to Rebuild iPhoto Library Database from automatic backup.
    If that fails:
    Option 2
    Download iPhoto Library Manager and use its rebuild function. This will create a new library based on data in the albumdata.xml file. Not everything will be brought over - no slideshows, books or calendars, for instance - but it should get all your albums and keywords back.
    Because this process creates an entirely new library and leaves your old one untouched, it is non-destructive, and if you're not happy with the results you can simply return to your old one. .
    Regards
    TD

  • Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download

    Current system info:
    Windows 7 (64 bit)
    Internet Explorer 9 (using 32 bit for downloading FP)
    I upgraded to 10.3.183.7 and immediately noticed my laptop unable to display/use Flash features (facebook games, online flyers, video, etc)
    I uninstalled and installed multiple times using both Control Panel and the uninstaller provided on Adobe help page. I restarted my laptop after every install and after every uninstall. I made sure to use 32-bit IE each time.
    At first Programs (and Control Panel) showed FP as installed but now it doesn't register as installed at all - aside from the installer program telling me it is installed.
    After installing, on the Adobe 'test' page instead of the spinning F I see a box with an 'x' in the top left hand corner (like an image/graphic that won't load).
    I tried the beta FP 11 but same problem. It at least showed up on my programs list. I uninstalled it and am back to FP 10.3
    I have been on the help page trying anything I can find to get it working but no luck so far. Any advice for this issue?
    Thanks,
    Jill

    FP does appear in my Control Panel for uninstalling but does not appear in my Programs list. I downloaded Google Chrome and FP seems to work with it (though I'm not a big fan of the browser)So, it would appear to be an IE issue? If you still want the install log:=O====== M/10.2.152.26 2011-04-11+18-41-26.195 ========
    0000 00000010 "C:\SWSetup\AFlash\Setup.exe"  -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10m.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10m_ActiveX.dll
    =X====== M/10.2.152.26 2011-04-1118-41-27.490 =========O====== M/10.3.183.7 2011-09-0701-16-25.406 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0701-16-28.438 =========O====== M/10.3.183.7 2011-09-0801-30-39.351 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0801-30-39.737 =========O====== M/10.3.183.7 2011-09-0801-47-26.279 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0801-47-30.257 =========O====== M/10.3.183.7 2011-09-0802-10-04.958 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0802-10-05.672 =========O====== M/10.3.183.7 2011-09-0802-10-09.789 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0802-10-14.574 =========O====== M/10.3.183.7 2011-09-0901-14-55.652 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001039
    =X====== M/10.3.183.7 2011-09-0901-15-53.743 =========O====== M/10.3.183.7 2011-09-0901-17-38.865 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0901-17-43.904 =========O====== M/10.3.183.7 2011-09-0901-39-18.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0901-39-21.150 =========O====== M/10.3.183.7 2011-09-0901-50-41.972 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0901-50-42.376 =========O====== M/10.3.183.7 2011-09-0901-51-01.582 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0901-51-05.961 =========O====== M/10.3.183.7 2011-09-0902-17-44.951 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe" -maintain activex
    0001 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0002 00000018
    0003 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0004 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0005 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0006 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0007 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0008 00001021
    0009 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0010 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0011 00001015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe 5
    0012 00000012
    =X====== M/10.3.183.7 2011-09-0902-17-50.193 =========O====== M/10.3.183.7 2011-09-0920-41-16.435 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-0920-41-19.293 =========O====== M/10.3.183.7 2011-09-0920-55-06.571 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0920-55-06.966 =========O====== M/10.3.183.7 2011-09-0920-56-08.701 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-0920-56-12.629 =========O====== M/10.3.183.7 2011-09-0921-08-02.144 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-0921-08-02.579 =========O====== M/11.0.1.129 2011-09-0921-11-39.470 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\F393.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/11.0 2
    0002 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-11-42.519 =========O====== M/11.0.1.129 2011-09-0921-17-05.196 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\ED5C.dir\InstallFlashPlayer.exe" -install -skipARPEntry -iv 1
    0001 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0002 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0003 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash11b.ocx
    0004 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.exe
    0005 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil11b_ActiveX.dll
    0006 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0007 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/11.0.1.129 2011-09-0921-17-09.205 =========O====== M/10.3.183.7 2011-09-0922-04-01.333 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-04-01.640 =========O====== M/11.0.1.129 2011-09-0922-06-14.485 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\3BB9.dir\InstallFlashPlayer.exe" -uninstall activex
    0001 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0005 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0006 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0007 00001021
    0008 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    =X====== M/11.0.1.129 2011-09-0922-06-14.921 =========O====== M/10.3.183.7 2011-09-0922-07-17.275 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-07-17.565 =========O====== M/10.3.183.7 2011-09-0922-22-52.408 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-22-52.746 =========O====== M/10.3.183.7 2011-09-0922-24-17.263 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-0922-24-18.248 =========O====== M/10.3.183.7 2011-09-1012-35-47.416 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-35-47.727 =========O====== M/10.3.183.7 2011-09-1012-38-11.063 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-38-11.400 =========O====== M/10.3.183.7 2011-09-1012-49-48.987 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001013
    =X====== M/10.3.183.7 2011-09-1012-49-49.311 =========O====== M/10.3.183.7 2011-09-1012-55-05.778 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001018
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00001019
    0007 00001020
    0008 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0009 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0010 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0011 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0012 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0013 00001021
    0014 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0015 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0017 00001048
    0018 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0019 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0020 00001018
    0021 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0022 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0023 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0024 00001019
    0025 00001020
    0026 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0027 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0028 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0029 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0030 00001021
    0031 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0032 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0033 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0034 00001048
    0035 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0036 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0037 00001036 Software\Opera Software/Last CommandLine 2
    0038 00001036 Software\Opera Software/Last CommandLine 2
    0039 00001036 Software\Opera Software/Plugin Path 2
    0040 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1012-55-11.581 =========O====== M/10.3.183.7 2011-09-1013-00-20.739 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0004 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0005 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0006 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0007 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0008 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-00-23.216 =========O====== M/10.3.183.7 2011-09-1013-23-41.978 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    0001 00001039
    =X====== M/10.3.183.7 2011-09-1013-23-56.159 =========O====== M/10.3.183.7 2011-09-1013-32-02.098 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1013-32-02.525 =========O====== M/10.3.183.7 2011-09-1013-32-20.324 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1013-32-23.998 =========O====== M/10.3.183.7 2011-09-1013-33-17.451 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-33-20.571 =========O====== M/10.3.183.7 2011-09-1013-38-14.133 ========
    0000 00000010 "C:\Users\Jill\Downloads\uninstall_flash_player.exe" -force 
    0001 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0002 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0003 00001037 Software\Macromedia\FlashPlayerActiveX/ 2
    0004 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0005 00001037 Software\Microsoft\Code Store Database\Distribution Units\{D27CDB6E-AE6D-11CF-96B8-444553540000}/ 2
    0006 00001021
    0007 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0008 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0009 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0010 00001018
    0011 00001036 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0012 00001037 SOFTWARE\MozillaPlugins\@adobe.com/FlashPlayer/ 2
    0013 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player Plugin/ 2
    0014 00001019
    0015 00001020
    0016 00001037 Software\Microsoft\Windows\CurrentVersion\RunOnce/FlashPlayerUpdate 2
    0017 00001037 Software\Macromedia\FlashPlayerPlugin/ 2
    0018 00001037 Software\Macromedia\FlashPlayer/FlashPlayerVersion 2
    0019 00001037 Software\Macromedia\FlashPlayer/SwfInstall 2
    0020 00001021
    0021 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0022 00001036 Software\Macromedia\FlashPlayerPlugin/PlayerPath 2
    0023 00001037 Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\System.ControlPanel.Category/C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 2
    0024 00001048
    0025 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0026 00001036 Software\Mozilla\Firefox\extensions/Plugins 2
    0027 00001036 Software\Opera Software/Last CommandLine 2
    0028 00001036 Software\Opera Software/Last CommandLine 2
    0029 00001036 Software\Opera Software/Plugin Path 2
    0030 00001036 Software\Opera Software/Plugin Path 2
    =X====== M/10.3.183.7 2011-09-1013-38-23.680 =========O====== M/10.3.183.7 2011-09-1013-51-14.222 ========
    0000 00000010 "C:\Windows\Downloaded Program Files\FP_AX_CAB_INSTALLER.exe" /RegServer
    0001 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0002 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0003 00001036 Software\Macromedia\FlashPlayerActiveX/PlayerPath 2
    0004 00001036 Software\Macromedia\FlashPlayer\SafeVersions/10.0 2
    0005 00001037 SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Adobe Flash Player ActiveX/ 2
    0006 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0007 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0008 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0009 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0010 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    =X====== M/10.3.183.7 2011-09-1013-51-23.941 =========O====== M/10.3.183.7 2011-09-1013-54-43.664 ========
    0000 00000010 "C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe"
    =X====== M/10.3.183.7 2011-09-1013-54-46.332 =========O====== M/10.3.183.7 2011-09-1014-01-14.234 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-01-14.695 =========O====== M/10.3.183.7 2011-09-1014-01-50.253 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-01-52.831 =========O====== M/10.3.183.7 2011-09-1014-09-42.630 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00001041
    =X====== M/10.3.183.7 2011-09-1014-09-43.028 =========O====== M/10.3.183.7 2011-09-1014-10-52.113 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-10-54.949 =========O====== M/10.3.183.7 2011-09-1014-21-57.215 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1014-22-13.173 =========O====== M/10.3.183.7 2011-09-1018-08-14.860 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Microsoft\Windows\Temporary Internet Files\Content.IE5\5MC4DY1T\install_flash_player_10_active_x.exe"
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-1018-08-28.651 =========O====== M/10.3.183.7 2011-09-1018-18-04.868 ========
    0000 00000010 "C:\Users\Jill\AppData\Local\Temp\install_flash_player_ax.exe" -dlm -install
    0001 00000013 C:\Windows\SysWOW64\Macromed\Flash\Flash10w.ocx
    0002 00000015 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.exe
    0003 00000016 C:\Windows\SysWOW64\Macromed\Flash\FlashUtil10w_ActiveX.dll
    0004 00000019 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0005 00000020 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl
    0006 00001024 C:\Windows\SysWOW64\FlashPlayerCPLApp.cpl 183
    =X====== M/10.3.183.7 2011-09-10+18-18-07.420 ========
    > Date: Sun, 11 Sep 2011 07:46:49 -0600
    From: [email protected]
    To: [email protected]
    Subject: Trouble with FP 10.3.183.7 upgrade - wasn't working and now doesn't download
    function(){return A.apply(null,[this].concat($A(arguments)))}
    >

  • OC4J: Troubles with characters in Reports 9i and JSP

    We are having troubles with especial characters in OC4J. Those problems appear in JSP's and Reports.
    Some information about it:
    - the especial characters in spanish are replaced by strange characters (2 chars for every especial char).
    - this happens with strings from ApplicationResources.properties (we use Struts framework) and NOT with those chars read from database via JDBC.
    - the problem doesn't happen in JDeveloper. It happens when we deploy the application to iAS 9i R2. With reports, it happens both from RWBuilder and local OC4J + RWServlet
    - When we used iAS R1 core version this didn't happen. When we changed to iAS R2 full installation (to be able to use Reports Server) it began to happen.
    Any help about it ?
    Thanks

    Hi Pozo,
    Have you got the solution for the problem specified. Even I'm facing the same problem with Arabic characters.
    Pl. let me know if you've got the solution.
    Thanks,
    Vinod.

  • How can I interact with a Database?

    I've got a project I'm working on in my Java class, and I can't find out how to make the program interact with a database. I was wondering if anybody here could help me out at all? My partners and I have already gotten most of the program figured out (but not programmed), and this is giving us a little bit of trouble. Our books don't have this information, and our teacher told us to check here, so here I am. Any help would be appreciated. Thanks.

    You need to get a jdbc driver for your database. Your vendor should provide you with one. If not then you can try looking for free implementations of that particular database.
    This jdbc driver is used by your program to execute sql statements in the database itself, removing the need for you to handle all the nitty gritty stuff. Kind of like ODBC.
    Like the earlier post pointed out, the tutorials is a good place to look at code samples
    I've got a project I'm working on in my Java class,
    and I can't find out how to make the program interact
    with a database. I was wondering if anybody here
    could help me out at all? My partners and I have
    already gotten most of the program figured out (but
    not programmed), and this is giving us a little bit of
    trouble. Our books don't have this information, and
    our teacher told us to check here, so here I am. Any
    help would be appreciated. Thanks.

  • In Trouble with the Oracle JDBC Driver version - 10.1.0.5.0

    Hi !
    Without any problems i'm using the Oracle JDBC Driver version - 10.1.0.3.0 to access to the
    Oracle database (Oracle Database 10g Release 10.2.0.1.0 - 64bit Production).
    But exchanging the JDBC Driver 10.1.0.3.0 to 10.1.0.5.0 brings up the following problem:
    the statement
         con.prepareStatement(sql, resultSetType, resultSetConcurrency, resultSetHoldability)
         (with parameters resultSetType = 1003, resultSetConcurrency = 1007, resultSetHoldability= 1)
    returns null !
    while using the Oracle JDBC Driver version - 10.1.0.3.0 the statement (with same parameters)
    returns a correct PreparedStatement.
    Every hint or idea is welcome.
    Best regards,
    Claus

    Duplicate post:
    In Trouble with the Oracle JDBC Driver version - 10.1.0.5.0
    Claus,
    Pardon me if I am stating the obvious, but why don't you use the 10.2 JDBC driver with your 10.2 database? The driver is part of the database distribution. Otherwise, you can download the driver from the OTN Web site.
    Good Luck,
    Avi.

  • Essbase Studio - Failed to Establish Connection With SQL Database Server

    Hi all,
    I am new to Hyperion and am having trouble deploying what seems a simple cube in Essbase Studio.
    My environment is Windows 2003, EPM 11.1.1.2, SQL Server 2000.
    I have the following two issues which may be related.
    1. The EPM System Diagnostic tool says that Hyperion Foundation cannot connect to the SQL database.
    Error:
    Failed: Connection to database
    Error: java.net.UnknownHostException: <server name: <server name>
    Recommended Action:
    Every other EPM application is able to connect to the database. I have tried re-configuring Foundation Services and checking the config files and nothing looks wrong. I would appreciate advice on how to fix this.
    2 In Essbase Studio, I was able to connect to the database where the source data is, build the minischema and create dimensions and measures. But when I run the cube deployment wizard I get the error:
    Message: Failed to deploy Essbase cube
    Caused By: Failed to build Essbase cube dimension: (Time)
    Caused By: Cannot incremental build. Essbase Error(1021001): Failed to Establish Connection With SQL Database Server. See log for more information
    …ODBC Layer Error: [08001] ==> [[Microsoft][ODBC SQL Server Driver][TCP/IP Sockets]SQL Server does not exist or access denied.]
    I have checked the DSN as well as the connections set up within Studio, and they are all able to connect to the database. I am using the admin user for the Essbase server and have created a different user for the databases where the data resides and the shared services database. I tried using the same user all the way through and this didn’t help.
    Can you please advise what else I can check or change to resolve this issue.
    Also, can you work in EAS with cubes that are created in Studio? I tried looking at it and I got an error that the rule file couldn’t be accessed because it was created in Studio.
    After the above failures, I tried creating a cube in EIS, with mixed success. I have been able to load the members and data without errors. But when I try to view the data in the cube, I am seeing field names for the measures instead of the data itself.
    ...Definitely more questions than answers at this stage of my learning.
    Regards
    Michelle

    Michelle,
    I don't know if you found an answer to you question after so many months but I was hoping I could be helpful.
    The issue you are experience happens often when the dimension that you are getting an error on, in this case TIME, is built from a snowflake lineage and there is a bad foreign key reference. This dimension is most like high-up in your outline build process for Essbase Studio and this prevents the build from happening usually early on.
    Check your logs also. They are in Hyperion > Products > logs > essbase > essbasestudio.
    You can also make your logs more verbose by setting a configuration variable in the essbase studio server.properties file but that should only be used for debugging as it really saps performance.
    And, yes, you can of course edit an Essbase Studio deployed cube in EAS. However, any changes you make to the cube in EAS are subject to being wiped-out upon the next Essbase Studio deployment of that Applicaion/Database combo.
    If you want to provide more detail, screenshots, etc. I would be glad to help where I can.
    Cheers,
    Christian
    http://www.artofbi.com

  • Still trouble with getting a free version of OS X Lion

    I have still some trouble with my free version (old threat here). The Database do not recognize the serial ID of my Macbook. Next I tried to sent a copy of my sales recipt, so I am still waiting of a reaction. Does somebody know how long it takes or if there has been some kind of mistake? Thanks for help!

    Running Lion 10.7.5 is my computer compatible to upgrade to Mavericks?  Any suggestions?
    The system (computer) requirements for Mavericks are posted on the web site. If your computer will handle it, you can update directly from OS X 10.7.
    Barry

  • Trouble with UTF-8 and PHP-OCI

    Hi there!
    I'm having some serious trouble with UTF-8. I just tried to insert a lambda into an NCLOB column in one of my databases and it was converted to an inverted question mark. I have verified that the string reaches my PHP script correctly encoded. Also selecting RAWTOHEX(column) in SQL Developer shows, that the inverted question mark is already stored in the column. So the problem must be somewhere between PHP-OCI and the database. Inserting a lambda via SQL developer works. I can also correctly fetch it via PHP.
    I'm using the latest PHP-OCI (2.0.8). v$version says "Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production".
    The database is fairly old and uses WE8MSWIN1252 as the character set and AL16UTF16 as the NCHAR character set. Hence I'm using NCLOB instead of CLOB. However, I connect to the database with AL32UTF8, since my app is running in UTF-8. I was under the impression that this would result in an automatic conversion from UTF-8 to UTF-16 when inserting into NCLOB columns, but apperently this is not the case. It looks like there is some sort of double conversion, first UTF-8 to WE8MSWIN1252 and then to UTF-16, because some non-ASCII characters like ä (a umlaut) get correctly converted from UTF-8 to UTF-16.
    Any ideas? I'm at a loss here. Thanks in advance.

    PHP OCI8 doesn't support NCLOB or NVARCHAR2.
    See NCLOB support in OCI8

  • Having trouble with imports never finishing

    I am having trouble with imports that never finished. It is almost like the pictures are stuck on one image. the only way to get out of Iphoto is to force quit. The next time I open, there are a number of images that still need to be imported, but the import never finishes and seems to stop at the same image. When I go to close down I get the message that Photos are being imported to the library.
    Anyone have any suggestions.
    Thanks

    Photo:
    Welcome to the Apple Discussions. Check out your iPhoto library and make sure all photos are viewable and there. Force quitting when iPhoto is working can corrupt the database file, Library6.iPhoto. Make a backup copy of it and save in another folder.
    First make a backup copy of your iPhoto Library folder. Now download and run BatChmod on the iPhoto Library folder with the settings shown here, substituting your account name for mine. You can either type in the path to the folder or just drag the folder into that field. Open iPhoto and see if it will work OK.
    If not, launch iPhoto with the Command+Option keys depressed and follow the instructions to rebuild the library. Select all options.
    Lastly use iPhoto Library Manager to rebuild the library. Here's how:
    Using iPhoto Library Manager to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your User/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File->Rebuild Library menu option
    In the next window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: It can take some time to create the new library if you have a lot of photos. One user reported that with a library of about 5,000 images it took about 12 hours so plan ahead.
    Do you Twango?

Maybe you are looking for