'New Table' context menu item is unavailable/grayed out (connected to mysql

Using Sql Developer 3.2.10..., JDK 1.6.0_11 (bundled) on Windows 7
DB is Mysql 5.5, using jdbc driver 5.0.8
When I connect to the db, and attempt to create a new table by right clicking on Tables, the option for New Table is grayed out. The db user has been granted all permissions.
My real goal is to create a table using an excel/csv, but unable to do this.
Also - when I click the New... button, and select Table, a dialog pops up to select a connection. It is empty and there are no connections available in it. I am unable to specify a connection there.
Any ideas about what might cause these options to be unavailable?
Edited by: EdVeloper on Oct 3, 2012 4:13 PM

Hi,
See the following thread, which echos a comment regarding third-party database support I have seen many times on this forum:
Oracle SQL developer to MySQL
Regards,
Gary

Similar Messages

  • Is it possible to change "link" context menu items' order (I want "open in new window.." be the first) ?

    I made an upgrade FF from v3.6.xx to v17.0.x and found that "Link" context menu items' order is not the same.
    v3.6 menu looks as following: 1."Open Link in new Window", 2."Open Link in new Tab",
    v17.0 menu items' order is opposit 1."Open Link in new Tab",2."Open Link in new Window",
    All other items' position are uninteresting for me.
    How to swap this two upper items in "link" context menu?

    Both ways are useful:
    * Menu Editor [https://addons.mozilla.org/en-US/firefox/addon/menu-editor/ https://addons.mozilla.org/en-US/firefox/addon/menu-editor/]
    'Drag-n-drop' in editor window is working.
    * Editing "userChrome.css" [https://support.mozilla.org/en-US/questions/791244?page=2#answer-161497 https://support.mozilla.org/en-US/questions/791244?page=2#answer-161497] .
    For my Windows XP path looks: "C:\Documents and Settings\%account%\Application Data\Mozilla\Firefox\Profiles\%random_name%\chrome\userChrome.css".

  • TableView Context Menu Item shows up when run on Java 8 until update 5 but not on later ones

    The code below runs as its name says on Java 8 update 5 but not on later ones:
    public class TableViewShowingOnlyAnAppendContextMenuItemIfRowIsEmptyElseDeleteIsIncluded extends Application {
        private final TableView<Name> table = new TableView<>();
        private final ObservableList<Name> data = FXCollections.observableArrayList(new Name("Jacob"),
                new Name("Isabella"), new Name("Ethan"), new Name("Emma"), new Name("Michael"));
        public static void main(String[] args) {
            launch(args);
        @Override
        public void start(Stage stage) {
            TableColumn<Name, String> column = new TableColumn<>("Name");
            column.setCellValueFactory(new PropertyValueFactory<>("name"));
            table.getColumns().add(column);
            table.setItems(data);
            ContextMenu contextMenu = new ContextMenu();
            contextMenu.getItems().add(new MenuItem("append"));
            table.setContextMenu(contextMenu);
            table.setRowFactory(tableView -> {
                TableRow<Name> row = new TableRow<>();
                row.contextMenuProperty().bind(
                        Bindings.when(Bindings.isNotNull(row.itemProperty()))
                                .then(showOnlyAppendContextMenuItemIfRowIsEmptyElseIncludeDelete())
                                .otherwise((ContextMenu) null));
                return row;
            Scene scene = new Scene(table);
            stage.setScene(scene);
            stage.show();
        private ContextMenu showOnlyAppendContextMenuItemIfRowIsEmptyElseIncludeDelete() {
            ContextMenu rowMenu = new ContextMenu();
            ContextMenu tableMenu = table.getContextMenu();
            if (tableMenu != null)
                rowMenu.getItems().addAll(tableMenu.getItems());
            rowMenu.getItems().add(new MenuItem("delete"));
            return rowMenu;
        public static class Name {
            private final SimpleStringProperty name;
            private Name(String name) {
                this.name = new SimpleStringProperty(name);
            public String getName() {
                return name.get();
            public void setName(String name) {
                this.name.set(name);
    Can help me find the error in the code? Or if there is none, is this a regression that should be submitted? As of now, all the PCs in use have 8u5.
    Thanks in advance.

    Correctly answered by James_D:
    http://stackoverflow.com/questions/28195552/javafx-tableview-context-menu-item-shows-up-when-run-on-java-8-until-update-5-bu
    pasted below:
    The fix is to create new menu items that are copies of the ones in the table's context menu:
    private ContextMenu showOnlyAppendContextMenuItemIfRowIsEmptyElseIncludeDelete() {
    ContextMenu rowMenu = new ContextMenu();
    ContextMenu tableMenu = table.getContextMenu();
    if (tableMenu != null) {
    for (MenuItem item : tableMenu.getItems()) {
    MenuItem rowItem = new MenuItem(item.getText());
    rowItem.setGraphic(item.getGraphic());
    rowItem.setOnAction(item.getOnAction());
    rowMenu.getItems().add(rowItem);
    rowMenu.getItems().add(new MenuItem("delete"));
    return rowMenu;

  • Looking for a 'view link target source' context menu item

    I'm looking for a 'view link target source' context menu item.
    I often open listings of servers' directories; they can include direct links to code files (*.py , *.pl, etc). When I click them directly, I'm asked to open them with an external editor which is not what I want to do; I want to view those files source inside of Firefox. I currently have to
    # right-click those links,
    # copy link location,
    # type "view-source:" in the Location bar,
    # paste the copied URL,
    # click Go.
    This gets time-consuming with the large amount of URLs I need to open.
    It's not a native feature for Firefox and a search at [http://addons.mozilla.org AMO] didn't come up with anything useful, for me at least.

    Hello,
    particularly, I performed the following steps:
    1. I created a SC in the local repository, which matches the SC of the track.
    2. I moved the exisiting DCs to the SC created in step 1.
    3. Now, I created new DCs in the SC in the track.
    4. I deleted all .project files from the local DCs.
    5. I copied all source files from the local DCs to the new track DCs.
    6. I checked-in these changes to the track.
    Kind regards
    Alexander

  • How to change the default position of context menu item? (C#)

    Hi,
    I have included a calendar context menu item with my Outlook Addin. But by default, its positioned at the last as shown in the picture below:
    I need a way to make it as the fourth item instead of last one. Also, I want set an icon for the same. How can I do that?
    Appreciate if you can give some sample examples.
    Thanks in advance.
    Thanks Prasad

    Hello Prasad,
    The
    Customizing Context Menus in Office 2010 article in MSDN describes the basics.
    You can specify the IdMso value of the built-in control after/before you need to insert your own:
    <button id="MyBtn" label="MyButton" insertBeforeMso="OpenSelectedItems" />
    See
    Office 2013 Help Files: Office Fluent User Interface Control Identifiers 
    for IdMso values.

  • Authorization for GoTo Context Menu Item in BI 7.0

    Friends,
    I am looking for the authorization object that controls whether or not a user can see the 'GoTo' option in the context menu on a query cell.  I have a need to have it on for some users and off for others.
    Thanks in advance.  I will award point of course...
    Regards,
    KB

    Was not an authorization for the context menu item, but authorization for the jump target.

  • Create an context menu item to open a file on a specific display

    Hello,
    I have an external display connected to my MBP, but I don't always need to use it so it's not always on. I'd like to have a way to open a file (or application) on a specified display on a case by case basis. I know that I can assign an application to open on a specific display by right-clicking on the app in the dock and selecting options->assign to. The problem with this is that it's a global change. When I'm working on school work, I usually like to have reference material (pdfs, wepages, etc) open on the external display while I'm working in Word on the MBPs monitor.
    What I'd like to be able to do is right click on the file (or app) and use a context menu item to open the item on a specific display. Does anyone know of an automator action/applescript/terminal command to create a context menu item like this?
    Thanks.

    I use "Open Terminal Here" script for that:
    http://www.entropy.ch/software/applescript/

  • "Send link..." context menu item does not launch the mail client

    This was working in Firefox 12 but with the latest update to Firefox 13.x no mail client is launched (mine is Thunderbird) when context menu item "Send link..." is clicked.
    '''I have tried this with all addons disabled''' but the same problem is occurring.
    Does it happen for you? If not, how could I solve it?
    I will report as a bug if others have this problem.
    Thanks.

    I changed the network.protocol-handler.external.mailto setting in about:config to the default value (true) and that seemed to fix it.
    I don't know what changed it before though.

  • Remove or Hide context menu item "Add More Items..."

    Hi,
    I'm trying to edit UserChrome.css to remove or hide the context menu item "Add More Items..." that you find under the sidebar menu.
    Thanks.

    Firefox doesn't come with this item, so it must be added by an extension.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem.
    *Switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance
    *Do NOT click the Reset button on the Safe Mode start window
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Reusable Context Menu Item - Web Template Termination

    When I insert a Context Menu Item that has been saved as a resuable web item the web template teminates with the following error when it is executed.
    The following error does not occur if I use a Context menu item - only if I use a resuable context menu item.  We are on SP10 for both front and back end.
    Does anyone have a similar problem?
    <b>Error Summary</b>
    Exception occured while processing the current request; this exception cannot be handled by the application or framework
    If the information on this page does not help you locate and correct the cause of the problem, contact your system administrator
    To facilitate analysis of the problem, keep a copy of this error page Hint: Most Web browsers allow you to select all content, and copy and paste it into an empty document (such as in an email or simple text file)
    Root Cause
    The initial exception that caused the request to fail, was:
    Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XMLParser: No data allowed here: (hex) 0(:main:, row:2, col:0)

    Hi
    Just to close the loop on this problem:
    This is my final reply from SAP.
    <i>"Dear Customer,
    Patch is available on Service Market Place for download."</i>
    If you want to a more usefull explanation of what to do and save your time scratching around the Software Distribution Center I would recommend referring to OSS note 1023623 and 1011241.
    I hope this helps anyone else facing the same problem.
    Regards
    Ian

  • Kill "Open page in Internet Explorer" context menu item?

    This context menu item appears when I right-click/secondary-click links in Safari.  Can I get rid of this?
    I believe this was added by Parallels Desktop 9, which I have since uninstalled. 
    Stupid little thing, but it's bugging me. Especially when I click that choice by mistake (Yes, I am an OS X/Mac n00b.)
    rMBP, 15-inch, early 2013, OS X 10.9

    http://www.parallels.com/open-in-ie/ it's a safari extention. In the link is shown how to remove it.

  • Blank context menu items

    Hi all.
    I have blank context menu items (I think thats what they are called) when I right click on something - related to Adobe
    Any ideas on what gives?
    Running windows 8.1 pro and CS6.

    Hi.
    Yes I have tried repairing. It is Acrobat X Pro - version 10.1.10

  • Hide PerformancePoint "Show Details" Context Menu Item

    Hi,
    How to Hide PerformancePoint “Show Details” Context Menu Item in ScoreCard?
    I have tried the below code but i didnt get anything.
    if (PPSMA.MenuOptionHelper) {       
                PPSMA.MenuOptionHelper.prototype.showDetails = function () { return false; };
    Thanks & Regards
    Poomani Sankaran

    Hi Poomani,
    Refer this article
    http://electrovoid.wordpress.com/2012/05/03/pps-hide-show-details/
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • Is it possible to create a checkmark next to a context menu item in a Tree in LabVIEW?

    Hello,
    I'm creating a custom application where a particular context menu will be shown to the user depending on what item in the Tree they have right-clicked on. One of the items in the menu that I would like to display is essentially a "Disable" option. I'm looking for a way to show the user the current state of this Disable option by providing a checkmark next to it if they have already clicked it for a particular item in the tree. Here's a screenshot of a similar checkmark from the LabVIEW dev environment drop-down menus:
    Does anyone know if it is possible to create a context menu with a checkmark like the one above in a Tree in LabVIEW? I've tried searching the web and here in the NI forums but without much luck. Thanks!
    Lars L

    Wow, I know this one!
    I used it a couple of years ago (LV 8.6)
    There is an option to "Set Menu Item Info" that allows you to set the check for a context menu item.
    http://zone.ni.com/reference/en-XX/help/371361H-01/glang/set_menu_item_info/
    I used it in my Tree
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness

  • Context Menu Item Click crashes IE

    Hi
    can anybody tell me why my flex 2 final release application
    crashes when a context menu item is selected ???
    i can give code if required???
    thanks
    mehul

    FANTASTIC!  I love right clicking stuff.  Thank you very much!
    More please!

Maybe you are looking for

  • New iPhone 5 won't connect with itunes

    I am having trouble accessing the iTunes Store on my new phone. It keeps saying I can't connect to the iTunes Store and it throws up the same error on my computer giving me the error code 5002. I have tried many fixes but none of them work. Anyone kn

  • How to wait for a digital input to go high?

    I bet the following question is explained somewhere but I don't know how to find it. Is there an optimal way to wait for a digital input to transition from 0 to 1? I mean, other than creating a loop that continously polls the input line is there a be

  • Image Maps Linked to Files in External Projects

    Hi, I'm trying to insert an image map into project A that links to a topic in project B. Both projects are merged into the same parent project. I want the linked topic to appear in a popup window. I can make this work if the topic to which I'm linkin

  • Is it possible to turn off the infrared emitter without closing the sensor

    Hi, The Kinect v1 SDK had a function ForceInfraredEmitterOff(), which could be called to turn off the infrared emitter without having to close the Kinect. This was very useful for applications using multiple Kinects as it provided an easy way of prev

  • Formatting date in Layout Designer

    Hi all, I have to print a check and the payment document (pull from a variable field) shows the date as YYYYMMDD and I need this formatted as YYYY/MM/DD just using PLD Any idea?? Thanks Lucas