查询所有数据库用户 select * from dba_users 查看数据库名称 select name from v$database 查看权限 select * from user_sys_privs 修改某个用户的密码 alter user scott identified by tiger…
oracle 数据库创建用户并授权 备注: userName 为用户名,123456 为密码 drop user userName cascade; create user userName identified by 123456; grant connect,resource,dba to userName;…
oracle 用户管理 创建用户(需要具有dba权限的用户) create user 用户名 identified by 密码 defaule tablespace users //默认表空间 temporary tablespace temp //临时表空间 quota 3m on users //用户建立的对象(视图,索引)只能是3m grant connect to 用户名 //为用户名创建权限 grant create session to 用户名…