您的位置:首页 > 数据库 > Oracle

在oracle中创建只读某几张表权限的用户

2011-05-05 16:44 323 查看
  create user donghx
  identified by donghx
  default tablespace CMGIS
  temporary tablespace TEMP
  profile DEFAULT;
 
grant connect to donghx;
grant select on cmgis.g_cmptr_dist_sum to donghx;
grant select on cmgis.g_grid_demog_sum to donghx;
grant select on cmgis.g_grid_mjr_cmptr_sum to donghx;
grant select on cmgis.g_poi_dist_sum to donghx;
grant select on cmgis.g_site_dist_sum to donghx;
grant select on cmgis.g_prvnc_demog_sum to donghx;
grant select on cmgis.g_site_trd_ar_sum to donghx;
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  oracle user