欢迎来到天天文库
浏览记录
ID:38581851
大小:35.50 KB
页数:4页
时间:2019-06-15
《Oracle权限管理》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、权限管理Oracle的3个默认的用户用户名:Sys密码:用户名:System密码:用户名:Scott密码:tigger以管理员身份登录数据库:如果是Oracle8、9要用:sqlplus/nologConn用户名/密码assysdba;如果是Oracle10就要用:Sqlplus/assysdab显示当前的用户:showuser;超级管理员身份登录Oracle:首先进入sqlplus:conn/assysdba创建用户:createuserusernameidentifiedbypassword刚创建的用户还没有权限,要对其进行授权:首先授予session权限:grantcrea
2、tesessiontousername授予创建表权限:grantcreatetabletousername;授权createtable权限以后可以创建表但是不可以使用表空间,也要授权:Grantunlimitedtablespacetousername;下面就可以无限的创建表,插入数据了,这个表舅属于用户了就可以增、删、改、查了撤销权限:revokecreatetablefromusername;查看用户所具有的权限:Select*fromuser_sys_privs;在Oracle中用户之间是隔开的独立的也就是wangwu不能访问liu的表管理员具有最大权限可以访问任何用户的表
3、插入数据后Oracle是手动提交的,不是自动提交的要wangwu登陆以后授权(增、删、改、查)给liu用户才可以:Grantselectonmytabletousername;Grantinsertonmytabletousername;Grantallonmytabletousername;系统权限:Grantcreatesessiontousername;Grantcreatetabletousername;Grantunlimitedtabllespacetousername;Revokecreatesessionfromusername;Revokecreatetable
4、fromusername;Revokeunlimitedtablespacefromusername;GrantcreatesessiontopublicSelect*fromuser_sys_privs;对象权限:Grantselectontablenametopublic;Grantselectontablenametousername;Grantallontablenametousername;Revokeselectontablenametopublic;Revokeselectontablenamefromusername;Revokeallontablenamefro
5、musername;Select*fromuser_tab_privs;创建表:Createtablemytable(intid);修改表结构:altertablemytableaddnamevarchar(18);对象权限可以控制到列(只能是update和insert):Grantupdate(name)onmytabletousername;Grantinsert(id)onmytabletousername;Select*fromuser_col_privs;Updatewangwu.mytablesetname=’liuguangqung’whereid=1;Update
6、wangwu.mytablesetname=’liuguangqung’,id=5whereid=1;//显示权限不足Insertintomytablevalues(4,’sssssss’);//显示权限不足权限的传递用户权限的传递:grantalertanytabletoliuwithadminoption;对象权限管理:grantselectontablenametousernamewithgrantoption;例如:(现在登录的用户是)grantselectonatoliuwithgrantoption;现在有liu用户登录:grantselectonsys.atowan
7、gwuwithgrantoption;Liu用户登录:select*fromsys.a;可以Wangwu用户登录:select*fromsys.a;也是可以的但是如果sys登录:revokeselectonafromliu;则Liu用户登录:select*fromsys.a;和Wangwu用户登录:select*fromsys.a;均失效!创建角色:createrolerolename;Grantcreatesessiontorolename;Droprolerolename;注
此文档下载收益归作者所有