Q: Possible bug when creating DB_LINKS

One for Apex Development,
I don't know if this is a bug but it looks a bit strange.
I created a DB_LINK in APEX using SQL Workshop and it appears to work fine but the name of the db_link has the following domain amended upon creation.
<DATABASE LINK NAME>.REGRESS.RDBMS.DEV.US.ORACLE.COM
Is this correct or should I be able to specify the domain somewhere in the APEX setup ?
My installation was ungraded from v2.0 to v2.2 if that might make a difference. I do not know if the situation was the same in v2.0
Thanks in advance
Chris

I think that's a database version issue. When we upgraded our databases to 10gV2, we started getting that stuff appended to our db link names, whether we created db links in sql plus, Toad or Apex. Try putting double quotes (") around the database link at creation time and see if that doesn't solve the problem.

Similar Messages

  • Possible bug when creating multiple detail view objects

    using jdev 11.1.1.0.0 to build jsf/adf applications. I wanted to report what seems like a bug in 11g. I have a parent table which has two child tables. After creating the appropriate entities, associations, views, and view links, the app module looks like this:
    MasterView
    --DetailView1
    --DetailView2
    The two detail view objects are on the same level, they are both direct children of the Master view.
    Here's what's happening:
    1) I create the master entity/view objects (MasterView)
    2) I create one of the detail entity/view objects (DetailView1).
    3) I create the association and view link to establish relationship between MasterView and DetailView1. Everything works fine.
    4) I create the entity/view objects for second detail view (DetailView2)
    5) When I attempt to create a second view link (based off an association) to establish the relationship between MasterView and DetailView2, the query clauses of the Create View Link wizard (screens 4 and 5) do not get created properly. I finish the wizard and save. Not only does this view link not get created properly, but in the process the query clauses that were defined in the first view link between MasterView and DetailView1 are wiped out. This will break any coordination between master and detail views in both the app module tester and runtime. Has anyone seen this problem?

    fyi, it looks like this issue has been resolved with jdev 11.1.1.0.2 (Update 2)

  • ICal import bug when creating calendars in iPhoto 2011

    Hi,
    I just created a calendar in the new iPhoto 2011 and imported an iCal calendar to the project.
    What I discovered is that it only imports one event per day to the calendar in iPhoto, although the calendar in iCal has sometimes more than one event per day.
    Fx. in my calendar in iCal I have two events on a certain date, f.x my mothers birthday and my son's birthday on January 18th. However when importing this calendar to the calendar project in iPhoto only my mothers name gets imported. This was not an issue in iPhoto 2010.
    Am I doing something wrong or is this a bug?

    Definitely a bug and unforgivable given the time of year - I usually order a couple of calendars as Christmas presents - If I can't order them in time for Christmas then Apple have lost the business.
    It seems to me that iLife 11 was rushed out for Christmas. First the appalling upgrade problems and then the realisation that Calendars were not included. Two patches later and we still have an un-useable Calendar.
    The worst part about it is, it's not obvious - I wonder how many people have ordered calendars and not noticed the missing Birthdays. I can see a lot of disappointed friends and relatives next year whose birthdays will be missed.
    My only hope is an old backup of my Macbook - pre upgrade. If I can boot from that disk, import my recent photos, import the latest version of the iCal Calendar events, I can recreate the Calendar with iPhoto '09. Not sure I can be bothered,

  • Possible bug with creating hyperlink destination while in story editor

    I'm just curious if anyone else is experiencing this and if it's proper behavior or a bug:
    I'm making manual cross references for endnotes in an ebook. To do this I'm creating hyperlink destinations for each endnote and endnote reference. I'm doing this in story editor because I can see the destination targets, however, I'm having a weird issue where when I hit enter when in the hyperlink destination dialog box, it closes and puts a hard return in my text. If I'm doing this in layout mode, I don't get the hard return--it's only in story editor. Creating a hyperlink and hitting enter on that dialogue box does not have the same behavior. It's just the "New Hyperlink Destination" dialog box that does it.
    Can someone else replicate this behavior: Open story editor for any length story. Select some text (doesn't matter where it is), and go to the hyperlink panel menu and select "New Hyperlink Destination" and then hit the keyboard "enter" [rather than clicking on OK] to close the dialogue box.
    When I do this on my Windows 8 laptop running the latest InDesign CC 2014, I'm getting a hard return that deletes whatever text was selected in the story editor. Is this supposed to happen?

    I'm just curious if anyone else is experiencing this and if it's proper behavior or a bug:
    I'm making manual cross references for endnotes in an ebook. To do this I'm creating hyperlink destinations for each endnote and endnote reference. I'm doing this in story editor because I can see the destination targets, however, I'm having a weird issue where when I hit enter when in the hyperlink destination dialog box, it closes and puts a hard return in my text. If I'm doing this in layout mode, I don't get the hard return--it's only in story editor. Creating a hyperlink and hitting enter on that dialogue box does not have the same behavior. It's just the "New Hyperlink Destination" dialog box that does it.
    Can someone else replicate this behavior: Open story editor for any length story. Select some text (doesn't matter where it is), and go to the hyperlink panel menu and select "New Hyperlink Destination" and then hit the keyboard "enter" [rather than clicking on OK] to close the dialogue box.
    When I do this on my Windows 8 laptop running the latest InDesign CC 2014, I'm getting a hard return that deletes whatever text was selected in the story editor. Is this supposed to happen?

  • Unusual Bug when creating pdf from image files

    Hi I have a very mindboggling problem which I cant seem to get my head around.
    basically I am trying to create a pdf using a large amount of image files, these images are scans of pages of a book. so I have been trying to create a pdf file from these images, and everytime i try, it all looks ok except for one page which comes up smaller in size than the rest which is a big problem and very unusual. If I change the view of acrobat so that it shows two pages at a time then this is clearly visable where one page is normal and the page next to it is like a third of the size. Ive checked the image file properties for that page and they are more or less the same as the rest, the dimensions of the image file too, but when I add it into a PDF it seems to shrink in size, any ideas as to why? any help would be much appreciated! (and I hope what I said made sense lol )
    Thanks
    Nav

    Hi Davew000
    Can you please tell the steps you are doing to create the PDF ?
    Thanks,
    Tanvi

  • Possible Bug When Binding Data to ContentPresenter ToolTip Attribute

    Hello everyone,
    I'm developing a small application using WPF. I have a custom ListBox control which contains a number of CheckBox entries paired up with a ContentPresenter object which displays some text obtained from a custom generic object.
    If I bind the ContentPresenter 'Content' node to one of the properties of my class, it will display the text I want correctly. However, I cannot do the same with its 'ToolTip' attribute.
    Here's an excerpt of my XAML.
    <Window.Resources>
    <local:SandboxProfiles x:Key="profiles"/>
    <DataTemplate x:Key="ListBoxItemTemplate">
    <!-- The ToolTip attribute doesn't accept dynamic data bindings (maybe a bug?) within the ContentPresenter node.
    Therefore, the attribute has to be inserted in the parent node (WrapPanel) for it to work. -->
    <WrapPanel ToolTip="{Binding Element.FriendlyDescription}">
    <CheckBox IsChecked="{Binding IsSelected}" VerticalAlignment="Center" />
    <ContentPresenter Content="{Binding Element.TypeString, Mode=OneTime}" Margin="2,0" />
    </WrapPanel>
    </DataTemplate>
    </Window.Resources>
    This line works absolutely fine like this,
    <ContentPresenter Content="{Binding Element.TypeString, Mode=OneTime}" Margin="2,0" />
    However, this doesn't work
    <ContentPresenter Content="{Binding Element.TypeString, Mode=OneTime}" ToolTip={Binding Element.TypeString} Margin="2,0" />
    Note I'm using the exact same pattern here, only that I'm applying it to the ToolTip attribute instead of Content. This doesn't work. It compiles, no exceptions, but no tooltip is displayed.
    However, if I bind the ToolTip attribute of the CheckBox node or the parent WrapPanel node in the exact same way, it
    does work. This works,
    <WrapPanel ToolTip="{Binding Element.TypeString}">
    And this works too,
    <CheckBox IsChecked="{Binding IsSelected}" ToolTip="{Binding Element.TypeString}" VerticalAlignment="Center" />
    I've searched the documentation and nowhere does it say I should expect ContentPresenter's 'ToolTip' attribute to behave differently than with any other XAML component.
    This has led me to believe this is a bug in the WPF runtime. If, on the other hand, I'm missing something here, please, do let me know.
    Thank you.

    Your problem is because you're putting  a tooltip on a contentpresenter - which isn't going to respond to mouse over unless you get your mouse over it just so.
    You can easily reproduce that if you throw a little markup in a new mainwindow:
    <Grid Name="myGrid">
    <ContentPresenter ToolTip="Banana"/>
    </Grid>
    Substitute TextBlock for contentpresenter
    <TextBlock Text="Whatever" ToolTip="Banana"/>
    And it works easily.
    <TextBlock Text="{Binding Element.TypeString, Mode=OneTime}" Margin="2,0" />
    Maybe I'm missing something but I can't really see why you have a contentpresenter at all.
    Assuming typestring is a string as it's name rather implies.
    Hope that helps.
    Recent Technet articles:
    Property List Editing ;  
    Dynamic XAML
    Substituting the ContentPresenter node for a simple TextBlock as you said worked for me, thank you.
    But Magnus is right in that you do have mouse-over events with ContentPresenter components; only that for some reason I don't know, they only work when the ToolTip attribute is set to a hardcoded string and no bindings are happening. So it does respond to
    the mouse but it doesn't display anything that has been dynamically bound to it, for some reason.

  • Possible bug when syncing between iCal & iPhone

    Am I doing something wrong. Here's the scenario.
    I have set up a continuous repeating appointment in iCal for my daughter
    Mon-Fri inclusive. 'School'
    I then went and changed selected events to 'Summer Holiday' where applicable, each time I changed a day it asked whether I wanted to change 'Just this event' or 'All future events'.
    I selected 'Just this event'.
    iCal worked fine and showed the new event on the correct days, but when I synced with the iPhone, the iPhone showed two events, the original repeating event and now the amended event as a new one. After the sync iCal still showed as correct
    It seems to be a flaw in the sync between the iPhone and iCal.
    Does this make sense?
    Can anyone else duplicate this scenario, or am I doing something wrong?
    What is the best way to report this to Apple as a sync bug, if it is one?
    cheers for listening to this waffle
    Paul

    Yes, I've experience the same problem. In addition, when I enter a calendar event in iCal it syncs to the iPhone. When I enter a calendar event in the iPhone it does NOT sync to iCal on my intel based macbook. I've followed the "iPhone Troubleshooting Assistant" to the end without fixing the problem.

  • Possible bugs when adjusting column width in Query Builder

    Good morning,
    we use Oracle SQL Developer 3.2.20.09 with included JDK on Windows 7 32 bit.
    When we open a sql file, in the Query Builder the criteria columns don't auto-adjust accordingly with the length of text present in the columns.
    Also, if we modify or type a new criteria in a column, and immediately after drag the column header to widen the cell, the cell content is erased (if we click first in another cell the problem doesn't occur).
    Thanks for reading and best regards.
    Marco - Italy

    Hi Marco,
    Please note that SQL Developer has included a Query Builder from a third-party since the 3.0 release. I will ping the developer that acts as liaison; perhaps you will get a more definitive response. I can only assume any UI bugs would have to be fixed by the third-party company at his request.
    Regards,
    Gary
    SQL Developer Team

  • Possible Bug when selecting the "text" tab on a Line Chart

    Thought I would pass this on.  Not sure if it has been logged yet or not.  Sometimes when building a line chart, the properties field locks up when I try and select the "text" tab.  The dialog boxes in the "text" tab do not show up and the "layout" tab is also highlighted.  I do not know what causes this, but it has happened to me numerous times.  The only solution is to totally delete the line chart and start all over.  It may be related to copying and pasting.  I set up a chart the way I need it and then copy/paste it rather than making all the changes on a default settings chart when I need another chart.
    Stan

    Hi Stan,
    Are you encountering this problem in the RTM version or SP1?
    Can you list the exact steps to reproduce this problem in the most simple case?
    Example:  add line chart, bind to data, copy, paste, click on text tab...............
    Thanks,
    Gerrit

  • Possible bug when opening NEF-images as Smart Objects in PS CS3?

    In architectural images I often apply lens corrections (Rotation, Distortion, vertical Transformation) to my RAW (NEF) images.
    When I open such an image in PS CS3 as a PSD all is fine, that means all the lens correction is applied.
    But when I open the same image in PS as a Smart Object the lens correction is not applied, i.e. PS shows the image with all LR-editing (such as color temperature, exposure, contrast, etc) except for the lens correction data.
    What is wrong here?
    I'm running LR 3.2 and PS CS3.
    Thank you for your input.
    ErnstK

    Thank you for your answers.
    It occurred to me - and Ian's post seems to confirm this - that PS CS3 is not fully compatible with LR3.2.
    When I chose <Edit in CS3> (to open the image as PSD) I get the message that my Camera Raw plug-in is 4.6 and it gives me the choice to <Open Anyway> or to <Render by LR>. I usually chose the latter and I assume that this is technically an Export.
    When I chose <Open as Smart Object> it just opens the image in CS3 without any dialog in between.
    I guess it's time to upgrade to CS5.
    Thank you all.
    ErnstK

  • Possible bug when rendered attribute set with EL

    I have the following outer panelform:
    <af:panelForm rendered="#{RoleSearch.roleSelected == RoleSearch.SUPERVISOR}">
    within this panelform i have a table and a selectone commandbutton,
    <af:commandButton text="Edit"
    action="#{RoleSearch.editDetails}">
    <af:setActionListener from="#{row.Userid}"
    to="#{processScope.userIdSelected}"/>
    </af:commandButton>
    don't worry about the parameter my action listener is settting.
    the problem is, when the commandbutton is encapsulated with an outer rendered component, it does not function, it does not trigger the action. if i manually set the rendered attribute to "true" things work fine.
    The components are displayed correctly, i.e. rendered correctly depending on my holder, however the commandbutton won't fire off the action when it is used like this.
    has anyone faced this problem before? is this a known issue?
    any help is much appreciated, i have had to write a few workarounds to resolve similar issues i have run into when developing with ADF BCs.
    thanks.

    Hi,
    i can't see any obvious problems with what you are doing especially considering that it works ok if you manually set the rendered attribute of the panelForm to true.
    Have you tried setting the rendered attribute at the command button level and leaving the panelForm rendered?
    Brenden

  • Possible bug when using Key Command

    Greetings,
    Can someone confirm this behavior in Logic 9? When I'm editing a plugin and hit my key command to go to a location, enter the measure # and hit enter - all **** breaks loose. It's as though I'm scrolling through a bunch of screensets and the enter location window still stays on top.
    Am I the only experiencing this? Misery sure does love company.
    Cheers

    fyi, it looks like this issue has been resolved with jdev 11.1.1.0.2 (Update 2)

  • Possible bug when loading dll through JNI

    Hi guys,
    I have come accross a strange occurance, if anyone can help me out i'd appreciate it lot.
    I have written an unmanged (MFC) dll which connects to a managed(.NET) dll.
    If I load the MFC dll without using any of the references to the managed dll everything is ok.
    But as soon as I include a call to initialize a managed member my java program just exits. Then if i try and run it again it gives me a stack overflow exception.
    The dll works absolutely 100% perfectly from other c++ applications (I've called all of its methods via a simple dos program), so it seems that there may be some protective layer that java is wrapping the dll in that isn't letting it make any managed calls.
    Has anyone had this problem before or know how to get around it?
    Below is the code from the unmanged (MFC) dll
         CNewDLLTestApp();
         void WriteToDevice(int Value);
         char ReadFromDevice();
            // this is the managed call, gcroot lets you call managed code from an unmanged area
         gcroot<JavaIntegrateManagedClass::Class1*>c;In the exposed java functions I initialize the class member c, and then call the regular dll functions.

    Sadly that is the complete error message.
    I've tried putting the load("DLL") in a try catch block but it never catches it. The debugger output screen just prints StackOverflowException.
    The JNI calling code doens't even get invoked at this point.
    * Class:     MainInterface
    * Method:    WriteToDevice
    * Signature: (I)V
    JNIEXPORT void JNICALL Java_MainInterface_WriteToDevice
      (JNIEnv *, jobject, jint Value)
         MessageBox( (HWND)NULL,"In java function","Unmanged DLL",MB_OK);
         //theApp.c->WriteToDevice(Value);
    }If I put the commented line back in the StackOverflowException occurs. If I leave it out everything is fine.
    c is a class within a managed DLL, which in turn links to a managed class.
    The layers may seem excessive but I understood it was needed to fool java into thinking it was calling unmanaged code.
    What I don't understand is how a standard C++ console application can make the calls no problem, but Java can't. Surely the execution of the dll process should be exactly the same.
    Thanks
    DRB2k5

  • BUG ? Create index on a partitioned table drops the complete table !

    Hi ...
    now i had twice the problem when i tried to create a local index (with 2 fields) on a partitioned table .
    I set initrans to 1 and maxtrans to 255 (i know - initrans has to be at least 2).
    I got an error - and the table (including the data) was gone ... :-((
    Has anybody the same behavior and is it a bug ??
    Christian

    See 1.5 Bad bug when creating index fails.
    Have fun,
    K.

  • Is it possible to make the attachment icon on my journals form a compulsary step when creating a new manual journal entry?

    Good day,
    Our company uses EBS 11.5.10.2. The company has a policy whereby any new manual journal needs to have the supporting documentation attached to it, using the attachment icon in the task bar.
    Users sometimes forget to do this, though. This has now prompted management to request that we try and make this process of attaching a document when creating a new manual journal compulsary to the process.
    Is this possible on the current version we are running on?

    Well, that depends on if you are using client/server or web. Currently there is a bug being investigated, which is preventing the cursor size from being altered. For client/server, do the following on the client machine (assuming Windows):
    Control Panel > Accessibility Options > Display > Cursor Width
    By increasing the width, the cursor will be more visible. The same is expected to work on the web, but currently is problematic and being investigated.

Maybe you are looking for

  • Accessing a single itunes library from multiple macs using a NAS???

    hi, at the moment i have a imac g5 holding all my itunes library files on its hard drive. i'm about to buy another mac to locate downstairs, and also have itunes on my windows laptop. i am thinking of moving the itunes library to a networked attached

  • HT1789 How can you rename your iPod in iTunes 11?

    How can you rename your iPod in iTunes 11? I am using a Mac and an iPod Nano (the old longer one)

  • [svn] 2810: FXG Bug Fix

    Revision: 2810 Author: [email protected] Date: 2008-08-11 17:48:51 -0700 (Mon, 11 Aug 2008) Log Message: FXG Bug Fix MXMLG-210 - [Gumbo_Priority] Unable to create second item after masked item Masks were broken for GraphicElements after the lifecycle

  • All files larger than the screen aligns to the right by default

    Hello, I looked around from the existing solution pool but could not find one so here I go; PROBLEM; All files or programs(Numbers, Pages, Finder, Web brousers, Itunes etc)that do not horizontally fit the sceen(ie requires horizontal scroll bar) in m

  • OpenGL Ps CS5 died after CS6 beta

    Using Ps CS5 12.04 on win7x64, 12GB,  Radeon 6780 1GB, dual HDD and dual monitors since last Oct when I bought this new PC and its always been fine with openGL even with extensions added and dual monitors in workspace setup. Still worked same most of