What is the correct syntax to have the report log into different databases?

Hi,
My current Oracle Reports are called against several databases, depending on region. I pass 'userid=reports/new1@tsoc' as one of teh parameters to access the 'tsoc' db. I just as well call 'userid=reports/new1@penang'.
This syntax does not appear to work when placed in the BI Publisher URL as follows:
http://seerus04.soco.agilent.com:9704/xmlpserver/emerald/tutorial/tutorial.xdo?_xpf=&_xpt=0&_xdo=%2Femerald%2Ftutorial%2Ftutorial.xdo&_xt=tutorial&_xf=html&_xmode=0&userid=reports/[email protected]
Thn in advance,
Gary

Jorge,
I have 11 databases in different regions. Oracle Reports allows me to pass in the database I wish to connect to.
This is extremely pertinent to my evaluation as I cannot justify having 11 seperate instances for each of my reports.
If what you say is true, I would consider BIP a poor subsitute for Oracle Reports.
Thx,
Gary

Similar Messages

  • I can't access iCloud, i keep getting a message to try again later. This is the first time i have tried to log into icloud. I  know my account is working, i want to access it from my macbook. I think its looking for my old icloud email, what to do?

    I can't access iCloud, i keep getting a message to try again later. This is the first time i have tried to log into icloud. I  know my account is working, i want to access it from my macbook. I think its looking for my old icloud email, what to do? I have a working apple id, i dont understand, could it be linked to an old account iD?

    Hi smccarrison,
    Thanks for visiting Apple Support Communities.
    You may find the steps in this article helpful with troubleshooting signing into iCloud:
    iCloud: Account troubleshooting
    http://support.apple.com/kb/TS3988
    All the best,
    Jeremy

  • HT204207 What is the correct setting to have the same Podcasts on my devices but only my computer keeps every episode after playing?

    There several podcasts that I subscribe to that I want to keep every episode of in my iTunes library, but only have unplayed episodes of on my iOS devices due to storage limitations. Is there a way to accomplish this? I love syncing, but I can't have the exact same setting on all devices because of storage and data limits from my Wireless carrier.

    I actually already checked Pondini's and didn't find the answer.  Any other suggestions?
    thanks

  • What is the correct Syntax to export to SWF using VBScript

    I am trying to export to swf using Indesign Server but i'm struggling to find the correct syntax using VBScript
    can someone point me in the correct direction or maybe give me this info?
    Thanks in advance
    Tom

    Malcolm,
    Just string the keywords in a row, and let 'er rip.
    The Store used to have a more sophisticated search capability known as Power Search, which allowed fielded entry.  But it seems to have disappeared a few releases ago.

  • Can't figure out the correct syntax for this select statement

    Hello,
    The following statement works great and gives the desired results:
    prompt
    prompt Using WITH t
    prompt
    with t as
       select a.proj_id,
              a.proj_start,
              a.proj_end,
              case when (
                         select min(a.proj_start)
                           from v b
                          where (a.proj_start  = b.proj_end)
                            and (a.proj_id    != b.proj_id)
                        is not null then 0 else 1
              end as flag
         from v a
        order by a.proj_start
    select proj_id,
           proj_start,
           proj_end,
           flag,
           -- the following select statement is what I am having a hard time
           -- "duplicating" without using the WITH clause
            select sum(t2.flag)
              from t t2
             where t2.proj_end <= t.proj_end
           ) s
      from t;As an academic exercise I wanted to rewrite the above statement without using the WITH clause, I tried this (among dozens of other tries - I've hit a mental block and can't figure it out):
    prompt
    prompt without with
    prompt
    select c.proj_id,
           c.proj_start,
           c.proj_end,
           c.flag,
           -- This is what I've tried as the equivalent statement but, it is
           -- syntactically incorrect.  What's the correct syntax for what this
           -- statement is intended ?
            select sum(t2.flag)
              from c t2
             where t2.proj_end <= c.proj_end
           ) as proj_grp
      from (
            select a.proj_id,
                   a.proj_start,
                   a.proj_end,
                   case when (
                              select min(a.proj_start)
                                from v b
                               where (a.proj_start  = b.proj_end)
                                 and (a.proj_id    != b.proj_id)
                             is not null then 0 else 1
                   end as flag
              from v a
             order by a.proj_start
           ) c;Thank you for helping, much appreciated.
    John.
    PS: The DDL for the table v used by the above statements is:
    drop table v;
    create table v (
    proj_id         number,
    proj_start      date,
    proj_end        date
    insert into v values
           ( 1, to_date('01-JAN-2005', 'dd-mon-yyyy'),
                to_date('02-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 2, to_date('02-JAN-2005', 'dd-mon-yyyy'),
                to_date('03-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 3, to_date('03-JAN-2005', 'dd-mon-yyyy'),
                to_date('04-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 4, to_date('04-JAN-2005', 'dd-mon-yyyy'),
                to_date('05-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 5, to_date('06-JAN-2005', 'dd-mon-yyyy'),
                to_date('07-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 6, to_date('16-JAN-2005', 'dd-mon-yyyy'),
                to_date('17-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 7, to_date('17-JAN-2005', 'dd-mon-yyyy'),
                to_date('18-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 8, to_date('18-JAN-2005', 'dd-mon-yyyy'),
                to_date('19-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 9, to_date('19-JAN-2005', 'dd-mon-yyyy'),
                to_date('20-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (10, to_date('21-JAN-2005', 'dd-mon-yyyy'),
                to_date('22-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (11, to_date('26-JAN-2005', 'dd-mon-yyyy'),
                to_date('27-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (12, to_date('27-JAN-2005', 'dd-mon-yyyy'),
                to_date('28-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (13, to_date('28-JAN-2005', 'dd-mon-yyyy'),
                to_date('29-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (14, to_date('29-JAN-2005', 'dd-mon-yyyy'),
                to_date('30-JAN-2005', 'dd-mon-yyyy'));

    Hi, John,
    Not that you asked, but as you proabably know, analytic functions are much better at doing this kind of thing.
    You may be amazed (as I continually am) by how simple and efficient these queries can be.
    For example:
    WITH     got_grp          AS
         SELECT     proj_id, proj_start, proj_end
         ,     proj_end - SUM (proj_end - proj_start) OVER (ORDER BY  proj_start)     AS grp
         FROM     v
    SELECT       ROW_NUMBER () OVER (ORDER BY grp)     AS proj_grp
    ,       MIN (proj_start)                         AS proj_start
    ,       MAX (proj_end)               AS proj_end
    FROM       got_grp
    GROUP BY  grp
    ORDER BY  proj_start
    ;Produces the results you want:
      PROJ_GRP PROJ_START  PROJ_END
             1 01-Jan-2005 05-Jan-2005
             2 06-Jan-2005 07-Jan-2005
             3 16-Jan-2005 20-Jan-2005
             4 21-Jan-2005 22-Jan-2005
             5 26-Jan-2005 30-Jan-2005This is problem is an example of Neighbor-Defined Groups . You want to GROUP BY something that has 5 distinct values, to get the 5 rows above, but there's nothing in the table itself that tells you to which group each row belongs. The groups are not defined by any column in hte table, but by relationships between rows. In this case, a row is in the same group as its neighbor (the row immediatly before or after it when sorted by proj_start or proj_end) if proj_end of the earlier row is the same as proj_start of the later row. That is, there is nothing about 03-Jan-2005 that says the row with proj_id=2 is in the first group, or even that it is in the same group with its neighbor, the row with proj_id=3. Only the relation between those rows, the fact that the earlier row has end_date=03-Jan-2005 and the later row has start_date=03-Jan-2003, that says these neighbors belong to the same group.
    You're figuring out when a new group starts, and then counting how many groups have already started to see to which group each row belongs. That's a prefectly natural procedural way of approaching the problem. But SQL is not a procedural language, and sometimes another approach is much more efficient. In this case, as in many others, a Constant Difference defines the groups. The difference between proj_end (or proj_start, it doesn't matter in this case) and the total duratiojn of the rows up to that date determines a group. The actual value of that difference means nothing to you or anybody else, so I used ROW_NUMBER in the query above to map those distinct values into consecutive integers 1, 2, 3, ... which are a much simpler way to identify the groups.
    Note that the query above only requires one pass through the table, and only requires one sub-query. It does not need a WITH clause; you could easily make got_grp an in-line view.
    If you used analytic functions (LEAD or LAG) to compute flag, and then to compute proj_grp (COUNT or SUM), you would need two sub-queries, one for each analytic function, but you would still only need one pass through the table. Also, those sub-queries could be in-line views; yiou would not need to use a WITH clause.

  • What is the correct part number for the ac-charger for hp mini 110-1191eo (part vj213ea#uuw)?

    I need to find the correct part number for the ac-charger for hp mini 110-1191eo (part vj213ea#uuw).
    This question was solved.
    View Solution.

    Good question.
    That I don't have a definite 100% answer to.
    It probably is OK. Wattage is what it is rated at. More wattage is probably a good thing, and I have read that = or - .5v is not supposed to be an issue.
    You can do a google search of the part number for your power adapter and see if they still carry it, if you are concerned.
    Paul

  • HT3228 What's the correct email settings for the fastest email receiving on my iPhone 4s

    What's the correct email settings for the fastest email receiving on my iPhone 4s

    As no one here knows who your email provider is, no, no one can help. Have you tried looking at your email provider's help pages? Done an internet search?

  • The correct syntax for a recursive chmod command in Terminal

    I need to set recursive permissions on an external HDD to '777' or 'all read&write'.
    I have tried all of the following commands in Terminal:
    sudo chmod 777 -r /Volumes/...
    sudo chmod -r 777 /Volumes/...
    sudo chmod a+rw -r /Volumes/...
    sudo chmod -r a+rw /Volumes/...
    ...all of which being back a 'no such file or directory' error, e.g.
    sudo chmod 777 -r /Volumes/232Gb
    chmod: -r: No such file or directory
    Can anyone confirm the correct syntax for this command?
    Thanks in advance...
    Message was edited by: ChippyDeluxe

    If there were a solution that didn't involve using Terminal, I would prefer that.
    The reason I ask is, since my old iMac died and I connected my iMac's external HDD to my MacBook, thousands of folders on my external HDD have 'stop signs' on them and require me to go to
    Get Info -> Sharing & Permissions
    ...and add my MacBook username and set the privilege as "read and write". A bigger problem is, no backup software I've tried will back up this external HDD onto another external HDD any more, so I no longer have an up-to-date backup, which is very worrying.
    I am looking for a way of fixing this, and the chmod command appears to be the answer.
    Ideally, I don't want any permission restrictions on my external HDD at all, so I can connect it to any machine without problems.

  • HT4528 My app store shows I need to update the Backup Assistant.  I have tried to log into my Apple account and used every possible login I can think of.  Apple doesn't recognize anything I put in.  I have changed my password/ID at least 20 times.  What c

    My iphone App Store indicates that I need to update my Backup Assistant.  I have tried about 30 times to log into my Apple account using every login I can think of and it continually tells me it is invalid or incorrect.  I have changed my password/ID at least 20 times.  What can I do?

    Use the correct login/password that the app was purchased with.

  • I have a new computer from my father that already has his iphone content on it.  what do i need to do to switch my phone over from my old computer to the new one and have the new computer sync MY contacts and content to the new computer without erasing

    i have a new computer from my father that already has his iphone content on it.  what do i need to do to switch my phone over from my old computer to the new one and have the new computer sync MY contacts and content to the new computer without erasing my contact lists and purchased apps?

    okay from reading posts it seems if I transfer my backed up info from my old comp to the new one and erase my dad's phone's back up i could reset my phone and it would transfer all my old data back onto the phone, be linked to the new computer and i could proceed.  Where do i find the backed up info from my phone?

  • I bought an iphone 4s from a pawn shop,i need to check and make sure the phone is clear to be activated in my name,i was told you can check the IMEI number,i have the number,but what do i do with it?

    I bought an iphone 4s from a pawn shop,i need to check and make sure the phone is clear to be activated in my name,i was told you can check the IMEI number,i have the number,but what do i do with it?

    Who is the carrier the iPhone is carrier locked with?
    If the carrier has a blacklist for lost/stolen cell phones, it would be the carrier you need to contact.

  • What is the correct part number for the LCD inverter board for an A1138 15" powerBook G4 ( 1.67GHz superdrive/ Hi-res)?

    What is the correct part number for the LCD inverter board for an A1138 15" PowerBook G4 ( 1.67GHz superdrive/ Hi-res model)?

    Hello,
    Part number 614-0305-A
    Hope this helps.

  • Is this the correct syntax to submit a job using DBMS_JOB.SUBMIT?

    Hello,
    Is this the correct syntax to submit a job?
    DECLARE
    v_job_number NUMBER;
    v_job_command VARCHAR2(1000) := 'PREPARE_ORACLE_TEXT_SEARCH;';
    v_interval VARCHAR2(1000) := 'trunc(SYSDATE)+1+7/24';
    BEGIN
    DBMS_JOB.SUBMIT(v_job_number, v_job_command, sysdate, v_interval, false);
    COMMIT;
    END;
    Thanks
    Doug

    DECLARE
    v_job_number NUMBER;
    v_job_command VARCHAR2(1000) := 'BEGIN
    PREPARE_ORACLE_TEXT_SEARCH; END;';
    v_interval VARCHAR2(1000) :=
    'trunc(SYSDATE)+1+7/24';
    BEGIN
    DBMS_JOB.SUBMIT(v_job_number, v_job_command, sysdate,
    v_interval, false);
    COMMIT;
    END;
    About your error:
    PLS-00201: identifier 'PREPARE_ORACLE_TEXT_SEARCH'
    must be declared
    ORA-06550: line 1, column 96:
    PL/SQL: Statement ignored
    The problem is that the job cannot find the procedure
    (maybe own by an other user). The user who run the
    job is not the same as the owner of the package.
    Bye, AronYou forget the semicolon after END.
    But we don't need here begin - end Block.
    So it's OK.
    v_job_command VARCHAR2(1000) := 'PREPARE_ORACLE_TEXT_SEARCH;'[b];
    As you right mentioned, it is probably problem with owner or typo in the name of procedure.
    Regards
    Dmytro Dekhtyaryuk
    Message was edited by:
    dekhtyar

  • What is a video card? And what requirements do you need to have the newest version of iMovie?

    What is a video card? And what requirements do you need to have the newest version of iMovie?

    http://en.wikipedia.org/wiki/Video_card
    http://support.apple.com/kb/ht5842 Maverick requirements.

  • HT4489 transferring my contacts to my phone from my computer, what program do i use, i have the apple 3gs

    transferring my contacts to my phone from my computer saved as vcard, what program do i use, i have the apple 3gs. I used Icloud and clicked on import in contact there a message came back with an error

    Hello Tehuti2,
    There are a few ways to transfer contacts from your computer to your iPhone.  I found an article that provides steps on how to import a vCard to iCloud.com:
    iCloud: Import a vCard
    http://support.apple.com/kb/PH3605
    If your PC fits the following specifications, you can setup iCloud to automatically sync contacts with your iPhone:
    Microsoft Windows 7 or 8
    iCloud Control Panel 2.1.2 or later
    iTunes 11 or later (for iTunes in the Cloud and iTunes Match)
    Outlook 2007 or 2010 or iCloud.com
    Safari 5.1.7 or later or Internet Explorer 9 or later (for iCloud.com and Bookmarks), Firefox 16 or later or Chrome 23 or later (for iCloud.com)
    iCloud: System requirements
    http://support.apple.com/kb/HT4759
    Learn how to setup iCloud
    http://www.apple.com/icloud/setup/pc.html
    I hope this helps! 
    Best,
    Sheila M.

Maybe you are looking for

  • Is it possible to have the same Apple ID but several iCloud accounts?

    My teenagers use my Apple ID and we like iTunes home sharing, but they want to have their own iCloud account. I don't find the answer anywhere.

  • Problems with JAVA in OSX Yosemite 10.10!!

    Even after installing JAVA 8 update 25 I keep getting a popup telling me I need to install JRE and when I search JAVA support I am referred to 'support.apple.com/kb/DL1572' but this does not open in apple. Any advice??

  • No ocijdbc8 in java.library.path (with Servlet under Tomcat)

    Hello, my problem is the following: I must use the OCI-Driver of the Oracle-Client 8.1.7 because I use special PL/SQL-functions. I get the error message: java.lang.UnsatisfiedLinkError: no ocijdbc8 in java.library.path when I try to start my servlet

  • Large Letters as I type

    Hi, I have inadvertantly hit an unknown key command and now I get large characters flashing up on the screen as I type. Since I do not know what this feature is called, I cannot turn it off.... can anyone help me do this? I have looked in 'Accessibil

  • Disable E-Mail Function

    Hello, Is there anyway to disable the attach this document to an e-mail function? We have a sensitive document that want people to open (no password) but not be able to print, edit, copy, e-mail etc. I've applied the security for no printing, editing