Unable to see tables in Connections View

Hi I'm new to Oracle SQL Developer (1.5.4). I have successfully created and tested my connections. However, the tables won't appear under the Table Tree and same fot the rest. Can someone please assist me? Cheers

Hi,
Please let me know what your connections are?Oracle, SQL Server, another database?
If you created Oracle connection, which user did you use ? Did you try SYSTEM user for example?
If you don't see even your connection has been created with SYSTEM user or as SYSDBA, try to do that:
==>Exit SQL DEVELOPER
==>Go in the following Path:
C:\Documents and Settings\<your user account>\Application Data\SQL Developer\system1.5.4.59.40\o.jdeveloper.db.connection.11.1.1.0.22.49.48
==>Rename the file connections.xml
==>Start SQL DEVELOPER
==>Create a new connection
Please let me know your feedback
Regards
Mireille

Similar Messages

  • Unable to see table and buttons

    Hi,
    We are unable to see table and buttons in black berry simulator model 8330.what are all the settings do we need to do to see them on the screen?
    Regards,
    Pavani

    Hi,
    The solution is available in SDN and refer the following link
    Table not shown in BlackBerry emulator
    Regards
    Manohar

  • Unable to see SAP BusinessObjects Document Viewer template in 7.4 portal

    Hello Experts,
    We are looking to integrate dashboards created with BOBJ design studio into enterprise portal (NW 7.4). We have followed the steps mentioned in the blog Integration of BOBJ with SAP Portal.
    Namely:
    1. Taken the com.sap.businessobjects.iviews.par and com.sap.businessobjects.iviews.templates.epa files from the BI server
    2. Imported the EPA file into the portal
    3. Converted the com.sap.businessobjects.iviews.par file into EAR file and deployed it into the portal
    4. Created System alias for the BI system
    5. Configured SSO between portal and the BI server
    After doing these steps when trying to create the Business Objects iView we are unable to see the SAP BusinessObjects Document Viewer template in the portal. Can anyone let me know if we have missed some additional configuration that has to be done?
    Regards,
    Saurabh

    Hi Experts,
    Issue has been resolved. After importing the EPA file into the portal, we missed out restarting the portal. Once this was done I am now able to find the SAP BusinessObjects Document List and SAP BusinessObjects Document Viewer templates in the iView creation wizard.
    Regards,
    Saurabh

  • Re: Unable to see Table statistics on when I click on the Table

    I have lost the ability to see table statistics when I click on the table. I use to be able to click on the table name under the connection window and would get a display of The columns, data, constraints, index,dependencies etc..... Now It does not seem to work any more I tried preferences but I don't seem to be able to change the behavior back to the way it was any suggestions.

    I upgraded to 1.2 and it solved the problem. I would however love to know the settings that control this display.

  • Unable to see tables or views in DataSource definition

    Hello,
    I have configured and tested my Gateway.    I am able to create a data source to the AdventureWorksDW2012 sample database and store the credentials.   However I can't see any tables or views to select.   I checked the data
    types and table restrictions and they don't not appear to be the culprit.   Will you help me be able to see the tables/views?   I have tried with both SQL Server native and OLEDB protocols.  I am using a sql server database account
    over HTTP.
    I followed these guides to get to this point.
    http://office.microsoft.com/en-us/create-a-data-source-and-enable-odata-feed-in-the-power-bi-admin-center-HA104079172.aspx
    http://office.microsoft.com/en-us/install-configure-and-register-data-management-gateway-HA104093659.aspx
    Picture of where I need to see some available tables/views.

    could you please try:
    1. re-store the credential
    if 1. does not help, please go to the gateway machine, and check the event log under
    Application and Services Logs\Data Management Gateway, see if there is any helpful message.
    if you still have problem, feel free to send an email to huyua[at]microsoft.com with following infomation:
    1. your tenant domain name, something like yourdomain.onmicrosoft.com
    2. your data source name

  • Unable to see days in Week view.

    I open my iCal, and switch over to Week view, but the days of the week don't display on the top. My brother's Mac and friends display the days.
    I have tried to reinstall iCal, and also removed the plist file and rebooted, and days still don't show up. Everything looks good in Day and Month views.
    Any ideas or hints about what to do to get the days to display while in Week view?
    Thanks in advance for your responses!

    barns,
    Apple Discussions is just a user-to-user forum. You should not expect any response from an Apple employee.
    Also, check your settings in:
    System Preferences...>International>Formats>Dates>Customize.
    There will be a Show: field which has Short/Medium/Long/Full. I am not sure which one fills iCal. Change them one at a time and experiment with individual settings.
    As you can see the International Preference has additional time settings in:
    System Preferences...>International>Formats>Times>Customize.
    I am not using Leopard, so I am not certain about the exact configuration of that preference pane.
    ;~)

  • Unable to see select options in view

    HI ,
    I have the following code in the WdDOINIT method of my view for viewing a field as a select option...
    DATA: l_ref_cmp_usage TYPE REF TO if_wd_component_usage.
    l_ref_cmp_usage =   wd_this->wd_cpuse_select_options( ).
    IF l_ref_cmp_usage->has_active_component( ) IS INITIAL.
      l_ref_cmp_usage->create_component( ).
    ENDIF.
    DATA: l_ref_interfacecontroller1 TYPE REF TO iwci_wdr_select_options .
    l_ref_interfacecontroller1 =   wd_this->wd_cpifc_select_options( ).
      DATA:
        l_r_helper_class TYPE REF TO if_wd_select_options.
      l_r_helper_class = l_ref_interfacecontroller1->init_selection_screen(
    data lt_range_table type ref to data.
    CALL METHOD l_r_helper_class->create_range_table
      EXPORTING
        i_typename     = 'BUKRS'
       i_length       =
       i_decimals     =
      receiving
        rt_range_table = lt_range_table
    CALL METHOD l_r_helper_class->add_selection_field
      EXPORTING
        i_id                         = 'BUKRS'
       i_within_block               = mc_id_main_block
        i_description                = 'Empresa'
       i_is_auto_description        = abap_true
        it_result                    = lt_range_table
       i_obligatory                 = abap_false
       i_complex_restrictions       =
       i_use_complex_restriction    = abap_false
       i_value_help_type            = if_wd_value_help_handler=>co_prefix_none
       i_value_help_id              =
       i_value_help_mode            =
       i_value_help_structure       =
       i_value_help_structure_field =
       i_help_request_handler       =
       i_lower_case                 =
       i_memory_id                  =
       i_no_extension               = abap_false
       i_no_intervals               = abap_false
       i_as_checkbox                = abap_false
       i_as_dropdown                = abap_false
       it_value_set                 =
       i_read_only                  = abap_false
       i_dont_care_value            =
    Besides this, the WND_SELECTION_SCREEN view is embedded in the respective container as follows...
    Tray - >Container - this container has the WND_SELECTION_SCREEN.
    I can see the tray in the view cannot see any field (expectation was to see a select-option for BUKRS.
    Any hints? Am i missing something. I have followed the tutorial for select options in webdynpro abap.
    regards,
    Priyank

    Hi Sascha,
    No i cannot see the buttons either.
    Following is how the view is embedded.
    View - > Tray - >viewcontaineruielement-> wnd_selection_screen.
    Am i missing something?
    regards,
    Priyank

  • Unable to create Tables in design view

    One of the two problems I am having (the other will also be
    posted) is that I am no longer able to use Design View to Insert
    Tables at all - I get the following error message: (I made a
    printscreen of the error but not sure how to embed the picture in
    this post so here is the message verbatim).
    "While executing objectTag, the following JavaScript error(s)
    occured:
    At line 26 of file "Macintosh HD:Applications:Macromedia
    Dreaweaver 8:Configuration
    bjects:Common:Table.htm":
    Type Error: cmdDOM.parentWindow.createTableStr is not a
    function"
    I can create tables only if I type the html for them by hand
    into the code pane. The file that the error message references does
    exist, and appears to look fine (code-wise). I've also tried
    uninstalling and reinstalling DW8, removing and recreating the
    Configuration Folder as well as the site prefs and site definitions
    - nothing has cured this problem.
    I am using DW8 v. 8.0.2 on a Mac Quad G5 running OS X 10.4.6.
    I am positive that I did not have this problem, or any of the other
    current problems, with DW MX , and I installed DW8 as a stand-alone
    app so that I could still use MX if needed. This and the other
    problems don't occur with MX but I would really like to get them
    solved because 8 offers other benefits that I want to be able to
    use.
    I'm wondering if anyone else has had this problem and managed
    to find a fix for it.

    One of the two problems I am having (the other will also be
    posted) is that I am no longer able to use Design View to Insert
    Tables at all - I get the following error message: (I made a
    printscreen of the error but not sure how to embed the picture in
    this post so here is the message verbatim).
    "While executing objectTag, the following JavaScript error(s)
    occured:
    At line 26 of file "Macintosh HD:Applications:Macromedia
    Dreaweaver 8:Configuration
    bjects:Common:Table.htm":
    Type Error: cmdDOM.parentWindow.createTableStr is not a
    function"
    I can create tables only if I type the html for them by hand
    into the code pane. The file that the error message references does
    exist, and appears to look fine (code-wise). I've also tried
    uninstalling and reinstalling DW8, removing and recreating the
    Configuration Folder as well as the site prefs and site definitions
    - nothing has cured this problem.
    I am using DW8 v. 8.0.2 on a Mac Quad G5 running OS X 10.4.6.
    I am positive that I did not have this problem, or any of the other
    current problems, with DW MX , and I installed DW8 as a stand-alone
    app so that I could still use MX if needed. This and the other
    problems don't occur with MX but I would really like to get them
    solved because 8 offers other benefits that I want to be able to
    use.
    I'm wondering if anyone else has had this problem and managed
    to find a fix for it.

  • Unable to see tables in forms with new username

    I have created a new user test1 assigned to the role that provides privilege for objects. Originally I created my database objects using username ktb (public synonyms and grants have been provided). Logging into SQL*Plus as test1 I can see and access the ktb tables/objects. However, I cannot see these tables from Forms Builder when logging in as test1, whereas I can as ktb. Is there something I am missing?

    Error 201 ...
    identifier .... must be declared
    Also, I am running Forms 10g against Oracle Expess 10g database.
    Message was edited by:
    devint

  • Unable to insert table in design view???

    Im using Dreamweaver MX 6.0, been using it for a while
    trouble free. Recently installed it on my new Vista laptop, install
    went fine, program opens fine. I was in design view today, tried to
    insert a table and was initially getting some weird error message,
    but the table WAS created. After a few minutes I went to make a
    change and the program crashed. Started Dreamweaver again, tried to
    insert a table and nothing happens. I can click the insert table
    button, try Insert >>> Table, and nothing happens, no
    error message, nothing.
    If I manually enter the code to create a table, I AM able to
    do that, and I can edit it in design view, such as splitting a
    cell, etc.. Anyone have any ideas? Thanks.
    -Joey

    > The build is 6.0.1714.0
    ANN: 6.1 Updater on build 1714
    Macromedia has been working with our customers to track down
    the source
    of problems a minority of users have been having with the ...
    Dreamweaver MX
    6.1 updater. Several users reported that the updater
    incorrectly indicates
    that it cannot find the Dreamweaver
    application or executable file in the specified folder and
    doesn't perform
    the update. While researching this, we found that there were
    several
    different causes for similar issues. Those solutions are all
    detailed in the
    technote at:
    http://www.macromedia.com/support/dreamweaver/ts/documents/dmx_updater_issues.htm.
    However, we also noticed that many customers were trying to
    update a build
    of Dreamweaver MX, 1714, that was never legally released to
    the public or
    made available for purchase. The release version of
    Dreamweaver MX 6.0 is
    build 1722, and build 1714 was only released to a small group
    of beta
    testers under a non-disclosure agreement. Beta testers
    received the final
    build of Dreamweaver MX at the completion of the beta
    program.
    Because build 1714 is not a commercial release, it cannot be
    updated and
    should not be used for any purpose as it is not a legally
    licensed version
    of Dreamweaver MX. To purchase a copy of Macromedia
    Dreamweaver MX, visit
    our online store at:
    http://dynamic.macromedia.com/bin/MM/store/US/home.jsp
    Thanks to all customers who provided detailed information
    that enabled us to
    track down the installer issues much more quickly than we
    could without your
    help.
    Matt Brown Dreamweaver and Contribute Community Manager
    Sorry I can't help more than that.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Joey_330ci" <[email protected]> wrote in
    message
    news:[email protected]...
    > Version 6.0.1714.0 Thanks!

  • Unable to see External HANA Repository view

    Dear Experts,
    I want to create a HANA views from BEx Query and followed the steps:
    Create Query snapshot index via RSDDB--> Quey as infoprovider Tab --> Release Query as infoprovider -->click on create button. --> SAP HANA/BWA Settings Tab -->enable the External HANA Repository view -->Activate and fill index
    But I didn't see the option "External HANA Repository view for reporting" to before Activate and Fill Index,
    please help me why that options not available for my query.
    Thanks,
    Regards,
    Karuppiah N

    H Karuppiah,
    Can you not use the transaction RS2HANA_ADMIN for this? Please see the documentation here:
    Generating SAP HANA Views from the BW System - Using the SAP HANA Database - SAP Library
    Kind Regards,
    Des

  • Unable to see page in design view

    Is someone able to tell me what it is about this page that
    offends Dreamweaver's design view sensibilities?
    I am stuck.
    Thank you.
    http://inbx.us/designhelp/

    Probably one, or more of the 54 errors found here -
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Finbx.us%2Fdesignhelp%2F
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "PaulBroni" <[email protected]> wrote in
    message
    news:ge4sea$23u$[email protected]..
    > Is someone able to tell me what it is about this page
    that offends
    > Dreamweaver's design view sensibilities?
    >
    > I am stuck.
    >
    > Thank you.
    >
    >
    http://inbx.us/designhelp/

  • Project Online - Lite Users Are Unable to See projects in their view

    Hi Everyone - I have recently added several new projects and added some new users. I have added these new users, assigned the lite license to each of them, and shared the PWA site with them. However, when they sign in, they do not see any new projects. The
    Project Center has no projects listed, just empty lines. I have verified they are resources on some and owners on others to see if that made a difference, but that does not work. Any help would be greatly appreciated.
    Thanks,
    Peter

    Hi Peter,
    This means that you are using the SharePoint permission mode which is indeed the default permission mode with Project Online. Thus you have to share each project and site manually with the users.
    See this blog:
    http://www.prasannaadavi.com/2013/08/exploring-sharepoint-permissions-mode.html
    That being said, I'll suggest to have a look at the
    permission modes. The SP permission mode requires a lot of manual operation to give access to every single user on their projects. The PS permission mode is much more granular and requires less operations once
    configured.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Unable to see any servers under 'enterprise view' in eas

    Hi all,
    A while back, I added all servers in the eas console, and was able to see and access them all using the eas url:
    http://easserver:10080/easconsole/console.html
    When I logged in today, I am unable to see anything under 'enterprise view'. not even any options to add servers. I searched in this forum, and tried experimenting with different java versions. The only version of java that works with our eas in version: 1.6+.(we are using EPM 11.1.2).
    Any ideas?
    Thanks,
    Sujani

    Hi Shubham
    Please check in SU01, Each tab like
    Logon tab : Validity period from and through
    Parameters Tab: parameter ID( SCL )and parameter value.(X)
    Rolls Tab:SAP_BW_ALL and other roles
    Regards
    Kishore

  • Unable to see live data view for a access db

    I'm using the following:
    Asp.net C#
    Server 2003 Sp2/
    DW CS3
    Access db
    I'm attempting to connect to a "local" db on my server.
    I use the database connection string"
    Provider=Microsoft.Jet.OLEDB.4.0;
    Data Source=C:\catalog\Catalog\files.mdb;
    Persist Security Info=False
    ole db connection
    While in the data link properties window the connection is
    successful but in the ole db connection window I get "An
    unidentified error has occurred".
    If I just press ok I'm unable to see any of the table in my
    db.
    All I want to do is setup the Live Data view
    Thanks in advance for all your help.

    "madhooper" <[email protected]> wrote in
    message
    news:fcc6vt$jd6$[email protected]..
    >
    >
    > I'm using the following:
    >
    > Asp.net C#
    > Server 2003 Sp2/
    > DW CS3
    > Access db
    >
    > I'm attempting to connect to a "local" db on my server.
    > I use the database connection string"
    >
    > Provider=Microsoft.Jet.OLEDB.4.0;
    > Data Source=C:\catalog\Catalog\files.mdb;
    > Persist Security Info=False
    > ole db connection
    >
    > While in the data link properties window the connection
    is successful but
    > in
    > the ole db connection window I get "An unidentified
    error has occurred".
    >
    > If I just press ok I'm unable to see any of the table in
    my db.
    >
    > All I want to do is setup the Live Data view
    >
    > Thanks in advance for all your help.
    Did you configure your testing server?
    Set up a testing server
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/WSc78c5058ca073340dcda9110b1f693f21-79e0.h tml
    Preparing to build dynamic sites
    http://livedocs.adobe.com/en_US/Dreamweaver/9.0/WSc78c5058ca073340dcda9110b1f693f21-7a31.h tml

Maybe you are looking for