Mysql Schema not visible

I am running Creator and connecting to remote database with mysql connector. The driver installed OK and the connection test comes back OK. I have granted priveledges on the mysql database and everything is fine. When I go to the modify data source area and choose the schemas panel there are no schemas listed. When I click on the get Schemas button nothing happens. Am I missing something?
Thanks
Gary Lyons

Make sure, there are schemas in the selected database. If 'm correct it is possible to create a MySQL database with no schemas.
- Winston

Similar Messages

  • Tables in a different schema not visible from function

    I'm getting a really weird error in a function that I wrote. I have user "A" who has access to schemas for users "B" and "C". I need to update a table in schema "B" with data from schema "C". So, I created a function that selects information from a table in schema "B", uses that information to find the data of interest in schema "C" and then I update the table in schema "B" with the information I just looked up in schema "C". Clear so far?
    Anyway, when I try to create the function (I"m using SQLPLUS for all of this) I get an error message that the tables I am referencing in schema's "B" and "C" do not exist. However, if I modify the function so that I select a column that doesn't exists from a table in schema "B", then I get an error pointing this out to me. So, it seems weird that I have enough visibility into schemas "B" and "C" to know if I am accessing data by the correct column names, but when the column names are correct, I get an error message saying "table or view does not exist". I am in my development environment, and user "A" is granted the "DBA" role.
    So, here is my function. Note that I have qualified the table names with the schema owner (i.e. B.KPF_FOLDER_ITEMS) Any tips would be greatly appreciated. Database is 9i
    CREATE OR REPLACE FUNCTION migrate RETURN number
    IS
         v_parent_item_id           number(6);
         v_item_id               number(6);
         v_line_Item_id          number(6);
         -- variables for holding data returned from the actual product tables
         v_parent_item_number     varchar2(100);
         v_color_code          varchar2(100);     
    CURSOR folderProducts IS
         SELECT ITEM_ID as PRODUCT_PARENT_ITEM_ID, COLOR_ITEM_ID as ITEM_ITEM_ID, LINE_ITEM_ID as LINE_ITEM_ID
         FROM B.KPF_FOLDER_ITEMS
         WHERE table_prefix = 'STRL';
    BEGIN
         OPEN folderProducts;
         LOOP
              FETCH folderProducts INTO v_parent_item_id, v_item_id, v_line_item_id;
              EXIT WHEN folderProducts%NOTFOUND;
              -- get the product number
              SELECT BLAH.PARENT_ITEM_NUMBERX INTO v_parent_item_number
              FROM C.STRL_PRODUCTS BLAH
              WHERE BLAH.PARENT_ITEM_ID = v_parent_item_id;
              -- now get the color code
              SELECT ITEM.COLOR_FINISH_CODE INTO v_color_code
              FROM C.STRL_ITEMS ITEM
              WHERE ITEM.ITEM_ID = v_item_id;
              -- now, update the record in the kpf_folder_items table
              UPDATE B.KPF_FOLDER_ITEMS
              SET PRODUCT_NUMBER = v_parent_item_number,
                   COLOR_CODE = v_color_code
              WHERE LINE_ITEM_ID = v_line_item_id;
         END LOOP;
         CLOSE folderProducts;
    END;
    Edited by: user10219585 on Sep 3, 2008 11:30 AM correctly identified the schema for one of the tables.
    Edited by: user10219585 on Sep 3, 2008 11:31 AM

    Stored objects with DEFINER rights (default for stored objects) ignore role based privileges. Make sure SP owner is directly (not via role) granted privileges on objects in other schema.
    SY.

  • Trip Schema is not visible in FITVFELD_WEB

    Hi,
    When I made some changes in the Trip schema 01 for country Germany and saved, the trip schema is not visible in the left hand panel at all. But when I try to copy 99 to 01, it says '01' already exists. This means the trip schema 01 is available and not visible in transaction FITVFELD_WEB.
    Appreciate if anyone suggest to make this visible to make further changes.
    Regards,
    Kumar

    Narayana,
    It is displayed the trip schema 01 in the table T706S and V_T706S and transaction FITVFELD.
    But it is invisible in the trasaction FITVFELD_WEB.
    Thanks.
    Kumar

  • Sequences are not visible to user/schema

    Hi
    I have copied a schema(abcd1)(schema level refresh) from prod to dev(abcd2),i verified that all objects(tables,views,synonyms and sequences etc..) got created in the dev schema(abcd2) ,but now the client complains that the sequences are not visible to user/schema(abcd2) in dev,he says it was visible before and that they are visible to another schema(abcd3) in dev.... can anyone please advise? Thanks!

    877410 wrote:
    Elapsed: 00:00:00.09
    SQL> SELECT * FROM all_tab_privs WHERE table_name = 'ABC_WXYZ_PW_SEQ';
    no rows selectedThat means the sequence either doesn't exist, or the user that ran the query doesn't have access to the sequence. If you have an account with DBA access I'd try running the query against the DBA_TAB_PRIVS view.
    You may also want to query the _SEQUENCES (ALL, USER, DBA) view to see if the sequence exists.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Drop down boxes do not show up. My tabs are not visible. I could barely see the box to type in this question. Something is off. I deleted and reinstalled program it is still just floating words. I work on a Mac with ox 10.6.8

    The browser boxes, tabs, and links do not show up with the needed outlines, colors, and shapes. This box I am typing in was barely visible. Above this box is a set of two verticle parallel bars. When I moused over it, I saw it was for inserting a link, but if I had not been curious I would not have known what those lines were for. When I look at this page on PC I have a colored blue backdrop. It is not visible on the Mac. The search box does not have the image of the magnifying class and the arrow does not show up where it should be. The words Post Question just appear below the statement we have made some educated guesses about your browser. I thought maybe it had been a theme that was applied, but I do not see how it could have come on when I trashed the old version of the firefox.

    A;though the CSS is very well documented, there are those that ignore those signs. Look at the following
    /* Menu item containers, position children relative to this container and are a fixed width */
    ul.MenuBarHorizontal li
        margin: 0;
        padding: 0;
        list-style-type: none;
        font-size: 100%;
        position: relative;
        text-align: left;
        cursor: pointer;
        width: auto;
        float: left;
    The rest have been given a width of 15em, so this value may be a good start.
    DESIGN INFORMATION: describes color scheme, borders, fonts
    /* Submenu containers have borders on all sides */
    ul.MenuBarHorizontal ul
        border: 1px solid #CCC;
       width: auto;
        background-attachment: fixed;
    Just keep the border property and remove the other two.
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
    ul.MenuBarHorizontal li.MenuBarItemIE
              display: inline;
              f\loat: left;
              background: #FFF;
    The following is the original for the above
    BROWSER HACKS: the hacks below should not be changed unless you are an expert
    /* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
    ul.MenuBarHorizontal iframe
        position: absolute;
        z-index: 1010;
        filter:alpha(opacity:0.1);
    /* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
    @media screen, projection
        ul.MenuBarHorizontal li.MenuBarItemIE
            display: inline;
            f\loat: left;
            background: #FFF;
    Cheers,
    Gramps

  • External hard drive not visible on Mac Mini

    I just purchased a Mini with Lion.  The Seagate Freeagent external hard drive is visible from finder on the Mini but it is "read only" and it is not visible on the wireless network to my macbook.  How can I make the external hard drive read write and make it visible on the network?

    OS X can read an NTFS formatted drive, but not write to it.
    Sharing drives | Utilities - Page 1 | Macworld
    If you want to use the drive for sharing files between Window's and Mac's, then MS-DOS / FAT-32 works fine, except that it has a 4GB single file size limit.
    If you are going to use the drive exclusively with your Intel Mac's for sharing, backup and booting, then use GUID Partition Table / Mac OS Extended (Journaled) for the Partition Scheme and Format.
    Format a Drive to Boot Intel Macs | Tips | The Mac Observer

  • Footer is not visible in Table control at runtime

    hi everybody i read some thread about footer not visible...but unable to conclude what to do should for paginator but doing this lightspeed will be losing...what is paginator and lightspeed
    Second should leave how it visible at run time i.e without footer....and with scroll at leftside

    >what dose lightspeed rendering engine means?.
    Lightspeed is the name of the rewritten rendering engine in Web Dynpro as of NetWeaver 7.01. It has many new features and in particluar large performance improvements over the 7.0 version of the rendering engine.
    >Can we use ajax in webdynpro?
    NetWeaver 7.01 and higher with Lightspeed activated has AJAX in the rendering framework.  It is used by some of the UI elements and by the delta renderer itself.  You can not directly use AJAX in your programming model, however, for validation or other such approaches. Web Dynpro remains a server side programming model with AJAX to support some UI elements (SuggestValues, ThresholdSlider, etc).
    >Can we design the view in different color front i means can we design as we required
    You can create a Theme using the Portal Theme Editor or the Eclipse based standalone theme editor.  Themes are the only supported way to change the color scheme or design of Web Dynpro applications.

  • BPM TASK IS not visible in UWL  Inbox

    Hi  BPM Expert,
      I am facing the big issues in BPM process Triggered problem. earlier i used  to BPM start using Web service with Two entity as ID and Username  but its was  working fine .but i have some requirement to  adding one element in Existing WSDL entity as casename  , i have added that element and execute the web service using WEBDYNPRO application ,but Task is not visible in UWL inbox but earlier it was working perfectly,  after adding that field ,BPm tax is not visible UWL inbox ..
    Please guide me ,Its urgent...Plz plz..
    Its showing error as
      Technical issues is triggered during the process creation..
    Thanks
    sudhir

    Hi ,
      I am executing the WEbservice using WSNAVIGATOR but its not execute , its getting HTML log error as  below..
    1-Web service returned error. Fault Code: "(http://schemas.xmlsoap.org/soap/envelope/)Server" Fault String: "Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE"
    2-
    HTTP/1.1 500 Internal Server Error
    server: SAP NetWeaver Application Server 7.20 / AS Java 7.20
    content-type: text/xml; charset=utf-8
    date: Sat, 26 Nov 2011 11:40:56 GMT
    transfer-encoding: chunked
    Set-Cookie: <value is hidden>
    2e4
    <?xml version="1.0" encoding="UTF-8"?><SOAP-ENV:Envelope xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"><SOAP-ENV:Body><SOAP-ENV:Fault><faultcode>SOAP-ENV:Server</faultcode><faultstring>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</faultstring><detail><yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException xmlns:yq1='http://sap-j2ee-engine/error'>Could not retrieve SDO HelperContext for service_id nsn.com/claimbpmproject/PRINVOKE</yq1:com.sap.engine.interfaces.webservices.runtime.RuntimeProcessException></detail></SOAP-ENV:Fault></SOAP-ENV:Body></SOAP-ENV:Envelope>
    0
    Thnaks
    Sudhir

  • In webdynpro abap , the ui layout is not visible. please read query fully

    hi , in webdynpro abap , the UI Layout is not visible. 
    I did some settings .
    1) in SICF  t-code , i actvate the all services realted to http . i dont know which services properly need to webdynpro ui layout.
            after activating those services, ui elements are coming . but when i am tryin to drag ui elemetns in to UILayout , it showing some error message. I am not able to drag ui elemetns to ui layout.
    Please tell how to solve this problem.
    1)  if the solution is regarding ip address in host file, please guide me in depth step by step.
    2) if the solution is realted to browser settings , please guide me in depth each step by step for settings   in browser .

    Hi sujana,
    I had a similar problem..
    if u hav a look at ur url you will come to know the following things:
    <schema>://<host>.<domain>.<extension>:<port>/sap/bc/webdynpro/<namespace>/<application name>
    the same url can be traced in SICF.
    Also u need to add the server ip/domain name in the advanced tab in lan settings so that it does go through the proxy..
    You can check the following link: http://help.sap.com/saphelp_nw04s/helpdata/EN/8c/780741375cf16fe10000000a1550b0/content.htm
    Best Regards,
    navin fernandes.

  • OAM 10g attribute is not visible in object class in Identity System console

    Hi All,
    This is about OAM 10g environment with OID used as user/config/policy store. There are one custom user object class and custom attributes defined in Identity System console already. Now there is a requirement to add another custom attribute to that already existing custom user object class.
    I have created the attribute in schema through ldap command and I am able to see it in LDAP browser as well. However even after restarting OAM identity server and webpass services, the attribute is not visible in Identity System console -> Common Configuration -> Objectclasses -> Custom object class.
    Appreciate any help. Please treat this as urgent.
    Thanks
    Mahendra.

    The solution is to add the attributes in OVD schema as OVD is the user store.

  • 0017 Travel Privileges - Period Parameter is not visible?

    Hi there
    I want to maintain the Period Parameter in infotype 0017 but it is not visible. In the Travel COsts section, I just see
    RGrp Travel Costs
    Vehicle Type
    Vehicle Class
    License Plate Number
    There is no screen variant switched on. Any ideas?
    thanks.

    If I understand here correctly...do you mean you wished to have these fields "pre-filled" in IT017?
    The assignment of the trip provision variant in feature TRVCT is based on the parameter WERKS = personnel area and PERSK = Employee Subgroup. Both of the parameters are taken from infotype 0001 and this  would be the basis of the employee being assigned to trip provision variant. (see also feature TRVCT via tcode PE03) and then subsequent customizing of such trip schemas in transaction FITVFELD
    I hope this helps somewhat answer the question!
    Sally

  • Navigator Not Visible in Directory Manager

    On Win XP Pro Oracle Directory service does not start on boot, even though it is set to do so automatically. It will start manually from the Windows services app. After starting the service, oidctl runs successfully from the command line "C:\>oidctl connect=oid90 server=oidldapd instance=3 configset=0 start"
    On start up Oracle Directory Manager (ODM) accepts the orcladmin/welcome logon and displays the connecting message and loading schema message. ODM opens but does not display the Navigator panel. ODM seems to be connected to the database because Objects, attributes, entries etc. are visible by selecting choices from the Operations menu.
    When OID was first installed the navigator sometimes did and sometimes did not display. Now it is never displayed.
    Any suggestions appreciated.

    Hi Jay,
    I am a Business Analyst and would like to get Oracle Workflow running so I can play with Workflow Builder. I'm just trying to get my hands dirty with this stuff. I want to use OID as a directory server for workflow.
    I uninstalled 9.0.1.1 in installed 9.2.x.x. The results are similar.
    The Bind request to LDAP failed error re-appeared. I had somehow worked around this on the previous install but I don't know how. The command ldapbind -h trburns -p 389 -D cn=orcladmin -w ohwgwead returns Cant contact ldap server. The error seems to be common as it appears in numerous postings but I havent seen a clearly described explanation and solution.
    Do you have access to Oracles knowledge base? It must have a description of this problem.
    I can open ODM after the bind failure by clicking the close icon. Double clicking the banner works in cases where the navigator tree is not visible. Many thanks for that tip.
    Any authoritative information you could provide about the bind problem would be appreciated.
    Thanks again,
    Tom

  • Billing view in SAP ISU CRM - Meter reading not visible

    Hi All,
    We are working on SAP ISU CRM implementation
    In the billing view factsheet ,bill details are visible but meter reading and device is not visible.As one bill document number may have multiple line items  with meter readings in more than one line item
    Can someone guide me how to pick specific line item and viewed it in Billing details.
    Regards
    Ankit

    Hi,
      Your requirement is not clear.
    As per my understanding,u mentioned as multiple meter reading and multiple line items.
    This is due to Price may be block price, check the price key.
    Check the rate steps  line item type and also schema steps
    regards,
    Nags

  • Billing details in SAP ISU CRM : Meter reading not visible

    Hi All,
    We are working on SAP ISU CRM implementation
    In the billing view factsheet ,bill details are visible but meter reading and device is not visible.As one bill document number may have multiple line items  with meter readings in more than one line item
    Can someone guide me how to pick specific line item and viewed it in Billing details.
    Regards
    Ankit

    Hi,
      Your requirement is not clear.
    As per my understanding,u mentioned as multiple meter reading and multiple line items.
    This is due to Price may be block price, check the price key.
    Check the rate steps  line item type and also schema steps
    regards,
    Nags

  • Many "click here" buttons are not visible

    Many sites that have the "click here" button or symbol are not visible. I discovered this when moving my mouse to a location the "mouse hand" appeared indicating this was a button to click for a specific purpose. I downloaded the most recent version of Firefox a few days ago, but the problem of hidden buttons remains. This issue of not being able to see click-able buttons started about 6 weeks ago. Have changed themes, views, color schemes, etc. to no avail.
    Any known solutions ?
    thanx
    inspector43

    Make sure that you haven't enabled a High Contrast theme in the Windows/Mac Accessibility settings.
    Make sure that you allow pages to choose their own colors.
    *Tools > Options > Content : Fonts & Colors > Colors : [X] "Allow pages to choose their own colors, instead of my selections above"
    Note that these settings affect background images.
    See also:
    *http://kb.mozillazine.org/Website_colors_are_wrong

Maybe you are looking for

  • How to check whether a Record Exists or not in Ztable

    Hi all, I have Req like this In ZTable i have 2 fields  * Legacy System , Legacy Material No* Environment Value is coming in one of the field in Idoc The logic is if the Environment Value is UK and a Record Exists on the ZTable for Legacy Sysyetm = L

  • Crystal Reports prompt issue on export: "The report you requested requires further information"

    I have searched through forums for a solution but none seem to work for me. I have an ASP Webform/MySql application which displays Crystal Reports. The ones which do not require a user to enter a parameter display fine and I am able to click on expor

  • Viewing the database version in SQL Developer

    Hello there, I am using SQL Developer version 1.5.0.53, and I was wondering if there is a way that I can view the database version within SQL Developer? I know when you log on in SQL *Plus it shows it, is there anywhere in SQL Developer that it can b

  • MDB doesn't react to messages on its queue

    [DELETE] Please, could some moderator actually delete this topic? thanks!

  • Error on shuffle no music on unit

    I downloaded 90 songs tonight and shows on my music list. When I sync the ipod it says synced but when I go to play it the green and orange light flash which means no music on unit. My songs are in the list but not on the shuffle. What did I do wrong