Cannot see table

Table TEST was created by user SYSTEM to USER1.
Create Table USER1.TEST
field1 VARCHAR2(10)
Then user SYSTEM, created the public synonym:
Create Public Synonym TEST for USER1.TEST;
also.
Grant Select on USER2.TEST for CONNECT;
(USER2 has: CONNECT and RESOURCE privilidges).
USER2 cannot see table TEST. The only way is by putting the USER1.TEST
But is there any other way to proceed without "user.table" = user1.test?

>
Grant Select on USER2.TEST for CONNECT;
>
You are granting select on the TEST table owned by USER2, but according to the logic above that statement, USER1 owns the table. The grant should be:
Grant Select on USER1.TEST to CONNECT;
BUT ... I would never grant privs to one of the system privs like CONNECT, RESOURCE, etc... You should create a role just for your users and grant access to that role instead. You can then grant that role to your different users.

Similar Messages

  • Cannot see table in sql developer or sql plus

    I have created a record in application designer. I have then built the table. I can close the record and then find it again in application designer. But if I go to sql plus or sql developer, I cannot see it. Am I missing a step?

    You probably can see all the tables of sysadm because someone else give you proper grant for that on existing sysadm's objects.
    For the new or modified object (drop+create) you should :
    1. connect as sysadm and run
    grant select on new_table_name to your_own_user;2. connect with your own user and run
    create synonym new_table_name for sysadm.new_table_name;Then you'll be able to query that table without using schema name alias.
    Some admin have also a ddl trigger to make it automatically.
    You could also work through a role and public synonym if more than one user needs to access sysadm's objects.
    Nicolas.

  • Cannot see table data when selecting data tab

    In SQL developer 2.1, when I look at table definitions I see the column names and types etc, then when I click on the data tab to see the data in that table, I don't see the data only row numbers, this does'nt happen in version 1.54. Any idea what it could be causing the data not to be displayed?

    I don't know if there is a synonym or not, I'll have to check. In the table browser when I click on a table I get the table columns in the main window with tabs on top for 'data', 'constraints' etc. when I select data, I see row numbers on the left, column names at the top but no data when there is data in the table (checked it using sql).
    I've gone back to version 1.5.5, thanks for your help.
    Arshad

  • I cannot see XMLType table in sql*plus

    Hi,
    Although I have wokred extensively with Oracle, I am new to Oracle XMLdb. My problem is I cannot see the XMLType tables created under my schema. I can see the tables when I do a select from user_xml_tables. But if I do a 'desc' or 'select from', I get ORA-04043 or ORA-00942. I can desc an XMLType table owned by xdb. I am using Oralce 10g. Please provide a solution asap as a customer is waiting on this.
    Thanks,
    Jayati Ray

    Raghu !!
    GREAT!!!
    It was a BUG in Oracle sql developer, I installed the new version v3.0, It WORKS like a CHARM.
    Thanks a million for your help!!!
    Cheers
    Tony

  • Cannot see data in SAP.Web.UI.Controls.Table

    Hi,I have created a portal project and dragged a sap table into the design area. then i call a webservice and bind the resulting dataset to the table. the dataset seems to bind, since i can see there are the right number of pages in the table, but i cannot see any of the data. all the rows are blank. am i treating the ascx file correctly? i deploy and browse to test it.
    this is the code in the aspx:
    <%@ Register TagPrefix="sap" Namespace="SAP.Web.UI.Controls" Assembly="SAP.Web, Version=1.2.0.0, Culture=neutral, PublicKeyToken=50436dca5c7f7d23" %>
    <%@ Control language="vb" Codebehind="PortalComponent1.ascx.vb" AutoEventWireup="false" Inherits="pdkdemo2.PortalComponent1"  targetSchema="http://schemas.microsoft.com/intellisense/ie5" %>
    <!%@ PortalComponent name="PortalComponent1" %>
    <LINK href="C:\Program Files\SAP\SAP Portal Development Kit for .NET 1.0\Controls\ur\ur_design.css"
         type="text/css" rel="stylesheet">
    <body class="prtlBody">
         <sap:Table id="Table1" runat="server">
              <sap:Caption Text="Table" ID="Caption2"></sap:Caption>
              <sap:TableRow ID="Table1_ItemTemplate">
                   <sap:TableCell ID="TableCell4" Title="Column1">
                        <sap:TextView ID="TextView4"></sap:TextView>
                   </sap:TableCell>
                   <sap:TableCell ID="TableCell5" Title="Column2">
                        <sap:TextView ID="TextView5"></sap:TextView>
                   </sap:TableCell>
                   <sap:TableCell ID="TableCell6" Title="Column3">
                        <sap:TextView ID="TextView6"></sap:TextView>
                   </sap:TableCell>
              </sap:TableRow>
         </sap:Table>
    </body>
    and this is the code behind:
    Imports System
    Imports System.Collections
    Imports System.ComponentModel
    Imports System.Data
    Imports System.Drawing
    Imports System.Web
    Imports System.Web.UI
    Imports SAP.Portal.Web.UI
    Imports SAP.UI
    Imports SAP.Web.UI.Controls
    Public class PortalComponent1
        Inherits SAP.Portal.Web.UI.PortalComponent
        Protected WithEvents Table1 As SAP.Web.UI.Controls.Table
        Protected WithEvents Caption1 As SAP.Web.UI.Controls.Caption
        Protected WithEvents Table1_ItemTemplate As SAP.Web.UI.Controls.TableRow
        Protected WithEvents TableCell1 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView1 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell2 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView2 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell3 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents Caption2 As SAP.Web.UI.Controls.Caption
        Protected WithEvents TableCell4 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView4 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell5 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView5 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TableCell6 As SAP.Web.UI.Controls.TableCell
        Protected WithEvents TextView6 As SAP.Web.UI.Controls.TextView
        Protected WithEvents TextView3 As SAP.Web.UI.Controls.TextView
        Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            Dim proxy As New secblrnd.Service1
            Dim ds As DataSet
            ds = proxy.GetData("U020_EQUIP", "ALL", "NO", 0, "MOODLET1", "MOODLET1")
            Table1.DataSource = ds
            Table1.DataBind()
        End Sub
    #Region "Web Form Designer generated code"
        Protected Overrides Sub OnInit(ByVal e As EventArgs)
            ' CODEGEN: This call is required by the ASP.NET Web Form Designer.
            InitializeComponent()
            MyBase.OnInit(e)
        End Sub
        ' Required method for Designer support - do not modify
        ' the contents of this method with the code editor.
        Private Sub InitializeComponent()
        End Sub
    #End Region
    End class
    any assistance would be highly appreciated.

    Hi,
    The problem is that the SAP table doesn't support this kind of "dynamic binding" at the moment. The SAP table can contain any one of several controls in each cell, and these controls have several possible properties to bind to. So currently you have to "tell" the table what you want to bind to.
    You have several options:
    1. The easiest option, if you can create a typed dataset in design-time, according to what your webservice returns, then do that... and then put an instance of it on your portal component, and bind your table to that typed dataset (using the designer property grid). This should create a default ItemTemplate with all textViews in the cells, and the texts will be bound to the columns.
    2. Write code in ItemCreated Event handler of the table. This event will be raised for each row in the DS. There you can tell the cells to get the data from the content. Remember that you'd have to create the cells according to the number of columns and set the content of each cell to be what control you want (like TextView) and then fill the properties of that control.
    3. If you know the Data structure, but don't want to or can't create a typed DataSet - First define the columns using the designer (right click the table, select "edit columns"). Then in the event handler (from "2") just set the property "text" of each TextView which is in the content of each cell (use the Cell's property "TableCellContent" to get to the TextView control)
    4. Don't use databinding and create the table contents completely manually (See here -
    How to modify cells in a table?)
    One last thing, here's a link to some more explanations about DataBinding in SAP controls:
    https://media.sdn.sap.com/html/submitted_docs/PDK_for_dotNET_10/Programming%20with%20PDK%20for%20.NET/SAP%20NetWeaver%20.NET%20Controls/Data%20Binding/Complex%20Data%20Binding.htm
    If you choose a solution and need more help, just ask. 
    Regards,
    Ofer

  • SQL Developer - Cannot see list of tables in my connection

    Hi - when I downloaded and started to use the SQL developer tool, once I connected, I could see all of the tables/columns in my connection on the left side of the tool, and I had my query panel, results panel, and SQL history stacked on the right. Suddenly something has changed, and I cannot see the list of tables, etc. in my connection anymore, so I have to rely on memory and SQL history to remember the table and column names. It has to be "hidden" somehow, but view-connections does not help, and trying to click and drag windows doesn't uncover it either.
    Any suggestions?
    Thanks!

    Probably better to ask in the SQL Developer forum here: SQL Developer
    I've been trying the version 2 beta though and it has quite a few bugs in. Table browsing is working fine for me, but all my functions and procedures have disappeared from the tree view. It does odd things with code formatting too.
    I don't think it will be supplanting trusty old command line SQL Plus for me yet any time soon...

  • Crystal XI - Cannot see SQL Tables, View, Stored Procedures

    I have read a couple of similar posts but no answers.  I used to be able to see tables, view and stored procedures in Crystal XI, but suddenly I cannot.  I have spent days researching this, changing SQL security settings, checking options in Crystal, etc., etc., to no avail.  I really need an answer to this.  Does anyone know if I can call someone in support and give a credit card number for a one-time call? I don't have a support agreement.  Thank you in advance.

    Hi,
    In the data explorer, you can see the datasources such as oracle, sqlserver etc.. If you are using oracle then right click that one, you see options, a windowss opens you need to spectify the views, stored procedures etc..
    hope this helps

  • Extract process up & running but I cannot see new transactions in the trail

    extract process up & running on source but I cannot see new transactions in the extract trail file and as result it is not replicated to target
    Program Status Group Lag Time Since Chkpt
    MANAGER RUNNING
    EXTRACT RUNNING E_ENVA 00:00:00 00:00:10
    GGSCI (HOST) 186> send extract e_Enva status
    Sending STATUS request to EXTRACT E_ENVA ...
    EXTRACT E_ENVA (PID 11824)
    Current status: In recovery[1]: At EOF
    Current read position:
    Sequence #: 33
    RBA: 34904432
    Timestamp: 2011-09-21 11:14:47.000000
    Current write position:
    Sequence #: 6
    RBA: 1008
    Timestamp: 2011-09-21 11:26:42.426000
    Extract Trail: C:\GG\dirdat\enva\ce
    GGSCI (ILW177711) 193> stats extract e_enva
    Sending STATS request to EXTRACT E_ENVA ...
    No active extraction maps.
    Where to look next and what is the root cause for this,
    thank you

    all configurations was ok and working fine (meaning data was extracted on source and replayed on target) before extract/replicat processes restart
    I did not touch any of the configuration files, after restart processes shows as up & running without any actual errors or rejects on the logs
    please find extract configuration file:
    EXTRACT e_enva
    SETENV ( ORACLE_SID=orcl )
    USERID USER_SCHEMA_A, PASSWORD AACAAAAAAAAAAAHAOFVCXAUANCVHIHCE, ENCRYPTKEY DEFAULT
    DISCARDFILE C:\GG\dirrpt\e_enva.dsc, APPEND, MEGABYTES 10
    REPORTCOUNT EVERY 10000 RECORDS, RATE
    NOTRACETABLE
    EXTTRAIL C:\GG\dirdat\enva\ce
    SQLEXEC "CALL USER_SCHEMA_A.pkg.event_message('START', null, 'ALL','e_enva')";
    SQLEXEC "CALL USER_SCHEMA_A.pkg.event_message('STOP', null, 'ALL','e_enva')" ONEXIT;
    TABLE USER_SCHEMA_A.T_TABLE, KEYCOLS (ID_OBJECT);
    TABLE USER_SCHEMA_A.T_TABLE_REF, KEYCOLS (ID_XREF, PKEY_SRC, SYSTEM, IND);
    logging and supplemental logging enabled, commits performed and again nothing was changed in configuration except that processes was restarted
    thank you

  • Cannot see Time Capsule for backup but internet perfect A

    I've seen other posts about time capsule problems and most talk about wireless dropout and loss of internet connectivity. My situation is almost the reverse:
    Full airport strength in menu bar. Full access to internet sites on at least one computer. Cannot see Time Capsule via Airport Utility or in Finder on any computer. Time Machine backups fail (marked as Delayed in menu bar item).
    If I reboot (via unplugging) the Time Capsule, it shows up again in Airport Utility and backups are successful. This has happened three times now. I think the first time was prior to upgrading the firmware. The second two times were after the Time Capsule firmware upgrade. In the second two instances, it looks like the backups run for about 12-13 hours, every hour. No problems. Then, they drop out. Yesterday, it ran from 8:30 AM until 9 PM.
    I've got two Macs (a Powerbook G4 and a MacBook Pro), each running latest software updates (security, 10.5.2, etc.).
    Unplugging (rebooting) my Time Capsule each day is not an option. That's partly why I moved from an ancient LinkSys router that always needed to be rebooted since we lost local and internet access. Any help is much appreciated!
    Cheers,
    Drew

    Have you set up the TC with user accounts??
    Most people just use the TC password..
    I have done very little with user accounts on the TC.. it seems fundamentally wrong headed to me.. If you have a domain controller with everyone using accounts to login that is fine.. and the TC would then exist in connection to the domain controller.. but it is a home device and there is no function to all that.
    What will happen if you change over to standard security or even turn on the guest account I am too scared to suggest as you may not easily get connection back again.. The TC certainly displays a warning going to accounts.. I am not sure of warnings going away from accounts.
    If you didn't setup the TC, do you have admin access to it??
    Perhaps I am assuming too much before you tell me everything. But I may suggest things you don't want to try.. unfortunately I cannot say this will work.. the issue is widespread across the Mountain Lion TC combo and I have yet to see Apple suggest a solution or even fess up there is a problem. Daily reboots are just simply now a part of the scene for all windows and Mac users.
    Is the TC the main router for the network.. 1 hour is not default lease in the TC and very few people even know how to change it.. standard is 1day. I would consider 1hr adequately short for all arp tables to be kept up to date.. the computer should be seeking new lease at 30min.. ie half lease time.
    If the TC is bridged an not controlling the network.. that can contribute to the issue.
    Setting a static IP on the TC if it is bridged my help.

  • Cannot see web photo gallery in design in dreamweaver cs3

    have made web photo gallery in PS- opens in browser- opens in
    dreamweaver cs3- I can see the code all OK can view again in
    browser--But I cannot see the thumbnails or tables-yet I know its
    there hidden?--How can I make it all visible

    Cindy:
    If you dig really deeply (10 levels down!) in your Library folder you will find the templates for the new Bridge Galleries. You can also use the Lightroom templates in Bridge CS4.
    Library/Applications Support/Adobe/Bridge CS4 Extensions/Adobe output Module/mediagallery/resources/templates/07lightroomgallery/styles
    I duplicated one of the enclosed Styles and dragged it to the Desktop;
    opened it in GoLive (because I like the way that GL displays html code although any text editor will do);
    edited the code to give me the background colors, text and image frames that I wanted; and Saved the file with a new but similar name (starting with next two digits in the series and with the .xml suffix) in the same location as the original.
    And it works!
    You may be able to put your existing templates in the appropriate areas.
    Or, you could install the Optional Plug-ins which let you use the Photoshop/File/Automate
    web galleries and put your old templates wherever you kept them for CS3.
    WARNING:
    You should be perfectly safe doing this but if you screw-up CS4 and have to re-install it I accept no responsibility!!!!!!!

  • Not able to see tables in third party connection

    Hello All,
    I am using Sql Developer early adopter release to migrate from SQL Server to Oracle Database.
    I have created the third party sql server connection in sql developer.
    Although the migration process is sucessfull,but i cannot see the tables under that connection(ie sql server connection),even though i have given priveliges to all the tables for the user through which I am connecting.
    Anything I am missing here,please help.
    Thanks & Regards
    Sulakshana

    Sulakshana ,
    firstly, you should use the production release 1.2 which is out now.
    Secondly, in sql server, make sure your user has read privs on the db you are testing. I know you have granted privs here, but make sure this is the case in the enterprise manager. The reason I say this is that we show only what you have explicit access to, nothing more.
    Try adding the datareader role to the user in sql server too, which should help you too
    Barry

  • Cannot see processes

    Hi
    I'm starting with Apex, reading apex documentation and making the tutorials.
    While I doing the 9th tutorial: How to upload and download files in an application, when I create a process it isn't showed under Processes section.
    Can someone tell me why it isn't showed?
    Edited by: user10470053 on 29/Out/2008 11:45

    Yes
    It's exactly that process, I cannot see it, but it does what it's suppose to. I mean I cannot see the process under Processes sections in page config but when I upload a file it goes to the table.
    Edited by: user10470053 on 29/Out/2008 11:45

  • 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

  • IRecruitment: New users cannot see jobs as candidates

    Hi
    I´m experiencing a problem with iRecruitment. All the people in my company have an Oracle user associated to their corresponding person. The ones created long before (i don´t know exactly when, maybe when iRecruitment was implemented), can connect using the employee candidate resp. and search for jobs without problem. The new created users also connect with the same responsibility, but they cannot see any job. I´ve run the following programs with no success:
    - Synchronize WF LOCAL tables with the following values for the “Orig System” parameter:
    1. PER_ROLE
    2. FND_RESP
    3. FND_USR
    - Sync responsibility role data into the WF table
    - Workflow Directory Services User/Role Validation
    Any idea?
    Thank you in advance

    Thanks guys. I finally solved it. We have a security policy activated to prevent users to see certain info (such as salaries) thru the app or database. One of the tables was per_all_vacancies. So we granted the profile value associated to that policy to these users and now they are able to search for vacancies. Thank you all of you for your help and effort. I´ve noted down all your suggestions so i can solve future problems regarding irec.

  • Cannot see my schema in Catalog

    Hi !
    Any ideas why i cannot see my schema in Catalog of sap sandbox system ?
    I can find my tables only wtih find tables button.
    Thanks!

    Right click on the system name in the Navigator window of the HANA studio (DCC (<USER ID>))
    -          Select Properties
    -          Make sure you are in “Database User Logon” section of Properties dialog
    -          On the General tab, enter your password () into the Password field
    -          Click OK
    I Hope it helps
    G

