0% found this document useful (0 votes)
118 views3 pages

Grant Privileges On Tables

You can grant and revoke privileges on database objects like tables, functions, and procedures. To grant privileges, use the GRANT statement to give users permissions like SELECT, INSERT, UPDATE, DELETE, EXECUTE. To revoke privileges, use the REVOKE statement to remove permissions that were previously granted. Privileges control what operations users can perform, such as querying data, modifying rows, executing functions.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
118 views3 pages

Grant Privileges On Tables

You can grant and revoke privileges on database objects like tables, functions, and procedures. To grant privileges, use the GRANT statement to give users permissions like SELECT, INSERT, UPDATE, DELETE, EXECUTE. To revoke privileges, use the REVOKE statement to remove permissions that were previously granted. Privileges control what operations users can perform, such as querying data, modifying rows, executing functions.
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Grant Privileges on Tables

You can grant users various privileges to tables. These privileges can be any combination of select, insert, update, delete, references, alter, and index. Below is an explanation of what each privilege means. Privilege Select Insert Update Delete References Alter Index Description Ability to query the table with a select statement. Ability to add new rows to the table with the insert statement. Ability to update rows in the table with the update statement. Ability to delete rows from the table with the delete statement. Ability to create a constraint that refers to the table. Ability to change the table definition with the alter table statement. Ability to create an index on the table with the create index statement.

The syntax for granting privileges on a table is: grant privileges on object to user; For example, if you wanted to grant select, insert, update, and delete privileges on a table called suppliers to a user name smithj, you would execute the following statement: grant select, insert, update, delete on suppliers to smithj; You can also use the all keyword to indicate that you wish all permissions to be granted. For example: grant all on suppliers to smithj; If you wanted to grant select access on your table to all users, you could grant the privileges to the public keyword. For example: grant select on suppliers to public;

Revoke Privileges on Tables


Once you have granted privileges, you may need to revoke some or all of these privileges. To do this, you can execute a revoke command. You can revoke any combination of select, insert, update, delete, references, alter, and index. The syntax for revoking privileges on a table is: revoke privileges on object from user;

For example, if you wanted to revoke delete privileges on a table called suppliers from a user named anderson, you would execute the following statement: revoke delete on suppliers from anderson; If you wanted to revoke all privileges on a table, you could use the all keyword. For example: revoke all on suppliers from anderson; If you had granted privileges to public (all users) and you wanted to revoke these privileges, you could execute the following statement: revoke all on suppliers from public;

Grant Privileges on Functions/Procedures


When dealing with functions and procedures, you can grant users the ability to execute these functions and procedures. The Execute privilege is explained below: Privilege Execute Description Ability to compile the function/procedure. Ability to execute the function/procedure directly.

The syntax for granting execute privileges on a function/procedure is: grant execute on object to user; For example, if you had a function called Find_Value and you wanted to grant execute access to the user named smithj, you would execute the following statement: grant execute on Find_Value to smithj; If you wanted to grant all users the ability to execute this function, you would execute the following: grant execute on Find_Value to public;

Revoke Privileges on Functions/Procedures


Once you have granted execute privileges on a function or procedure, you may need to revoke these privileges from a user. To do this, you can execute a revoke command. The syntax for the revoking privileges on a function or procedure is: revoke execute on object from user;

If you wanted to revoke execute privileges on a function called Find_Value from a user named anderson, you would execute the following statement: revoke execute on Find_Value from anderson; If you had granted privileges to public (all users) and you wanted to revoke these privileges, you could execute the following statement: revoke execute on Find_Value from public;

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy