Can somebody explain why Captivate 8 still only runs with the unsafe Java SE-6 instead of Java 8?

On the Oracle site itself the use of Java 6 is unrecommended because of safety conditions. What is Adobe doing on this?

John,
I'm very happy to report that the importation of the 10.1.3.6.8 KM fixed it! Thank you, again, for providing leadership on ODI/EPM. I found the Support KM that said to pull out the 10.1.3.6.8 jar files but not a word about the KM. Perhaps they should more closely read your blog? :)
I was not looking forward to, at all, a installation of 11.1.1.3. You have a good idea of my utter ineptitude wrt installs -- yeah, I get them working, sort of, eventually, but oh the pain. At least it's up in the cloud so I could just spawn a new clean 11.1.2.1 non-ODI environment, but that would be two days of my life consumed.
I may still go with the MaxL approach to load the dimensions -- the more I think about the way ODI does an Essbase data and dim load, the less I'm impressed. I see:
1) A SQL to text file conversion. Depending on the dimension size, there could be a hit on performance. Not really a big deal, but odd for sure.
2) The inability to do a suppress verification when loading multiple dimensions (ironically, you can't do that with SQL dimension rules, but you can with text; ODI extracts SQL to text but then doesn't have a way of joining together the loads like MaxL does.) on a big db.
3) The inability to load to buffers (or kick off loads to buffers in parallel).
Oh well, it's not like ODI can't fire this stuff off a command object tied to MaxL, I'm just sort of surprised it doesn't have that functionality natively. Maybe that's what Oracle figured everyone would do.
Thanks again for your help.
Regards,
Cameron Lackpour

