1、用户连接数据库
sqlplus 用户名/密码 【@host_string【用户身份】
sqlplus sys/空格 as sysdba
以sys用户登录,必须指定身份为 as sysdba 或 as sysoper,普通用户可以不要指定身份
操作系统管理员用户可以不用输入密码。
[root@dbcef03180fe bin]# su oracle
[oracle@dbcef03180fe bin]$ sqlplus monitor/monitor
SQL*Plus: Release 11.2.0.1.0 Production on Wed Aug 28 09:25:40 2019
Copyright (c) 1982, 2009, Oracle. All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> select * from STUSER;
ID USER_NAME USER_PHONE
---------- ---------------------------------------- -----------
1 Fcant 17826260016
2 ??? 17826260016
SQL>
2、查询数据库所有用户
select * from all_users;
3、创建用户(必须要有创建用户的权限才能创建用户)
create user 用户名 identified by 密码
4、给用户赋予权限
grant 权限 to 用户;
grant connect,resource to zhou;
connect,resource 是角色,角色有多个权限
5、切换用户
# conn同于connect
connect user/passwrod;
conn user/password