1、用户连接数据库

sqlplus 用户名/密码 【@host_string【用户身份】
sqlplus sys/空格 as sysdba
以sys用户登录,必须指定身份为 as sysdba 或 as sysoper,普通用户可以不要指定身份
操作系统管理员用户可以不用输入密码。

  1. [root@dbcef03180fe bin]# su oracle
  2. [oracle@dbcef03180fe bin]$ sqlplus monitor/monitor
  3. SQL*Plus: Release 11.2.0.1.0 Production on Wed Aug 28 09:25:40 2019
  4. Copyright (c) 1982, 2009, Oracle. All rights reserved.
  5. Connected to:
  6. Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
  7. With the Partitioning, OLAP, Data Mining and Real Application Testing options
  8. SQL> select * from STUSER;
  9. ID USER_NAME USER_PHONE
  10. ---------- ---------------------------------------- -----------
  11. 1 Fcant 17826260016
  12. 2 ??? 17826260016
  13. SQL>

image.png

2、查询数据库所有用户

  1. select * from all_users;

image.pngimage.png

3、创建用户(必须要有创建用户的权限才能创建用户)

  1. create user 用户名 identified by 密码

image.png

4、给用户赋予权限

  1. grant 权限 to 用户;
  2. grant connect,resource to zhou;
  3. connect,resource 是角色,角色有多个权限

3.Oracle用户相关操作 - 图5

5、切换用户

  1. # conn同于connect
  2. connect user/passwrod
  3. conn user/password

image.png