Maybe you are looking for

  • How can I sync my calendar from microsoft outlook 2003 to my Ipad2

    Hi Just purchsed an Ipad 2 and would like to sync my desk top calendar Microwsoft Outlook 2003 to my Ipad 2 is there an easy way of doing it for some one with limited experience!!

  • Help with setting environment variable on solaris 10

    hi, i am new to solaris. i have solaris 10 x86, and as root user, i installed jdk 6 into /usr/jdk/jdk1.6.0_20. now i want to add the path /usr/jdk/jdk1.6.0_20/bin to my path variable. also i want to set JAVA_HOME. but each time i do this, and close t

  • Getting error on status symbol in service desk

    Dear Expert, In my service desk when i m using the T.Code crm_dno_monitor.On clicking on transaction data tab and after that on action tab in status symbol is coming red (incotrrectly processed) and message getting Find support team responsible ,when

  • ExecuteUpdate error

    Hi Im having a stupid little error and cant see what it is that is causing it. Im trying to set up an admin to allow user to update values in the DB of an application. However, I was using the executeQuery statement and getting the NoResultSet found

  • Anyone know how to upload csv file to temp table of sybase DB from java?

    Dear All, I blindly need your help in achieving the following: I have the csv file which contains OrdId and BillId values. I just wanted to read these two values one by one from excel and loaded them into one temp table of Sybase SQL Anywhere. here i