Ctrl+click navigation changes schema

Hi,
I have a problem of context selection between schema when using the Ctrl+click navigation inside packages.
Basically, if I'm connected in SQLDev as USER1, schema USER1 and I open a PACKAGE1. This package contains a PROCEDURE1 containing some calls to a PACKAGE2.PROCEDURE2.
When I do "Ctrl+click" on this to navigate into it, SQLdev brings me to the PACKAGE2 but in another Schema (my USER1 having DBA rights).
If I revoke DBA rights, then I stay in the same schema.
Is there a way to stay in the same schema by default when using the navigation?
My installation:
SQLDev Version 3.0.02 (Build main-02.37)
SQL*Plus: Release 10.2.0.3.0
DB: Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 on Windows XP

Apparently another symptom of the same issue bugged in 30EA1- SQL Developer opening wrong package
I myself reverted to 2.1.1. Even paying extra attention as to which connection is listed in the dropdown, I was still losing code.
Regards,
K.

Similar Messages

  • I would like to change the mouse shortcut for ctrl-click to be shift-click

    Hi,
    basically I would like to change the mouse shortcut for ctrl-click to be shift-click - that is I want to harmonize my browser shortcuts and there are other browsers out there that open a new tab on shift-click, not on ctrl-click.
    How can i customize this?
    THNAKS!!!

    Firefox has always used Ctrl + left click to open links in a new tab and Shift + left-click to open a link in a new window.
    Maybe a tab related extension can change that behavior.
    *Tab Mix Plus: https://addons.mozilla.org/firefox/addon/1122
    *Tabberwocky: https://addons.mozilla.org/firefox/addon/14439
    *Tab Control: https://addons.mozilla.org/firefox/addon/1480

  • Navigating using CTRL-Click

    Hello,
    I was looking through some of the Jdeveloper demos available on the Oracle website about the code editor. I was trying to use the functionality to navigate between classes by Ctrl-Clicking on an object with my source code. Just like the Go To Declaration option on the RMB menu. When I use ctrl-click, nothing happens. Is this a bug or am I missing something?
    The version of Jdeveloper I am using is Oracle JDeveloper 10G Developer Preview - version 10.1.3.0.2
    Thanks in advance.

    You are using the developer preview. Switch to the production version of JDeveloper 10.1.3 and you'll have this functionality. You can download it from OTN.

  • The ctrl+click method of opening a link in a new tab has changed to opening in a new window. How do I open in a new tab with a hotkey/change the hotkey back?

    This is consistent and started with the beta.

    I have no problem with {Ctrl + Click} opening a link in a new Tab in 4.0b9. And {Shft + Click} still opens a link in a new Window.
    Do you have that problem when running in the Firefox SafeMode? <br />
    [http://support.mozilla.com/en-US/kb/Safe+Mode] <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    If not, see this: <br />
    [http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes]

  • Copying a table with the right-click menu in schema browser fails to copy comments when string has single quote(s) (ascii chr(39))

    Hi,
    I'm running 32-bit version of SQL Developer v. 3.2.20.09 build 09.87, and I used the built in context menu (right-clicking from the schema browser) today to copy a table.  However, none of the comments copied.  When I dug into the PL/SQL that the menu-item is using, I realized that it fails because it doesn't handle single quotes within the comment string.
    For example, I have a table named WE_ENROLL_SNAPSHOT that I wanted to copy as WE_ENROLL_SNAPSHOT_V1 (within same schema name)
    1. I right-clicked on the object in the schema browser and selected Table > Copy...
    2. In the pop-up Copy window, I entered the new table name "WE_ENROLL_SNAPSHOT_V1" and ticked the box for "Include Data" option.  -- The PL/SQL that the menu-command is using is in the "SQL" tab of this window.  This is what I extracted later for testing the issue after the comments did not copy.
    Result: Table and data copied as-expected, but no column or table comments existed.
    I examined the PL/SQL block that the pop-up window issued, and saw this:
    declare
      l_sql varchar2(32767);
      c_tab_comment varchar2(32767);
      procedure run(p_sql varchar2) as
      begin
         execute immediate p_sql;
      end;
    begin
    run('create table "BI_ETL".WE_ENROLL_SNAPSHOT_V1 as select * from "BI_ETL"."WE_ENROLL_SNAPSHOT" where '||11||' = 11');
    select comments into c_tab_comment from sys.all_TAB_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and comments is not null;
    run('comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '||''''||c_tab_comment||'''');
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       run ('comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''');
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    The string of the table comment on WE_ENROLL_SNAPSHOT is this:
    WBIG table of frozen, point-in-time snapshots of Enrolled Students by Category/term/pidm. "Category" is historically, and commonly, our CENSUS snapshot; but, can also describe other frequencies, or categorizations, such as: End-of-Term (EOT), etc. Note: Prior to this table existing, Census-snapshots were stored in SATURN.SNAPREG_ALL. All FALL and SPRING term records prior-to-and-including Spring 2013 ('201230') have been migrated into this table -- EXCEPT a few select prior to Fall 2004 (200410) records where there are duplicates on term/pidm. NO Summer snapshots existed in SNAPREG_ALL, but were queried and stored retroactively (including terms prior to Spring 2013) for the purpose of future on-going year-over-year analysis and comparison.
    Note the single quotes in the comment: ... ('201230')
    So, in the above PL/SQL line 11 grabs this string into "c_tab_comment", but then line 12 fails because of the single quotes.  It doesn't know how to end the string because the single quotes in the string are not "escaped", and this messes up the concatenation on line 12.  (So, then no other column comments are created either because the block throws an error, and goes to line 22 for the exception and exits.)
    When I modify the above PL/SQL as my own anonymous block like this, it is successful:
    declare
      c_tab_comment VARCHAR2(32767);
    begin
    SELECT REPLACE(comments,chr(39),chr(39)||chr(39)) INTO c_tab_comment FROM sys.all_TAB_comments WHERE owner = 'BI_ETL'   AND table_name = 'WE_ENROLL_SNAPSHOT'  AND comments IS NOT NULL;
    EXECUTE IMMEDIATE 'comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '''||c_tab_comment||'''';
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select REPLACE(comments,chr(39),chr(39)||chr(39)) comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       EXECUTE IMMEDIATE 'comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''';
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    On lines 4 and 8 I wrapped the "comments" from sys.all_tab_comments and sys.all_col_comments with a replace command finding every chr(39) and replacing with chr(39)||chr(39). (On line 8 I also had to alias the wrapped column as "comments" so line 10 would succeed.)
    Is this an issue with SQL Developer? Is there any chance that the menu-items can handle single quotes in comment strings? ... And, of course this makes me wonder which other context menu commands in the tool might have a similar issue.
    Thoughts?
    thanks//jacob

    PaigeT wrote:
    I know about quick drop, but it isn't helpful here. I want to be able to right click on a string or array wire, navigate to the string or array palette, and select the corresponding "Empty?" comparator. In this case, since I do actually know where those functions live, and I'm already using my mouse to right click on the wire, typing ctrl-space to open quick drop and then typing in the function name is actually more work than navigating to it in the palette. It would just be nice to have it on hand in the location I naturally go to look for it the first time. 
    I don't agree with this work flow.  Right hand on mouse, left hand on home keys.  Pressing CTRL + Space is done with the left hands, and then you could assign "ea" to "Empty Array" both of which is accessible with the left hand.  Darren posted a bunch of great shortcuts for the right handed developer.
    https://decibel.ni.com/content/docs/DOC-20453
    This is much faster than waiting for any right click menu navigation, even if it is found in the suggested subpalette.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Hyperlink + ctrl click opens the page in new tab in my website. it should open it in the same window of my website

    When i do a ctrl+hyperlink click in my website running in firefox, it opens up in a new tab, I dont want the ctrl+hyperlink click to open in new tab or new window. It should open in the same browser. (works as required in IE 7)
    == This happened ==
    Every time Firefox opened

    Ctrl+left click on a link or bookmark will open in a new tab. That is a standard Firefox keyboard shortcut. Middle-click will do the same (Middle-click = press the scroll wheel). On the following page, scroll down to "Web Navigation" or Find (Ctrl+F), enter "Ctrl+lef" (without quotation marks) in the Find box. Read the footnote 4 about how to change from background tab to foreground tab.
    See: http://www.7is7.com/software/firefox/shortcuts.html
    To open a link or bookmark in the currently active tab, simply click on the link or bookmark. Your current tab will be over-written with the new link or bookmark.
    The following page shows the shortcuts for IE7. Click "Working with tabs". It shows Ctrl+click will "Open links in a new tab in the background" and on the next line, it shows CTRL+SHIFT+click will "Open links in a new tab in the foreground".
    See: http://windows.microsoft.com/en-US/windows-vista/Internet-Explorer-keyboard-shortcuts#
    Maybe you have installed something to change the shortcuts on your installation?
    <u>'''''Other Issues''''': to correct security/stability issues</u>
    <u>'''Update Java'''</u>: your version 1.6.0.18; current version 1.6.0.20 (<u>important security update 04-15-2010</u>)
    ''(Windows users: Do the manual update; very easy.)''
    See: '''[http://support.mozilla.com/en-US/kb/Using+the+Java+plugin+with+Firefox#Updates Updating Java]'''
    Do the update with Firefox closed

  • Safari 2.0.4 Ctrl-Click not working

    Hi,
    I have searched and searched for an answer for this, but no luck so far.
    I'm on 10.4.10 with Safari 2.0.4 (419.3). Somehow, I've lost the ability to ctrl-click on a link in Safari, doing it does nothing. The status bar at the bottom of the window says "Display a menu for <URL>", but the menu very doggedly does not display...
    This happened weeks and weeks ago, and I've been searching for an answer to no avail. Today I was on another Mac and opened Safari and tried ctrl-clicking on a link and I got the expected menu. I love it when it works.
    I have just tried swapping the Preview plugin for the Adobe reader plugin, and that didn't help...
    Does any body have any ideas what might be wrong?
    Many thanks,
    bk

    Hi
    Back to my earlier suggestions in this order:
    Reapply the 10.4.10 Combo Update. Do not use the computer while the Update is running. After the restart, "repair permissions" using Disk Utility in your Utilities folder. Start Safari.
    If no change, then I suggest reinstalling Safari 2.0.4. Here's how to do it:
    Have a look at this Apple article for installing other software, including Safari, from the Tiger DVD - see the section titled More custom reinstallation options with Mac OS X 10.4.
    Other Steps
    Move the Safari.pkg file in the HD>Library>Receipts folder to the trash.
    As a precaution, prior to reinstalling Safari, move your Safari folder, found via the Finder in your Home Folder>Library to the Desktop. It has your bookmarks, history etc. Once the reinstall is completed, move the folder back to its original location writing over the newly created folder.
    Remember too, the version of Safari you install will be specific to the Version on your installer DVD. Therefore, run Software Update and see if Safari updates appear. If not, reapply the 10.4.10 combined update to bring Safari up to the current version.
    "Repair Permissions" via Disk Utility in your Utilities folder when you are finished.

  • How to override Ctrl-Click behavior in Java L&F

    On the Mac, Ctrl-Click is the popup trigger. While Java L&F designers were obviously aware of this (it is warned about in the Java Look and Feel Design Guidelines, 2nd ed, page 106). However, just two pages later (page 108), they then generically specifify that Ctrl-Click is used in lists and tables to toggle the selection.
    The implementation of the Java L&F does not appear to consider the Mac's use of Ctrl-Click and still toggles selection. If there is an additional mouse listener that shows a menu in response to the popup trigger, it will ALSO open the menu on Ctrl-Click.
    What is the best way to overide the Ctrl-Click behavior in JTable etc. to NOT do the toggle selection? Note that this is a mouse event and not a key event, so it can't be turned off or changed by the getActionMap() mechanism.
    Also, does anyone know what the "Command" modifier on the Mac (Command-Click is supposed to toggle selection on Macs) shows up as in the InputEvent (isMetaDown(), isAltGraphDown()...)?

    Try extending the JList and override the processMouseEvent(MouseEvent evt) method and show your popup menu when the user clicks the mouse while holding the CTRL key down. The code below demonstrates the same.
    import java.awt.BorderLayout;
    import java.awt.event.MouseEvent;
    import java.util.Vector;
    import javax.swing.JFrame;
    import javax.swing.JList;
    import javax.swing.JOptionPane;
    import javax.swing.JScrollPane;
    import javax.swing.ListModel;
    import javax.swing.WindowConstants;
    public class Temp extends JFrame {
         public Temp() {
              super("Temp");
              setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
              String [] items = {"One", "Two", "Three", "Four", "Five"};
              JList list = new MyList(items);
              JScrollPane scroller = new JScrollPane(list);
              getContentPane().add(scroller, BorderLayout.CENTER);
              pack();
              setVisible(true);
         class MyList extends JList {
              public MyList() {
                   super();
              public MyList(Object[] listData) {
                   super(listData);
              public MyList(Vector listData) {
                   super(listData);
              public MyList(ListModel dataModel) {
                   super(dataModel);
              protected void processMouseEvent(MouseEvent evt) {
                   System.out.println(evt.isPopupTrigger());
                   int onmask = MouseEvent.CTRL_DOWN_MASK | MouseEvent.BUTTON1_DOWN_MASK;
                   if(evt.getModifiersEx() == onmask) {
                        JOptionPane.showMessageDialog(this, "Control + click");
                   else {
                        super.processMouseEvent(evt);
         public static void main(String[] args) {
              new Temp();
    }Hope this helps
    Sai Pullabhotla

  • I'm using Firefox 3.6.11 and it has stoped opening a new tab when I ctrl-click. I've recently updated AVG - could this have affected it?

    The AVG installation included a "safe search" and "security toolbar". Otherwise no changes to previous config that I know of (!)
    If I hold down Ctrl when clicking on a link no new tab opens ad i just link to the new site on the currently open tab.
    How can I get Ctrl-click to work again?
    Thanks

    Upgrade your browser to Firefox 9 and check
    * getfirefox.com

  • Sqldev 4 EA: ctrl-click not working

    ctrl-click for drilldown to objects form pl/sql code does not work.
    I get an annoying message to put my object in a "Select * from" statement.
    However this does not work either.

    Select the Move tool and in the Options bar change the dropdown from Group to Layer, that should fix it

  • Can't Ctrl+Click My Threads to open in new tab (Chrome)

    Today I find that I can't Ctrl+Click "My Threads" or "My Forums Threads" or "My Profile"  (any of those options in the Quick Access menu) to open it in a new window in Chrome.  Right click and Open in new tab works
    fine, but the Ctrl+Click doesn't work.
    This is crippling.  Must be fixed.
    See also
    this related issue.
    EDIT:  (oops, meant to post this in Forums Issues)

    Today I find that I can't Ctrl+Click "My Threads" or "My Forums Threads" or "My Profile"  (any of those options in the Quick Access menu) to open it in a new window in Chrome.  Right click and Open in new tab works fine, but the Ctrl+Click doesn't
    work.
    This is crippling.  Must be fixed.
    See also
    this related issue.
    EDIT:  (oops, meant to post this in Forums Issues)
    Personally, I do not use the navigation facilities of the forums. Rather, I have created browser bookmarks for individual forums, groups of forums, My Threads, My Profile, My Forums, My Settings... whatever. These will not be affected by the kind of issues
    you mention.
    Not to imply this is not a legitimate issue.
    David Wilkinson | Visual C++ MVP

  • Adding search options in ctrl + click

    When highlighting a word, address, etc. in Safari and then pressing ctrl + click, several options are made available ("Search in Spotlight," "Search in Google," etc.). I would like to know if I can add to this "Search in Google Maps," and if so, how? Otherwise, I will have to continue to use the "Search in Google" option, going to that new window, and then clicking on "Maps." If this is possible, I think it would be a terrific short cut.
    Any help would be greatly appreciated.
    Thanks in advance.

    Safari Enhancer offers the ability of changing the default toolbar search engine, which will also update the contextual menu, however it has no means of manually specifying a search engine (Google Maps is not one of the preset choices). Maybe if you write the authors, or reverse engineer their software?

  • Can't "open with" using finder ctrl click

    Hi-
    Sometimes when in the finder and I want to open an image in photoshop instead of preview i can ctrl click and select 'open with'. However, sometimes when I ctrl click on the image, the image is unselected and the only options that come up are the standard finder window options. Sometimes, when I try multiple times it will eventually allow me to "open with" but when I do - it opens up a completely different file than I ctrl clicked on.
    Any ideas why I am able to do this on some images and not others? I have noticed this in earlier versions of osx as well.
    ps- yes i am ctrl clicking on the image's icon (not next to it or the name)
    Thanks!!!

    Personally I have never seen this. If you have it on several different machines I would suspect something that you routinely install is causing a problem, perhaps some Contextual Menu item that you use.
    Far simpler way to open a file in another application is to simply drag the file onto the application's icon in the Dock. I do that all the time. I often have jpegs set to open in Preview by default, since Photoshop is such a memory hog and takes forever to launch. Rather than change this preference when I actually want to open and work with a file in PS I simply drag it to the PS icon.
    Francine
    Francine
    Schwieder

  • How to stop newtab-page flickering/refreshing when opening new tabs by ctrl-clicking thumbnails?

    Often when opening new tabs from thumbnails in newtab-page (about:newtab) the whole newtab-page refreshes itself or otherwise flickers. This sometimes causes that some new tabs are not opened when ctrl-clicking multiple thumbnails in a row. Does the newtab-page recalculate after every click what thumbnails it should show and this could cause the flickering effect? (Although I don't see changes in thumbnail order.)

    Hi FFanatic,
    Please update to version 32 to see if this is still happening. Go to About Firefox and click the update button.

  • Ctrl-Click Window Settings

    Hello All,
    I'm working on an animation in Flash, and I'm doing a lot of right-clicking at the bottom of the screen when working on the timeline. It's really annoying to have to roll-over the down arrow and wait for the window to scroll every time. I was just curious if there was a way to set the ctrl-click window to appear higher, displaying everything, rather than forcing the user to wait for the scroll.
    I know I can just change the location of the timeline, but I like it down there.

    So what I'm getting is that there's no way to set the ctrl-click menu to display all items rather than scroll?
    I don't see how you'd do it. It would have to be a choice in the application preferences, if it can even be done. A contextual menu is going to appear according to Apple's programming guidelines and API's. If it has room to go down, it will.
    The only way to fix it is a hack that requires even more work?
    It's not a hack. Just grab the top gray bar of the entire Flash workspace and move it down on the screen so part of the application window is off the bottom of the screen, but still showing the timeline dashes. Having the timeline that close to the bottom of the screen forces the contextual menu to open in an upward manner. There is no other way to do what you want.

Maybe you are looking for