美文网首页
2018-08-17

2018-08-17

作者: chenhbdl | 来源:发表于2018-08-17 10:29 被阅读0次

    Oracle 

    Sqlplus / as sysdba   服务器在本地使用此方式连接

    Sqlplus scott/tiger@orcl 不加IP地址也是连接本地

    Sqlplus scott/tiger@IP/orcl   连接远程

    创建用户   create user usernameidentified by password

    创建用户时

    指定表空间

    链接数据库Conn username/password  直接连接不能登录需授权

    Grant 权限to 用户名

                       权限分为

                                对象权限

                                系统权限

    为用户设置访问权限     列如让他能访问特定的表

             Grantselect(权限) on scott.emp to 用户名  如果你只授予的查询权限,如果进行删除受会报权限不足

    Grant connect,resource,dba to 用户名  常用的权限

    回收权限   revoke权限  from用户名

    删除用户  : drop user用户名[cascade(连同此账户创建的东西全部删除)];

    相关文章

      网友评论

          本文标题:2018-08-17

          本文链接:https://www.haomeiwen.com/subject/zorzbftx.html