Function and DB Link Help

Hello,
I get the error "invalid column name" when trying to call a function from a SQL statement. The function resides on a seperate server than the SQL statement, but both servers are connected by a DB Link, and the proper synonyms and pragmas are used. If I run the SQL statement on the same server (even under a different account/schema), it runs fine.
I'm using the following syntax:
SELECT etc. FROM etc. WHERE
synonym_name.function_name = etc.;
Has anyone encountered such a problem? Are there any explanations for this error?
Thank you very much.

In the where condition, r u using the synonym name of the db link alon g with the column name ...if so don't give the synonym name just use the column name alone....

Similar Messages

  • Need BR's Functiona and Cmds--- please help me

    Hi All,
    I need all the functions and cmds that are used in BR's and calc scripts in Essbase and Planning...
    I'm attending interviews so I need them very very very urgently
    if you have doc for the sam eit would be a grt help for me... for version 11.1.2
    Please this is very urgent for me...
    Vijay

    If you extract the files and then open index.html it will open the document catalog
    Go to the essbase section - Technical Reference - this will contain calc script commands and functions.
    Go to the Financial PM application section - Hyperion Business Rules - Administrators guide will contain further information about Business Rules
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Plot function and Interpolate Plz Help!!!!

    Im trying to obtain a plot from  the following function ( see attached file)  a I-V curve and then from the plot i wanna determine values for "I" when  values of V are specified. I wanna do this without using cursers but programmatically.(possibly using interpolate functions) .. I hope someone can help me..thanks a lot
    Attachments:
    eq.JPG ‏10 KB

    lil_zu wrote:
    ...is it possible to plot this function without solving?
    No! You cannot plot a function unless you can solve it (either analytically or numerically).
    Do you have an image of how it is supposed to look like?
    What are typical ranges for I and V?
    Do you have a link to a website that explains your application?
    LabVIEW Champion . Do more with less code and in less time .

  • Replace function  and  ORA-00932 Help

    Hi ,
    We have field name PARAM of type LONG
    values of PARAM are :
    1)345
    2)[email protected]
    3)http://ghf.hq.fde.com:9211/psp/VADEV/EMPLOYEE/FIN/c/
    4)kennedy
    I am getting ORA-00932 Inconsistent data types expected number got LONG when i ran below SQL .
    update tbl_parms set param = 'http://efs.hq.def.com/psp'
    where param like 'http%';
    Please someone could help in fixing this error .
    Also ,I am interetsed to just replace http://ghf.hq.fde.com:9211 with http://efs.hq.def.com
    can we do with REPLACE or SUBSTRING functions ? the length of URL may vary .
    bye,
    Kar

    You can't refer to LONG columns in WHERE clause
    "LONG columns cannot appear in WHERE clauses or in integrity constraints"
    see http://download-uk.oracle.com/docs/cd/B10501_01/appdev.920/a96590/adfnstyp.htm#435338
    You should think about migrating from LONG to CLOB. But in the mean time, the easiest solution may be to
    - dump tbl_parms into a file
    - delete the lines you don't need to change
    - edit the rows you want to change using an editor (regular expressions will help your search and replace):
    - apply as an update script eg
    UPDATE TBL_PARMS
    SET PARAM='the complete value for a parameter'
    WHERE PARAM_ID=3Are any of your parameters longer than 4000 chars? If not, consider simply making a version of the table with PARAM varchar2(4000) andupdating there, using REPLACE, SUBSTR etc.
    create table new_params
    ( id number not null, param varchar2(4000))
    begin
      for x in (select id, param from tbl_parms)
      loop
          insert into new_params (id, param) values (x.id, x.param);
      end loop;
    end;
    /HTH
    Regards Nigel

  • Button and JavaScript link (help)

    I would like to know how to make a link to open in to a new
    window and..., I have been using javascript links to open images in
    small windows; <a href="images/samples/SampleSC.gif"
    onclick="return popitup('images/samples/SampleSC.gif')"> These
    links work in the html, and I would like to add this link to a
    button(or something) in flash 8
    The following is in my html to make the links work, but if I
    just get the above link somehow imbedded in to a button I think it
    will work from there
    <script language="javascript" type="text/javascript">
    function popitup(url) {
    newwindow=window.open(url,'name','height=490,width=720,scrollbars=yes');
    if (window.focus) {newwindow.focus()}
    return false;
    </script>
    I am so new to this. I have tried adding the following to the
    action script but it did not work;
    homepage_btn.onRelease = function () {
    getURL("
    http://www.macromedia.com",
    "_blank");
    I found the following ways to do this
    http://www.abcpchelp.com/temp/URL2.htm
    but either I did not know how to use them or they did not work
    The flash file I am working on is here:
    http://www.msresume.com.au/Default1Draft.aspx
    (the links will be in the sample thumbnails)
    Thank you, your time is appreciated!

    michael- wrote:
    > I would like to know how to make a link to open in to a
    new window and..., I
    > have been using javascript links to open images in small
    windows; <a
    > href="images/samples/SampleSC.gif" onclick="return
    > popitup('images/samples/SampleSC.gif')"> These links
    work in the html, and I
    > would like to add this link to a button(or something) in
    flash 8
    >
    > The following is in my html to make the links work, but
    if I just get the
    > above link somehow imbedded in to a button I think it
    will work from there
    >
    > <script language="javascript"
    type="text/javascript">
    > function popitup(url) {
    >
    newwindow=window.open(url,'name','height=490,width=720,scrollbars=yes');
    > if (window.focus) {newwindow.focus()}
    > return false;
    > }
    > </script>
    >
    All you need is one simple line in flash an none of the HTML
    stuff.
    getURL("javascript:n_name=window.open('page.htm','thewin','width=720,height=490,scrollbars =yes');void(0);");
    Take note tho, this might not work tested locally. You need
    to upload to server and
    test it online.
    Now, if you have multiple windows, change the "thewin" to
    something like "thewin1" "thewin2" etc...
    If you keep requesting window with same name, you end up
    loading other content into it.
    New name assure new object and new window made.
    Best Regards
    Urami
    !!!!!!! Merry Christmas !!!!!!!
    Happy New Year
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Javascript functions and Extendedscript -- newbie help

    I am new to the Photoshop scripting world and starting with a basic script to gather folder names and then remove the path. When I use the code below ESTK throws an error that labs[i].substring is not a function. That I know, it's not...but it is valid javascript. Need an explanation please.
    Thanks
    #target photoshop
    //Sizes Tab
    //Lab Drop-down menu
    var labSets = Folder('~/Desktop/Template Hub/');
    var labSets = labSets.getFiles();
    //Create Array containing Lab names from folder names
    var labs = labSets;
    for (i=0; i<labs.length; i++) {
        var v = labs[i].substring(labs[i].lastIndexOf("/")+1);

    labs[i] is a file or folder object. Strings have a substring method. You could convert the file/folder to a string but I think it's better if you use a file/folder porperty. Something like this...
    #target photoshop
    //Sizes Tab
    //Lab Drop-down menu
    var labSets = Folder('~/Desktop/Template Hub/');
    var labSets = labSets.getFiles();// this get all file and folders
    //Create Array containing Lab names from folder names
    var labs = [];
    for (i=0; i<labSets.length; i++) {
        if( labSets[i] instanceof Folder ){
            var v = decodeURI(labSets[i].name);// decodeURI deals with spaces and other such chars in the folder name
            labs.push(v);

  • After my most recent update I have lost copy paste functions and can't drag items - please help

    I am unsure how to tell which update it is,but I cant use copy and paste functions and my openoffice has corrupted - reinstalling it did not help. I can also not drag/drop

    I think this is a Java problem.  I went to Firefox and Mozilla home page and checked to see that my plug ins were up to date.  Firefox said it had turned off my Java because it was not up to date.  When I went to the Java page to update it, it only said Mac has its own Java updates and suggested I update through Apple.  Unfortunately, when I checked to see if Apple has any updates for my Java, there weren't any.
    After seeing that, I went to the link it had for "upgrade to the latest version" and this is what Java says:
    I guess I will look for Java help on the support pages here and see if anyone has any info.

  • Hidden and visible div tags, transparence and links - HELP....

    I am showing different products in div tags that are controlled by simple javascript. I would like to add text links to open a new div tag about the related products, but also hide the original div tag that the link is placed on.
    Please check this page out
    http://www.aestheticgroup.fr/New/Inex/Inex_lipoAspirationR.html
    and then click on the image for
    CANULES D’ASPIRATION PROXIMALE
    and then click on the text link:
    manche BD 300 10
    You will understand my problem. I'm trying to make this div tag (Canule d’aspiration Proximale) disappear instead of having them stack one on top of the other.
    Do you have an idea of how I can add multiple functions to one click (close the div tag and open a new one at the same time)?
    Thank you for your help!
    Sooooophie

    Hi Sophie,
    I downloaded your site and yes, there was a typo in the script...
    The script should read...
    var curOverlay = null;
    function overlay( aOly) {
      var el = document.getElementById(aOly);
      if (curOverlay) curOverlay.style.visibility = "hidden";     // THIS LINE HAS CHANGED
      if (curOverlay != el) {
        el.style.visibility = "visible";
        curOverlay = el;
      else
        curOverlay = null;
    I also realize that wherever you call an overlayXX function that you are currently using, you'll need to replace it with a call to overlay('overlayXX')
    I needed to add this to your onclick attribute for the close button... I tested this and it seems to work for the existing page.
    here are the snippets from your page that I changed
          <div id="Groups02"><a href='#' onclick='overlay("overlay02")' onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image21','','images/LipoReutilisable02B.jpg',1)"><img src="images/LipoReutilisable02.jpg" name="Image21" width="170" height="120" border="0" id="Image21" /></a>
            <p>CANULES D&rsquo;ASPIRATION <br />
            UN ORIFICE</p>
          </div>
    and for the close button:
       <div id="close02"><a href='#' onclick='overlay("overlay02")' onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image43','','images/close.jpg',1)"><img src="images/close02.jpg" name="Image43" width="72" height="20" border="0" id="Image43" /></a></div>
    You'll need to change this wherever you reference each overlay, in this case, it was for overlay02.  The good news is you'll only need this function and not one function per overlay as you have now.
    As I said in the previous post, I am off on vacation for a little over a week.
    Good Luck!

  • HT2832 Help!  My fire wire  400 ports have stopped functioning, and my 800 is now having problems

    Help!  My fire wire  400 ports have stopped functioning, and my 800 is now having problems....I'm getting a protools message telling me there is a problem with my firewire.

    First, you have posted in the wrong area, this is for PPCs and you have an intel.
    Try repairing permissions and resetting the PRAM.
    Let us know how you made out.

  • I just upgraded my iPhone to IOS 7.1 and not the speech to text function and the Siri function doesn't work. I tried rebooting but that didn't help

    I just upgraded my IPhone to IOS 7.1 and now the speech to text function and Siri doesn't work
    The microphone icon is white not grey
    And when I hit it it only stays on for a split second
    Not long enough to dictate a message
    It worked fine before upgrade
    And works on IPad which I also just upgraded
    Help??

    There are many, many threads on this forum about this issue. Do a forum search for "wi-fi greyed out" and see if any of the solutions therein will work for you. Best of luck.

  • I bought an ipad from some one and i can't activate it and it keeps on showing that i should type the apple id and password link to that ipad which i dont know and i can't even locate thi guy. Please help if there is a chance to activate the ipad. Thanks.

    I bought an ipad from some one and i can't activate it and it keeps on showing that i should type the apple id and password link to that ipad which i dont know and i can't even locate thi guy. Please help if there is a chance to activate the ipad. Thanks

    There is no chance at all that you can activate the iPad without the previous user's Apple ID and password. That is the feature of iOS 7 Activation Lock.
    Every time I read one of these post, I can't help but think that the user asking about this (in this case - you) was duped into purchasing a stolen device. If the seller was legit, they would have erased the device completely before they sold it.

  • I bought a cd with Lightroom 5. After installation and registration I am not able to use 'help' function and I cannot update the software. I anyone able to give me a hint how to handle it? Thank you ind advance Karl

    I bought a cd with Lightroom 5. After installation and registration I am not able to use 'help' function and I cannot update the software. Is anyone able to give me a hint how to handle it?
    Thank you in advance
    arl

    Hi Keith, sorry for my late reply.
    Surely I am able to connect to the help function when Icontact the website
    of AdobeLR5.The problem is as follows,
    When I open LR5 on my computer and work with it and try to open the help
    function in the software, I don't get it.
    When I bought the CD I was naiv enough to believe that I get an independent
    working software. I learned in the meantime, that the seller does not allow
    to work with, without being connected to them.
    I don't believe that I am paranoid, but I like to buy something and use it
    without to inform the supplier that I do it. Otherwise I could have bought
    the license fpr LR5 via internet.
    Best regards
    Karl
    2015-01-02 13:42 GMT+01:00 kglad <[email protected]>:
        I bought a cd with Lightroom 5. After installation and registration I
    am not able to use 'help' function and I cannot update the software. I
    anyone able to give me a hint how to handle it? Thank you ind advance Karl
    kglad <https://forums.adobe.com/people/kglad?et=watches.email.outcome>
    marked Keith_Reeder
    <https://forums.adobe.com/people/Keith_Reeder?et=watches.email.outcome>'s
    reply on I bought a cd with Lightroom 5. After installation and
    registration I am not able to use 'help' function and I cannot update the
    software. I anyone able to give me a hint how to handle it? Thank you ind
    advance Karl
    <https://forums.adobe.com/thread/1669640?et=watches.email.outcome> as
    helpful. View the full reply
    <https://forums.adobe.com/message/7059196?et=watches.email.outcome#7059196>

  • I don't know how to use the canlendars function and the notes are kind of messy code,anyone help me

    i don't know how to use the canlendars function and the notes are kind of messy code,anyone help me

    Step by step:
    1. On your main vi Front Panel, create your boolean indicator.
    2. On the block diagram, right click the new boolean indicator and select Create - Reference.
    3. On sub-vi front panel, create boolean indicator (or use one that is already created).
    4. On sub-vi front panel, create a reference (Controls Palette - Refnum - Control Refnum).
    5. Right click on the newly created Refnum and select Select Vi Server Class - Generic - GObject - Control - Boolean. The refnum label changes to BoolRefnum.
    6. On sub-vi block diagram, create Property Node (Functions - Application Control - Property Node). Find the BoolRefnum and move it close to the new Property Node.
    7. Wire the BoolRefnum to the reference input of the property node.
    8.
    Right click on the property node and select Change to All Write.
    9. Move mouse to point to Visible inside property node box, left click and select Value.
    10. Wire the boolean indicator from step 3 to the Value input of the property node.
    11. On sub-vi front panel, right click on icon and select Show Connector.
    12. Click on empty connector spot then click on the new BoolRefnum. Save your sub-vi.
    13. On main vi block diagram, connect refernece created in step 2 to the new connector terminal of sub-vi.
    14. Save and run.
    Here are the modified vi's.
    - tbob
    Inventor of the WORM Global
    Attachments:
    Pass_a_Reference.vi ‏20 KB
    GL_Flicker_mod.vi ‏83 KB

  • R12 - Help for Disabling of Home and Preferences links

    Hi all,
    I am trying to disable the home and preferences link (the global links) for a OAF page. As per the suggestion provided in the below link, i have made changes to the code.
    [Thread: Hide 'Home Logout Preferences....' links in a OAF page.|http://forums.oracle.com/forums/thread.jspa?threadID=1097841&tstart=135]
    This works just fine when run from JDev. However, when ported to server and running the same, the global links still get displayed.
    After moving the Controller class to server, apache bounce was carried out.
    Help on this will be much appreciated.

    Sorted! Changed from WPA2 to WPA/WPA2 and everything is OK!

  • When i'm in the music player function, and i turn my ipod to lanscape view, i start to roll the albums and then the ipod exit form the musicplaying suddenly -_- why? please help me

    When i'm in the music player function, and i turn my ipod to lanscape view, i start to roll the albums and then the ipod exit form the musicplaying suddenly -_- why? please help me

    Did you try to reset the device by holding the sleep and home button until the Apple logo comes back again?

Maybe you are looking for

  • Memory upgrade on Satellite L300

    I purchased a satellite L300 in august 08 in Australia. It came with a single 1Gb memory module which is now inadequate. I obtained 2 x 2Gb modules but cannot get it to work with both fitted. Bios reports 4Gb fitted but Vista reboots the first time t

  • From PC to Mac and iTunes

    So, I used to only have PCs in my life, so when I went to college with my first Mac laptop I knew that I was in for a learning curve. I had just authorized my Mac when I was trying to figure out how to get the songs on my 80GB iPod Classic into my mu

  • [SOLVED] update error, python2-zope-interface

    Hi! I encountered the following error when I wanted to update my system today. What should I do? [martin@faye ~]$ pacman -Syu :: Synchronizing package databases... core is up to date extra is up to date community is up to date multilib is up to date

  • Oracle quoting

    Hello we are on 11510, and using forms quoting - during a CRP the following questions arised; - if I make a quote , with 3 items on there, and want to convert in an order, how can I select line 1 and 2 to be put on an order, (as the customer is not i

  • How to update software of nokia 6680??please help ...

    software