Can I grant some columns update privilege to a user ?

There are ten columns in a table, and I want to grant some columns not all table update privilege to a user, can I do it without use a view?

grant update (column_name) on table_name to user_name;Nicolas.

Similar Messages

  • Grant specific column level privilege

    without vpd how i will grant specific column level privilege to a particular user.

    grant update(id) on a to scott;
    it is working fine.
    anybody can gv othr suggestn

  • Can you make some columns Read/Display Only in DataSheet view?

    I noticed on another posting what appears to be a datasheet view with 3 of the columns in a display mode. Can someone confirm if this is possible?
    Here is the original posting.
    http://social.msdn.microsoft.com/Forums/en-US/sharepointcustomizationprevious/thread/4fa70a67-06e6-44e0-a2fe-94b1707a400a/
    Stunpals - Disclaimer: This posting is provided "AS IS" with no warranties.

    Hi Stunpals,
    This always happens on the column type Multiple Lines of Text .
    And certain columns, such as Created By and Modified, are always read-only. Values for these columns are entered automatically.
    When you open the list in datasheet, click on one the column, if it’s read only, you will see read only in right bottom corner.
    For more information, see
    http://devblog.bardoloi.com/2012/08/sharepoint-2010-datasheet-view-selected.html
    Best Regards.
    Kelly Chen
    TechNet Community Support

  • Who knows what Can I do to modify the privileges on alloc users in order to it cannot delete the allocations created?

    Hi everybody.
    I need to know how I can check the privilege that an alloc user has to delete, modify or insert an allocation.
    I don´t know what are the security tables associated to the application user.
    I'll appreciate a lot the help that everybody can provide me.
    Regards,
    Jean

    KAS184 wrote:
    I have the new iPad so I can't shut it off with the Sleep/Wake button which it doesn't have.
    Ah ... yes ..... it does have a power button. Every iPad has the same sleep/power button in the same place on the iPad. I'm happy that you found a solution .... but maybe you should download this for reference.
    http://manuals.info.apple.com/en/ipad_user_guide.pdf

  • Can I share some, not all music, with other users on same iMac?

    Hi,
    I want to be able to share some musice with other users on the same iMac?
    Is it possible to do without having to share everything?
    Thanks, Crankyhead.

    Create a playlist containing the music you want to share. Then select Preferences in iTunes and from there select the Sharing tab. Turn on "Share my library on my local network" then click on "Share selected playlists" and click on the playlist(s) you want to share.

  • How to hide the Columns and Views for Login user in SharePoint 2013

    Hi Friends,
    How to hide the Columns and Views for Login user in SharePoint 2013? Is it possible using OOB features? If not possible how can we hide the Columns and Views for Login user?
    Could you please help on this.
    Thanks,
    Tiru
    Tiru

    Hello Tirupal,
    There is no OOB way to do this.
    Please check this codeplex solution to achieve the same.
    https://sp2013columnpermission.codeplex.com/
    My Blog- http://www.sharepoint-journey.com|
    If a post answers your question, please click Mark As Answer on that post and Vote as Helpful

  • Grant select privilege to specific columns on a table to user in Oracle 9i

    Can anyone tell me how to grant select privilege to a user for specific columns in a table?
    I have tried the following statement
    GRANT SELECT (EMP_ID) ON EMP TO USER1
    But it's not working and I am getting this error "Missing ON Keyword".
    Please anyone tell me how to grant select privilege for specific columns.
    Edited by: 899045 on Nov 24, 2011 7:03 AM

    899045 wrote:
    Can anyone tell me how to grant select privilege to a user for specific columns in a table?
    I have tried the following statement
    GRANT SELECT (EMP_ID) ON EMP TO USER1
    But it's not working and I am getting this error "Missing ON Keyword".
    Please anyone tell me how to grant select privilege for specific columns.
    Edited by: 899045 on Nov 24, 2011 7:03 AMFrom the 9.2 SQL Reference manual, found at tahiti.oracle.com (http://docs.oracle.com/cd/B10501_01/server.920/a96540/statements_912a.htm#2062456)
    *"You can specify columns only when granting the INSERT, REFERENCES, or UPDATE privilege. "*

  • How to grant update privilege on custom procedures created in apps schema?

    Hi
    We have R12.0.6 instance running in our organization. Our programmers keep requesting the 'write (update)' access on some custom procedures that are originally created in apps schema. I created one read-only like database user and granted 'execute/debug' privilges on those custom procedures, but still using this user procedures cannot be updated (in sufficient privileges).
    Once they modify procedure, forwarding me the code. Using apps user profile, i can recreate procedures using create or replace command. This way it is working fine. Our concern is how they (programmers) themselves using database read-only user does this job? What privileges needs to be granted?
    Please guide me?
    Regards
    Ariz

    Arizuddin wrote:
    Hi
    We have R12.0.6 instance running in our organization. Our programmers keep requesting the 'write (update)' access on some custom procedures that are originally created in apps schema. I created one read-only like database user and granted 'execute/debug' privilges on those custom procedures, but still using this user procedures cannot be updated (in sufficient privileges).
    Once they modify procedure, forwarding me the code. Using apps user profile, i can recreate procedures using create or replace command. This way it is working fine. Our concern is how they (programmers) themselves using database read-only user does this job? What privileges needs to be granted?
    Also provide "alter procedure" privilege to that user.
    Regards
    Rajesh

  • How can I modify one column of current and next record depending of some criteria?

    Having DDL
    CREATE TABLE #ServiceChange(
    [ID] [int] identity(1,1),
    [SHCOMP] [char](2) NOT NULL,
    [SHCRTD] [numeric](8, 0) NOT NULL,
    [SHCUST] [numeric](7, 0) NOT NULL,
    [SHDESC] [char](35) NOT NULL,
    [SHTYPE] [char](1) NOT NULL,
    [SHAMT] [numeric](9, 2) NOT NULL,
    [CBLNAM] [char](30) NOT NULL,
    [GROUPID] [char](2) NULL
    And original and desire data in below link
    https://www.dropbox.com/sh/bpapxquaae9aa13/AADnan31ZASublDjN7sa2Vvza
    I would like to know how can I modify one column of current and next record depending of some criteria using SQL2012?
    The criteria is:
    Type should always flow F->T
    if current abs(amount)> next abs(amount) then groupid = 'PD'
    if current abs(amount)< next abs(amount) then groupid = 'PI'
    there is no case when those amounts will be equals
    where current(custid) = next(custid) and current(service) = next(service) and groupid is null
    Any help will be really apreciated.
    Thank you

    I tried that and got this error
    'LAG' is not a recognized built-in function name.
    You said you were using SQL 2012, but apparently you are not. The LAG function was added in SQL 2012. This solution works on SQL 2005 and SQL 2008:
    ; WITH numbering AS (
       SELECT groupid,
              rowno = row_number()  OVER (PARTITION BY custid, service ORDER BY date, id)
       FROM   #ServiceChange
    ), CTE AS (
       SELECT a.groupid,
              CASE WHEN abs(a.amount) < abs(b.amount) THEN 'PD'
                   WHEN abs(a.amount) > abs(b.amount) THEN 'PI'
              END AS newgroupid
       FROM  numbering a
       JOIN  numbering b ON b.custid  = a.custid
                        AND b.service = a.service
                        AND b.rowno   = a.rowno - 1
    UPDATE CTE
    SET   groupid = newgroupid
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Update some columns using case....

    Hi ,
    Is it possible to update some columns using case statement...????
    For example when col1 is null then update to a value 'x' else update it to the value '*' , when col2 is null then update to a value y else update it to compute the running total up to that time....
    This update statement is contained in db packaged procedure and it receives the values...as parameters....
    How can i write down this update statement...?????
    Many thanks,
    Simon

    Hi ,
    Cant' it be used for two or more columns that have to be updated....????
    i mean
    update table set col_a = case when col_a is null then col_a else '*',
                       col_b = case when col_b is null then col_b else col_b+col_b_var
      end
      where .....The above in bold is running total.... This update is defined in a procedure and it receives numbers as parameters, so the need is to add them for every record it receives...., that's why i set above col_b+col_b_var... where col_b_var is the parameter of the procedure....
    SORRY...IT IS POSSIBLE.....
    Thanks , a lot
    Simon
    Message was edited by:
    sgalaxy

  • Some privileges granted to role not being inherited by users

    I have created a role(app1_role) for a group of users and granted a select number of privileges to app1_role and then granted the app1_role to the users. However some of the privileges are not being inherited by the users in the application. The failures are in the plain sql code NOT in the PL/SQL code. The Oracle version is 10.2 on RedHat zLinux.
    Any insight to why we are seeing this problem would be helpful since I do not want to explicitly grant the privileges to each of the users.

    Can you get the results of querying SESSION_ROLES and SESSION_PRIVS in a session where you are getting the ORA-00942 errors?
    Do your SQL statements include explicit schema names? Or do they rely on synonyms? Public or private synonyms? If you rely on private synonyms, any chance certain users are missing certain synonyms?
    If you query DBA_ROLE_PRIVS for the user (GRANTEE) and role (GRANTED_ROLE), what is the value of DEFAULT_ROLE? Any chance the role was granted as a non-default role?
    Have you verified that in the particular installation that is problematic that the role actually has the grants you expect it to have and that it has been granted to the user(s) you expect it to be granted to?
    Justin

  • Insufficient privileges/can not grant to create tables

    I have just created database..
    Connected as SYS I tried to Create user/schema as following:
    CREATE USER "xsales" PROFILE "DEFAULT" IDENTIFIED BY "*******" ACCOUNT UNLOCK
    GRANT "CONNECT" TO "ABDO"
    Trying to create tables I recieved:
    Failed to commit: ORA-01950: no privileges on tablespace 'USERS'
    Then I tried to grant CREATE ANY TABLES to the user xsales to enable it to
    run the script of create tables,but I recieved
    ORA-01917: user or role 'abdo' does not exist
    although I connected with xsales succefully
    Can anyone help?

    the user name is correct .....
    I ran the following script succefully:
    CREATE USER xsales PROFILE "DEFAULT" IDENTIFIED BY "********" ACCOUNT UNLOCK;
    GRANT "CONNECT" TO xsales;
    GRANT ALTER ANY CLUSTER TO XSALES;
    GRANT ALTER ANY DIMENSION TO XSALES;
    GRANT ALTER ANY INDEX TO XSALES;
    GRANT ALTER ANY INDEXTYPE TO XSALES;
    GRANT ALTER ANY MATERIALIZED VIEW TO XSALES;
    GRANT ALTER ANY PROCEDURE TO XSALES;
    GRANT ALTER ANY TABLE TO XSALES;
    GRANT ALTER TABLESPACE TO XSALES;
    GRANT ALTER USER TO XSALES;
    GRANT ANALYZE ANY DICTIONARY TO XSALES;
    GRANT CREATE ANY CLUSTER TO XSALES;
    GRANT CREATE ANY DIMENSION TO XSALES;
    GRANT CREATE ANY INDEX TO XSALES;
    GRANT CREATE ANY INDEXTYPE TO XSALES;
    GRANT CREATE ANY MATERIALIZED VIEW TO XSALES;
    GRANT CREATE ANY PROCEDURE TO XSALES;
    GRANT CREATE ANY TABLE TO XSALES;
    GRANT CREATE ANY VIEW TO XSALES;
    GRANT CREATE CLUSTER TO XSALES;
    GRANT CREATE DATABASE LINK TO XSALES;
    GRANT CREATE DIMENSION TO XSALES;
    GRANT CREATE INDEXTYPE TO XSALES;
    GRANT CREATE MATERIALIZED VIEW TO XSALES;
    GRANT CREATE PROCEDURE TO XSALES;
    GRANT CREATE PUBLIC DATABASE LINK TO XSALES;
    GRANT CREATE TABLE TO XSALES;
    GRANT CREATE TABLESPACE TO XSALES;
    GRANT CREATE USER TO XSALES;
    GRANT CREATE VIEW TO XSALES;
    GRANT DELETE ANY TABLE TO XSALES;
    GRANT DROP ANY CLUSTER TO XSALES;
    GRANT DROP ANY DIMENSION TO XSALES;
    GRANT DROP ANY INDEX TO XSALES;
    GRANT DROP ANY INDEXTYPE TO XSALES;
    GRANT DROP ANY MATERIALIZED VIEW TO XSALES;
    GRANT DROP ANY PROCEDURE TO XSALES;
    GRANT DROP ANY TABLE TO XSALES;
    GRANT DROP ANY VIEW TO XSALES;
    GRANT DROP PUBLIC DATABASE LINK TO XSALES;
    GRANT DROP TABLESPACE TO XSALES;
    GRANT DROP USER TO XSALES;
    GRANT EXECUTE ANY INDEXTYPE TO XSALES;
    GRANT EXECUTE ANY PROCEDURE TO XSALES;
    GRANT EXPORT FULL DATABASE TO XSALES;
    GRANT GLOBAL QUERY REWRITE TO XSALES;
    GRANT GRANT ANY OBJECT PRIVILEGE TO XSALES;
    GRANT GRANT ANY PRIVILEGE TO XSALES;
    GRANT IMPORT FULL DATABASE TO XSALES;
    GRANT INSERT ANY TABLE TO XSALES;
    GRANT LOCK ANY TABLE TO XSALES;
    GRANT MANAGE SCHEDULER TO XSALES;
    GRANT MANAGE TABLESPACE TO XSALES;
    GRANT QUERY REWRITE TO XSALES;
    GRANT SELECT ANY DICTIONARY TO XSALES;
    GRANT SELECT ANY TABLE TO XSALES;
    GRANT SELECT ANY TRANSACTION TO XSALES;
    GRANT SYSDBA TO XSALES;
    GRANT CREATE SESSION TO XSALES;
    GRANT UPDATE ANY TABLE TO XSALES;
    Then I logged as XSALES to try to CREATE TABLES, still I got:
    SQL> CONN XSALES/**********@ORACLE
    Connected.
    SQL> CREATE TABLE PROD(ID number(6));
    CREATE TABLE PROD(ID number(6))
    ERROR at line 1:
    ORA-01950: no privileges on tablespace 'USERS'
    How I can solve that?

  • Am trying to upgrade iPad 2 to 6.1.2 and it shows error like "Unable to verify Update" you are no longer connected to the internet. But am connect to my wi-fi. Can somebody throw some light on this.

    Am trying to upgrade iPad 2 to 6.1.2 and it shows error like "Unable to verify Update" you are no longer connected to the internet. But am connect to my wi-fi. Can somebody throw some light on this.
    ============================================================
    Throws error saying
    "Unable to Verify Update"
    iOS 6.1.2 failed verification because you are no longer connected to the internet
    ============================================================
    Can anybody please respond

    Try this and see if it resolves the issue.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.
    Then try again.

  • HI,  I need to jre 1.6 update 26 on my mac system to make some aaplication work. However latest available is jre 1.6 update 29. Could you suggest how I can get jre 1.6 update 26? I tried downloading older version on java. COuldn't find it on your site.

    HI,  I need to jre 1.6 update 26 on my mac system to make some aaplication work. However latest available is jre 1.6 update 29. Could you suggest how I can get jre 1.6 update 26? I tried downloading older version on java. COuldn't find it on your site.

    What are you missing?
    I inherited this app and signing the third party jars is how it was setup, I was wondering the same thing too, why was it necessary to sign the third party jars?
    The applet runs in either JRE 1.6.0_13 or JRE 1.6.0_27 depending on the other Java apps the user uses. JRE 1.6.0_13 does not have the mixed code security (so it is like is disable), but JRE 1.6.0_27 does have the mixed code security and the applet will not launch with mixed code security enable, so we have to disable it. With all the hacking going on in the last two years, is important to improve security; so this is a must.
    Yes, I always clear up the cache.
    Any idea on how to resolve this problem?

  • HT4061 I was trying to update my phone now is asking me to restore my phone, can I have some help please?

    I was trying to update my phone now is asking me to restore my phone, can I have some help please?

    https://discussions.apple.com/message/18750831#18750831

Maybe you are looking for

  • QT 7.2 Updte for 10.4.1 = "Q?" symbol; no vid/aud

    Problem: I am not sure what version of Quicktime was installed on my PB G4 (OS X 10.4.1) before I updated to the 7.2 version, but the update was a big mistake. I cannot view any still (Webpage images) or moving images (e.g. Youtube), nor any accompan

  • Creating PDF files from Quark causes font/image issues. PLEASE HELP.

    After creating a PDF file using Adobe Acrobat Professional (using the file>Export to PDF option) from QuarkXPress version 7.3, my client sees and prints distorted letters with various fonts and they even sometimes see lines where they shouldn't be. I

  • Does Apple Tv 3 support 24 bit/192 khz audio Data?

    I Tryed to Google this but answers are not clear. Can anybody help?

  • Solaris 10 - File System Size / Layout

    Hello, I�m very new to Solaris OS � UNIX world and have a question around the file system. I have SUN System with a single 36GB of Hard Disk, and eventually I want to install Oracle 10g on it as a development server for myself. My question is around

  • What to do IF iPhone is lost?

    Keyword: IF. I still have my iPhone, this is all hypothetical. I understand that there is no way to track an iPhone if it is lost, and that whoever finds it may easily swap SIM cards and reactivate. My worries are about the info I have on my iPhone.