Similar Messages

  • I purchased a song with $1.08 on my account. After a second iTunes told me that I had insufficient funds to purchase a $0.99 song. But the money had already been removed. Now i'm stuck with $0.04 left. Can Somebody explain why iTunes just stole from me?

    I just wanted to buy some Owl City! Can I please get some answers? I feel robbed...

    Then Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • I can't develop my pictures because they only open with the photoshop program

    So I finished editing my pictures and I am ready to send them to get them developed but when I try to open them outside the photoshop program, a PSD icon shows up on each one. The layers have been flattened and as far as I know everything is complete as far as the editing process goes so why can't I see them in my normal "My Pictures" folder?

    Use Photshop menu File>Scripts>Image Processor... Point the folder you have your PSD files in and have it save a folder of Jpg image files for your PSD files.  There is no need to flatten your work you can save a layered psd file as well as flat jpeg file for your layered documents.
    Thumbnails are not displayed for PSD files unless you have installed some Program on you Mac or PC to generate Thumbnails for PSD files.

  • Can anyone tell me how to turn on my computer without the fan going on? It now only runs with the fan on.

    my mac shut down without warning and then when I turned it back on the fan came on, now the fan will not go off. The computer is fine otherwise.
    Can someone please tell me what I can do when I re boot it to have the fan go off. It did this twice before when it was under apple care.Thanks so much!!!

    Bridget,
    Try doing a SMC reset, please read the instructions carefully. If it does not work the first time do it 2-3x.
    SMC RESET
    Shut down the computer.
    Unplug the computer's power cord and all peripherals.
    Press and hold the power button for 5 seconds.
    Release the power button.
    Attach the computers power cable.
    Press the power button to turn on the computer.
    PRAM RESET
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • I bought a bluetooth earpiece to be used with my ipad. But my ipad could not detect the earpiece. My friend's other tablet was able to detect my earpiece. Can somebody explain to me why my ipad could not detect my earpiece.

    I bought a bluetooth earpiece for my ipad but my ipad could not detect the earpiece. Can somebody explain why that is so? I used the piece on my friend's tablet and it could detect the earpiece meaning that it is working. Why my ipad could'n? I want to use it to listen to music or video. I could use the normal wire type earpiece but it is very cumbersome.

    I bought a bluetooth earpiece for my ipad but my ipad could not detect the earpiece. Can somebody explain why that is so? I used the piece on my friend's tablet and it could detect the earpiece meaning that it is working. Why my ipad could'n? I want to use it to listen to music or video. I could use the normal wire type earpiece but it is very cumbersome.

  • Can you explain why there is an error at the line   *pStart = *pEnd;

    //program should reverse a given string.
    //Original string is "SAW", and the same string reversed should be "WAS"
    #include <stdio.h>
    #import <string.h>
    int main (int argc, const char * argv[]) {
    // insert code here...
    printf("This program reverses a string without blank spaces.\n");
    char *sentenceArray = "SAW";
    char temp;
    char * pStart, *pEnd;
    pStart = sentenceArray;
    int stringLength = strlen(pStart);
    pEnd = (pStart + stringLength -1);
    printf("\nOriginal sentenceString is: %s", pStart);
    printf("\naddress of pStart:%lu, value: %c", pStart, *pStart);//make sure pointer is at the start
    printf("\naddress of pEnd:%lu, value: %c", pEnd, *pEnd);//ensures pointer is at the end
    while (pStart < pEnd)
    temp = *pStart;
    *pStart = *pEnd;//can somebody explain why this is an error? Thank you.
    *pEnd = temp;
    ++pStart;
    --pEnd;
    printf("\nReversed sentenceString is: %s", sentenceArray);
    return 0;
    //Thank you for your assistance!

    To expand on Keith's answer a bit:
    The problem, as you know, is with this line:
    *pStart = *pEnd;
    So, let's break this down a bit. This statement uses the dereference operator (the asterisk before each pointer) twice, and, as you probably know, the dereference operator allows you to access the value that a pointer points to, instead of accessing the value of the pointer itself (a memory address), which is what you would be accessing if you didn't use the dereference operator.
    So, on the right side of the assignment you have *pEnd, which is basically saying to take the value pointed to by the pointer pEnd and assign in to whatever is on the left side of the assignment, and that's where your problem is -- the left side of the assignment. The *pEnd part is fine, but the +*pStart =+ part is not fine. What you are saying here is to take whatever is on the right side of the assignment (*pEnd) and assign it to the value that is pointed to by the pointer pStart. And, as Keith mentioned, that's your problem. The value that is pointed to by pStart is a string literal ("SAW" here), and a string literal (like any literal) can not have anything assigned to it -- it can not be written to -- it is read-only, as Keith said. And like anything else read-only, this means that it can not be on the left side of an assignment statement, and that's where you have it, so, we get an error.
    The solution, as Keith gave, is to change pStart from a character pointer (which is what you have declared it as) to a character array, like so:
    char sentenceArray[32] = "SAW";
    This will fix your problem.
    Hope this helped some. Pointers are rough business, especially when it comes to character pointers and character arrays and whatnot, and I still don't understand them well by any means, so keep at it. Best of luck!

  • Why does my Panel not update with the new picture?

    Hi!
    I call the folowing panel from my main Window where on certain events I want to get the panel to display a different image. The problem is that the initial image stays on.
    import java.awt.*;
    import java.awt.image.*;
    public class Panel1 extends Panel {
         Image thebkg1;//image to display
    Panel1(Image ig){
         thebkg1=ig;
    }//end the constructor
    public void paint(Graphics g)
         g.drawImage(thebkg1,0,0,this);
    }//end paint
    public void update(Graphics g){
         paint(g);
    }//end update
    public void dImg(Image po){
         thebkg1=po;
         repaint();
    }//end dImg - gets called by the main Window in order to display a new image
    }//end Panel1 class
    Can somebody please let me know what is wrong with the code?
    Thank you

    public void dImg(Image po){
    thebkg1=po;
    validate()
    repaint();
    }

  • My acrobat pro will only run while the disc is in

    Why does Acrobat Pro only run when the disc is in?

    Hi johnheaney
    Please provide more details around the issue to help you further.
    -- What is the workflow?
    -- Are you trying to install acrobat or launch it?
    -- what is the version of acrobat that you're using?
    -- What is the OS ?
    ~Mandy

  • Can anyone explain why

    Can anyone explain why when I signed up to BT broadband some 4 years ago the estimated line speed I would get was estimated at 3.5Mbps (I was actually getting between 1 and 2 and every so often 2.5). Recently I've noticed a drop in speed, last week the estimated line speed was 1Mbps and now this week it is 0.512Mbps! Has this happened to anyone else?
    In the last few weeks I have been suffering from dropped connection but it now seems stable. I did the bt speedtest and got the following
    Download speedachieved during the test was - 463 Kbps
     For your connection, the acceptable range of speeds is 50-500 Kbps.
     Additional Information:
     Your DSL Connection Rate :1024 Kbps(DOWN-STREAM), 224 Kbps(UP-STREAM)
     IP Profile for your line is - 500 Kbps
    with following router stats
    ADSL 
    Type 
    <script type="text/javascript"></script> Interleave
    Status 
    <script type="text/javascript">// document.writeln("No Defect"); // </script> No Defect
    Downstream   
    Upstream
    Data rate (Kbps) 
    <script type="text/javascript">// document.writeln("1024"); // </script> 1024
    <script type="text/javascript">// document.writeln("224"); // </script> 224
    Noise margin (dB) 
    <script type="text/javascript">// document.writeln("7.4"); // </script> 7.4
    <script type="text/javascript">// document.writeln("6.0"); // </script> 6.0
    Output power (dBm) 
    <script type="text/javascript">// document.writeln("15.3"); // </script> 15.3
    <script type="text/javascript">// document.writeln("11.0"); // </script> 11.0
    Attenuation (dB) 
    <script type="text/javascript">// document.writeln("50.0"); // </script> 50.0
    <script type="text/javascript">// document.writeln("30.0"); // </script> 30.0
    Any advice would be appreciated.

    Yes for me and is happening to alot of people just check out threads on this forum.
    I have been told by Bt open reach who came out to me, it is Bt doing this, and showed me evidence on the laptop to his computer connected to my master socket. 
    I quote " People sitting in India  at computers messing about with peoples connections this is my 3rd callout to a property this week (week begining 14/06/2010) for the same problem you are fine this end its the exchange".
     He added that I should state what he said.  It may be worth hanging around for a moderator to contact you keep checking your thread, it would appear they are helpful, certainly alot less stressful than phoning India and chasing your tail. Still trying to get this sorted even got released only 1 month in 18month contract with no charge.  However you do have to follow there complaint procedure which is not easy.
    Hope you get sorted soon.
    Mortgage Advisor 2000-2008
    Green Energy Advisor 2008-2010
    Charity Health Care Provider Advisor 2010-
    I'm alright Jack....

  • Can somebody explain to me how java and xml are related?

    Hi guys
    im new to java and xml.Been reading a lot regarding java and don't seem to have a problem with it...
    the problem is the xml part...im doing a simple GUI project using swing(online store) and i have to convert it to xml
    I have absolutely NO IDEA why i must convert my java to xml and have no idea how to do that.I been reading on the net that xml is a exten~ markup language and it is better and useful.
    Can somebody explain to me in layman terms
    1)how is java and xml related in?
    2)why do ppl want to convert java to xml when they can just stick to java
    3)what is actually xml...
    4)Do i need a program to create xml like i need jcreater to create java application
    5)How do we actually convert?is there any links that you guys could tell me?
    thank you
    tomleo

    im new to java and xml.Been reading a lot regarding
    java and don't seem to have a problem with it...Okay.
    the problem is the xml part...im doing a simple GUI
    project using swing(online store) and i have to
    o convert it to xmlYou have to? So presumably somebody in a position of authority told you that?
    I have absolutely NO IDEA why i must convert my java
    to xml and have no idea how to do that.I been reading
    on the net that xml is a exten~ markup language and
    it is better and useful.I have no idea either (besides which, it doesn't make sense). But why ask us? Somebody told you to do that, ask them why.
    Sure, XML is useful. But it isn't a programming language so it can't be used as a substitute for Java.
    Can somebody explain to me in layman terms
    1)how is java and xml related in?They aren't related, except perhaps in that they are both used in computers.
    2)why do ppl want to convert java to xml when they
    can just stick to javaThey don't.
    3)what is actually xml...Start here for numerous definitions:
    http://www.google.ca/search?hl=en&lr=&oi=defmore&q=define:XML
    4)Do i need a program to create xml like i need
    jcreater to create java applicationNo, XML is just text. But then Java code is just text too.
    5)How do we actually convert?is there any links that
    you guys could tell me?You don't convert Java to XML. My guess is that because you don't know much about Java or XML, you have misinterpreted something that somebody told you.

  • I can't deauthorize all computers. It acts like it is doing it, but it never succeeds and no message returns saying why it didn't work. Can anyone explain why this is happening?

    I had to rebuild a computer. When I got iTunes installed and tried to sync my iPod it said that I had reached my limit of five computers. I logged into my iTunes account and went through the process for deauthorizing all computers. It comes up with a messaging asking if I am sure I want to deauthorize all computer and I select the "Deauthorize computers" button. It never comes back with a message one way or another whether it was successful. When I get out of that screen and come back in, it still shows that I have 5 authorized computers. I can't sync my iPod. The deauthorization is not working. Can anyone explain why this is happening?

    i guess no one helped? I'm having the same problem.
    When i press the button to deauthorize all computers, i get an error saying 'my account can't process this at this time. please try again later'

  • My wife, daughter and I have iPhones. We all have iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue except those that my wife sends to me. They are green. Can anyone explain why.

    My wife, daughter and I have iPhones with iMessage and Send Read Receipts activated. All the messages sent between the three of us are blue however, when my wife messages me, the message appears in green on her iPhone. Can anyone explain why.

    Because some kind of error occured.  This is only from her iPhone to your iPhone?  Whenever she sends a message to any other iPhone, it is sent as blue?  And when anyone else sends you a message from an iPhone, it sends as blue?

  • Can somebody explain how dunning & hold are linked toghter

    In the IMG, i can not find out How dunning are linked with academic hold in the student file and can somebody explain how dunning is linked with academic hold.
    I defined hold type in IMG but i can not find out how to link with hold type with dunnng ?.
    regards,
    jin dal

    Dear Song,
    Answers to your queries are given below:
    Sample function module:
    u2022 Is only used as a template for creating the standard function modules to be carried out
    u2022 Defines the interface that is binding for the standard function modules
    u2022 Describes in its documentation what the underlying event can be used for
    Standard function module:
    Name of application-specific standard function module that can be carried out at a given time.
    The standard function module interface corresponds to the sample function module, which it must match exactly.
    Active function module:
    Function module which is to be called for the specified event.
    If you don't want to take printout then use Functional module 340 as Event 0340 is called when all data is read for a dunning notice.
    You can use standard function module FMCA_DUNNING_READ_ITEMS_0340 for this purpose.
    Hope it will solve your query.
    Warm Regards
    Vinod Kumar

  • Can somebody explain how ABC analysis is done ?

    Hi Experts,
                         Can somebody explain how ABC analysis is done . If I use MC40 transaction there I have 4option but I can use either one of those . For second option , Usage value as number we can directly specify cost and accordingly system will classify materials In A, B and C category .
    I have question on 1st 3 rd and 4 th option . How system will classify materials if These option is used .
    Please explain with examples .
    Points will be rewarded .
    Thanks in advance !
    Neal

    Hi Sir ,
                     Thanks again , I would explain what I have understood .
    MC 40 . Option selected is Usage value with value put are 70 , 20 , and 10 .
    Suppose I have 3 mat in plant
                  Stock         Value
    1) X        100 kg      1000   ( for 1 kg from MM)
    2) Y          20 PC      2300 
    3) Z          30  lt      40000
    Now how would system classify these items ? Will it consider price or only consumption /qty ? or both ?
    Please explain with the same figures . Again the 90 days period you said , is it taken automatically ? because on this T code there is no option for entering time period .
    Neal

  • Can somebody explain what the Radix number is in Character

    I am looking for a good way of converting numbers to characters and I was reading up on the Character API, and they are using this term Radix, and I don't understand what that is all about. Can somebody explain what the radix is for?

    Wait a second I tried this code out and this is the output
    System.err.println(Character.digit('a', 10));and i get a -1, which means "not a valid digit in the specified radix.
    Then I tried other combinations like
    System.err.println(Character.digit('a', 11));
    System.err.println(Character.digit('b', 12));
    System.err.println(Character.digit('c', 13));and they all work, and but with only those sequential characters and numbers. So right now I am very confused as to what this radix, or this function serves. Can somebody explain?

Maybe you are looking for