欢迎来到天天文库
浏览记录
ID:21210806
大小:29.00 KB
页数:6页
时间:2018-10-20
《oracle 创建create user 及授权grant 查看登陆用户24458》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、oracle创建createuser及授权grant查看登陆的用户24458以下都可以:showuser;selectsys_context('userenv','session_user')fromdual;selectuserfromdual;查看所有登录的用户必须为DBA用户:selectusernamefromv$session;sys、system等DBA用户查看其他用户(test)中的对象(表):SQL>select*fromtest.student;创建一个普通用户都把该用户用起来的流程:1、创建用户SQL>createusertestindentifiedbytest;
2、这样就创建了一个用户名密码都为test的用户但这个时候test还是不能登陆成功的,我们需要赋予相应的权限2、赋予createsession的权限SQL>grantcreatesessiontotest;这样test用户就能成功登陆进去但是此时用户还是不能创建表我们需要赋予用户创建表的权限:SQL>grantcreatetabletotest;但是用户此时还不能创建表因为需要有使用表空间的权限(相当于用户有了进房间的钥匙但是没有进大门的钥匙。。。)所以也应该赋予相应的权限SQL>grantunlimitedtablespacetotest;这个时候用户就拥有了创建表的权限由于表是用户te
3、st的相应的他就拥有了对创建的表的增删查改的权限了3、查看用户拥有什么权限可以通过查询一个系统的视图(数字字典)SQL>select*fromuser_sys_privs;这样就可以知道当前用户的权限4、撤销权限SQL>revokecreatetablefromtest;-----------------------------一些常用视图的区分dba_tablesdba_all_tablesuser_tablesuser_all_tablesall_tablesall_all_tables当前用户所属的所有表(注意大写)SQL>selecttablespace_name,table_
4、namefromuser_all_tableswheretable_name='STUDENT';SQL>selecttable_name,tablespace_namefromuser_tableswheretable_name='STUDENT';TABLE_NAMETABLESPACE_NAME------------------------------------------------------------STUDENTUSERSsys要查看dba_all_tables,ALL_ALL_TABLES才能查看到test用户的表。SQL>selectowner,table_na
5、me,tablespace_namefromdba_all_tableswhereowner='TEST';SQL>selectowner,table_name,tablespace_namefromall_all_tableswhereowner='TEST';SQL>selectowner,table_name,tablespace_namefromdba_tableswhereowner='TEST';SQL>selectowner,table_name,tablespace_namefromALL_tableswhereowner='TEST';OWNERTABLE_NAMET
6、ABLESPACE_NAME------------------------------------------------------------------------------------------TESTSTUDENTUSERS1.DBA_ALL_TABLESdescribesallobjecttablesandrelationaltablesinthedatabase.ItscolumnsarethesameasthoseinALL_ALL_TABLES.2.ALL_ALL_TABLESdescribestheobjecttablesandrelationaltables
7、accessibletothecurrentuser.3.USER_ALL_TABLESdescribestheobjecttablesandrelationaltablesownedbythecurrentuser.Itscolumns(exceptforOWNER)arethesameasthoseinALL_ALL_TABLES.-------------------------------------------------------
此文档下载收益归作者所有