码迷,mamicode.com
首页 > 数据库 > 详细

Oracle

时间:2015-09-15 17:58:07      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

(1) 在oracle中,如果需要执行多条相同的语句,可以通过ping语句实现,例如:在user_obejects表中有多张表的表名存在列OBJECT_NAME中,此时通过以下语句:

SELECT ‘grant select,update on user_name1.‘||object_name||‘ to user_name;‘ from user_objects where  OBJECT_TYPE in (‘TABLE‘ ,‘VIEW‘)

技术分享技术分享

 

 

 

 

 

 

(2) 创建用户:

create user user_name1 identified by "password"
default tablespace tablespace_name
temporary tablespace temporarytable_name
profile DEFAULT;

(3)给对象赋权:-- Grant/Revoke object privileges 

grant connect to user_name1;
grant resource to user_name1;

grant select,update on user_name.table_name to user_name1

 

Oracle

标签:

原文地址:http://www.cnblogs.com/roseHLF/p/oraclehlf.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!