一、给用户增加表或者视图的权限 命令:grant xxx权限 on Table to USER grant select,insert,update,delete,all on 表名 to 用户名 例如:将test表的查询权限赋予tom这个用户 grant select on test to tom 二、给用户增加存储过程的权限 grant execute on 存储过程名称 to 用户名; grant select on 存储过程名称...
查询的时候表名前加上表的所属。如果是a用户建立的,就查 a.表名。建立同义词也行。
语法:grant [权限名(select|insert |update|delete|all)] on [表名] to [用户名] 例子:给user1授权查询table1的权限:grant select on table1 to user1; 不过上面的有点麻烦,假如表很多的话,或许可以用游标试验,如果对用户表权限不是很严格的,可以授权用户查询所有用户的表权限:grant select any table to ...
select * from user_views; 2.5、a用户下授权查询视图给test11用户 select'grant select on a.'|| view_name || ' to test11;'from user_views 备注:授权更新、删除的 语法和授权查询类似,只是关键字不同而已。 三、撤消权限 1、授权a用户下取消给b用户删除单个表的权限 revoke delete on a.tablename fr...
grantselectona.tablenametob;2.3、a用户下授权查询所有序列给b用户 select'grantselecton'||sequence_name||'tob;'fromdba_sequenceswheresequence_owner='A'2.4、--Oracle查询用户视图 select*fromuser_views;2.5、a用户下授权查询视图给test11用户 select'grantselectona.'||view_name||'totest...
You can do this to allow a user to create objects in a tablespace: alter user username quota [amount] on mytablespace; To grant select, insert, update and delete on objects you have to run a separate grant command for each table: grant select, insert, update, delete on mytable1 to ...
GRANT SELECT,UPDATE ON account.paytable TO checkerrole GRANT CONNECT TO defaultrole (2)创建用户 CREATE USER xiaoli IDENTIFIEDBY xiaoli (3)授权 GRANT checkerrole TO xiaoli GRANT defaultrole TO xiaoli (4)设定用户缺省的角色 ALTER USER xiaoli DEFAULTROLE defaultrole ...
在Oracle中,GRANT SELECT语句用于授予用户或角色对表、视图或其他数据库对象的SELECT权限。使用GRANT SELECT语句后,用户或角色将能够查询和读取指定对象的数据,但不能对其进行修改、插入或删除操作。GRANT SELECT语句的语法如下: GRANT SELECT ON object_name TO user_or_role; 其中,object_name为要授权的表、视图或...
grant connect to'同步账号';//授权同步账号连接数据库。 grant select on nls_database_parameters to'同步账号';//授权同步账号查询数据库的nls_database_parameters系统配置。 grant select on all_users to'同步账号';//授权同步账号查询数据库中的所有用户。
Grant select on some_table to_some_user and Grant select on some_table to_some_user with grant option In the latter case some_user can now grant select on some_table to other users; Maybe you can accomplish what you want using ALL_VIEWS instead of DBA_VIEWS. Share Improve this answe...