Can anyone give an example of how to configure a DataSource using Mysql driver?

thanks in advance.

Hi Jack,
I don't have an answer for you -- just some suggestions.
Yes, I know it's a silly question, and please excuse me, but have
you looked at the documentation? I think this web page will be relevant:
http://otn.oracle.com/docs/products/ias/doc_library/90200doc_otn/web.902/a95879/ds.htm#1004903
The following web sites may also be useful (if you haven't already
looked at them, of-course :-)
http://www.orionserver.com
http://www.orionsupport.com
http://www.atlassian.com
http://www.elephantwalker.com
Good Luck,
Avi.

Similar Messages

  • Can anyone give me examples of replacement path with query?

    hi all,
    Can anyone give me examples of replacment path with query. if u have any docs pls send it across to my email id [email protected]
    thanxs
    hari

    Here is an example:
    Lets assume you have a characteristic( Say Project)  with about 30 attributes. now your requirement is to display all 30 attributes and about 10 keyfigures and another characteristic and it's attributes...
    If Project has about 25K projects in a Year,you will find its very difficult to diasply all the inofmation with one Query.(you may get disconnected from server after executing the query)..
    So firstly,create a Query1 only with Project and keyfigures.
    then create another Query2 only with Project and its attributes...here create a variable on Projeect with replacementpath and select the Query1.So you will have the Projects only from Query1.
    Create Query3 with Project and other chars.create one more variable on Project with replacementpath select Query1 result. So this Query also gets Projects from Query1...
    Now Query2 and Query3 get Projects from Query1 always...so you will have same Projects in your all 3 Queries..
    Now crate a workbook and insert 3 Queries.make sure you insert Query1 lastly.Since last inserted query will be executed first...
    You may use VBA or excel functionality if you want to see whole data in one sheet.
    Hope this helps.

  • Can anyone give me advice on how to deal with a corrupted itunes movie rental?

    Can anyone give me advice on how to deal with a corrupted itunes movie rental? I tried to download a movie and have been continuously trying to download it through the "check for available downloads" option, but it will not download.

    I'd report the problem to the iTunes Store.
    Log in to the Store. Click on "Account" in your Quick Links. When you're in your Account information screen, go down to Purchase History and click "See all".
    Find the item that is not downloading properly. If you can't see "Report a Problem" next to the entry, click the "Report a problem" button. Now click the "Report a Problem" link next to the item.
    (Not entirely sure what happens after you click that link, but fingers crossed it should be relatively straightforward.)

  • Can anyone give an example for 'PUT' method.

    Can anyone give an example for 'PUT' method ?
    Unable to find an examples for this in the forum
    Thanks
    Chandran

    Hi Chandran,
    Check link below:
    RESRful POST method
    Resource Templates : Strategy for dealing with PUT and POST
    HTH
    Zack

  • Need some help being able to stream movies.  I use to be able to  watch Netflicks - streaming.  However, I now cannot.  The message I get is:  plug in failure.  Can anyone give a tip on how to correct this?

    Up until recently I was able to watch Netflicks movies thru streaming.  I now received a error message:  plug in failure.  Can anyone suggest how I can correct this?

    I had the same problem.  I checked with Netflix and they told me to uninstall and reinstall the silverlight? plug in.  We went through several versions of this.  Long story short, nothing worked, but it DID run just fine on other users on the same machine.  a couple of months later, BAM it suddenly works perfectly again.  Netflix blames Apple, Apple blames netflix... who knows...
    Here's my advice: download the Silverlight or whatever it's called plugin and do the uninstall, then reinstall.  If that works, great!
    If not, make up a new user and see if netflix plays from that account.  If so, you have a workaround that is tedious, but at least lets you watch your movies!  Someday in the future,it might just start working again.

  • My i hpone 5 has frozen while doing update. Can anyone give any advice on how to rectify please

    I have tried doing latest update and phone now frozen is anyone able to advise on how to get phone working again. many thanks

    Reset the phone by holding the sleep and home button for about 10sec, until the Apple logo comes back again.
    If this does not help, connect in recovery mode and restore, explained here:
    If you can't update or restore your iOS device

  • Need Help !!!!! ( Urgent )I can't open any document in word after update the pages version, can anyone give me some suggestion how to do it ?

    PLSSSSSS hep me how to solve my problem ? Thank you very much !

    Pages creates .pages files that only it can open and there are several version of each of those.
    Menu > File > Export > Word .doc/docx
    Peter

  • When i connect my iphone 4,an error message saying usb device is malfunctioning is appearing...can anyone give me a solution for this?

    when i connect my iphone 4,an error message saying usb device is malfunctioning is appearing...can anyone give me a solution for this?i tried using on a different pc.but still get the same result..

    First thing i would try is to use another cable if available.

  • Can anyone give me a clear example that how can i make use the session ?

    Can anyone pls kindly tell me how can use the session to store the input from one JSP page and use it into another page? I had tried it but it doesn't work? It give me the null value for the session variable on second page....and can anyone one explain the meaning of those "request.getParameter()","session.setAttribute"?

    In short, request.getParameter() gets parameters set through HTTP request. This information is passed from client to server once and does not persist.
    Servlet/JSP containers allow you to create a session for each different connected user. Session (HttpSession) is maintained by the container and accepts attributes. When you say session.setAttribute("myAttr", myObject); you are storing myObject value under myAttr key in the session. This session object may persist among HTTP calls. Hence calling session.getAttribute("myAttr"); you get myObject within the same 'session'.
    See: http://java.sun.com/webservices/docs/1.0/tutorial/index.html

  • Can anyone give me an example for crm_svy_..._pai?

    Hi all, I have a survey, there are several questions. After I input the answers, I click the 'CHECK' button, I will check the answers. There will be different response to my answers. If the answer is not correct, I will post an error message.
    And I also need to retrieve data from tables to fill the blank.
    I am a beginner for CRM survey, can anyone help me? I create a FM:crm_svy_..._pai, and code in it right? But how can I do it?
    Can anyone give me an example for crm_svy_..._pai to do what I need?
    Many many thanks in advance!! 
    Heare is an example, but I don't its function and how does it work..
      read table lt_all_values into ls_value
                               with key answer_id = 'get_value'.
      if sy-subrc = 0.
        data: lt_values type crm_svy_api_string_t.
        append ls_value-value to lt_values.
        call method ir_survey_values->values_set
          exporting
            i_question_id = 'set_value'
            i_answer_id   = 'set_value'
            it_values     = lt_values.
      endif.

    Hi Yu,
    Could you tell how you solved your issue?
    Regards and tx in advance,
    Mon

  • Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes? Both my daughters have ipods, my wife has one

    Dear All
    Can anyone give me simple instructions on how to use more than one ipod on the same computer with itunes. My daughters have a different generation 'nano' each & my wife a 'shuffle'?
    Many thanks

    Click here for options.
    (69081)

  • I am trying to retrieve my photos from my I phone 4s because the screen is smashed. The pc that I use is windows not an apple computer. Can anyone give me step by step instructions how I can get my photos? Also, I don't have icloud.

    I am trying to retrieve my photos from my I phone 4s because the screen is smashed. The pc that I use is windows not an apple computer. Can anyone give me step by step instructions how I can get my photos? Also, I don't have icloud

    If the iPhone is still working and the photos are in the Camera Roll (i.e., taken on the iPhone) then, when you connect the iPhone to your PC, it should be recognized as a Camera and Windows should start AutoPlay.
    See this http://windows.microsoft.com/en-us/windows/get-pictures-camera-computer#1TC=wind ows-7

  • Can anyone give me an example of direct, queued and unserialized delta?

    hi all,
    Can anyone give me an example of direct, queued and unserialized delta for fi and sd applications.
    thanxs in advance
    regds
    hari

    hi,
    Update Methods,
    a.1: (Serialized) V3 Update
    b. Direct Delta
    c. Queued Delta
    d. Un-serialized V3 Update
    Note: Before PI Release 2002.1 the only update method available was V3 Update. As of PI 2002.1 three new update methods are available because the V3 update could lead to inconsistencies under certain circumstances. As of PI 2003.1 the old V3 update will not be supported anymore.
    a. Update methods: (serialized) V3
    • Transaction data is collected in the R/3 update tables
    • Data in the update tables is transferred through a periodic update process to BW Delta queue
    • Delta loads from BW retrieve the data from this BW Delta queue
    Transaction postings lead to:
    1. Records in transaction tables and in update tables
    2. A periodically scheduled job transfers these postings into the BW delta queue
    3. This BW Delta queue is read when a delta load is executed.
    Issues:
    • Even though it says serialized , Correct sequence of extraction data cannot be guaranteed
    • V2 Update errors can lead to V3 updates never to be processed
    Update methods: direct delta
    • Each document posting is directly transferred into the BW delta queue
    • Each document posting with delta extraction leads to exactly one LUW in the respective BW delta queues
    Transaction postings lead to:
    1. Records in transaction tables and in update tables
    2. A periodically scheduled job transfers these postings into the BW delta queue
    3. This BW Delta queue is read when a delta load is executed.
    Pros:
    • Extraction is independent of V2 update
    • Less monitoring overhead of update data or extraction queue
    Cons:
    • Not suitable for environments with high number of document changes
    • Setup and delta initialization have to be executed successfully before document postings are resumed
    • V1 is more heavily burdened
    Update methods: queued delta
    • Extraction data is collected for the affected application in an extraction queue
    • Collective run as usual for transferring data into the BW delta queue
    Transaction postings lead to:
    1. Records in transaction tables and in extraction queue
    2. A periodically scheduled job transfers these postings into the BW delta queue
    3. This BW Delta queue is read when a delta load is executed.
    Pros:
    • Extraction is independent of V2 update
    • Suitable for environments with high number of document changes
    • Writing to extraction queue is within V1-update: this ensures correct serialization
    • Downtime is reduced to running the setup
    Cons:
    • V1 is more heavily burdened compared to V3
    • Administrative overhead of extraction queue
    Update methods: Un-serialized V3
    • Extraction data for written as before into the update tables with a V3 update module
    • V3 collective run transfers the data to BW Delta queue
    • In contrast to serialized V3, the data in the updating collective run is without regard to sequence from the update tables
    Transaction postings lead to:
    1. Records in transaction tables and in update tables
    2. A periodically scheduled job transfers these postings into the BW delta queue
    3.This BW Delta queue is read when a delta load is executed.
    Issues:
    • Only suitable for data target design for which correct sequence of changes is not important e.g. Material Movements
    • V2 update has to be successful
    hope it helps
    partha

  • Can anyone give me a simple workflow example?

    So I need to make a banner (468 x 60) with flash that
    basically is just a background, some text, that text disappears and
    new text shows up, and then some falling hearts. I've been through
    so many tutorials, but I STILL get confused as to the exact
    workflow when doing this. I understand about making movie clips,
    but do I make a movie clip of a line of text, then what do I do?
    How do I make it disappear and a new line of text show up? Should I
    do this all on Scene 1 or do I need to somehow animate within the
    movie clips? Also, I have a heart that falls and rotates at the
    same time - I don't want it to do a full rotation, so I tried
    rotating the instance of it in the beginning and have it motion
    tween to do a 1/4 rotation, but when I try to animate it, it just
    shows it falling and then rotating at the very last frame. Say I
    want to show "screen A" of text, then show "screen B" then finally
    "Screen C" which includes some hearts animating, can anyone give me
    a real basic outline of what to do? I mean, the order I should do
    stuff, what needs to be made into a movie clip, what each movie
    clip timeline should look like, and what the Scene 1 timeline
    should look like. OR if anyone knows of a decent tutorial that
    basically shows how to do something like this. Thanks!!! (*puppydog
    eyes*)
    p.s. i just want the text to fade-in/fade-out unless that is
    complicated enough that a flashtard like myself couldn't do it
    easily.

    wouldn't it make more sense that a flashtard is someone who
    just generally sucks at flash and asks idiotic questions?
    anyway, so i pretty much got the banner done - but i'm stuck
    on one problem. I made a motion clip of a heart, and i want the
    heart to fall from top to bottom, following a squiggly motion
    guide, and to rotate 1/4 turn on the way. I got it as far as
    following the motion guide, but when i try to select the instance
    in the first frame and rotate it, shouldn't the motion tween make
    it appear to slowly rotate, rather than stay put then rotate 1/4
    turn at the last frame? When I select the clip and play around with
    alpha and stuff, that works fine. What the heck?

  • Can anyone give me an example?

    I want to lucubrate M-UI ,CAN anyone give me an example just for my beginning?

    What is "lucubrate M-UI ,CAN"???
    CUL8er,
    Nick.

Maybe you are looking for