当我们的oracle11g安装完之后,需要创建用户,并赋予普通权限,怎么做?
1、安装完后,会有一个系统密码,假设为root
2、sqlplus-->>
username:system
password:root
3、create user tp identified by tp;
4、grant dba to tp
5、conn tp/tp@orcl
6、这样我们就有一个用户名为:tp的普通用户,他的权限只能访问他自己所创建的表
标签:system use 系统 一个用户 普通用户 body ora oracl root
当我们的oracle11g安装完之后,需要创建用户,并赋予普通权限,怎么做?
1、安装完后,会有一个系统密码,假设为root
2、sqlplus-->>
username:system
password:root
3、create user tp identified by tp;
4、grant dba to tp
5、conn tp/tp@orcl
6、这样我们就有一个用户名为:tp的普通用户,他的权限只能访问他自己所创建的表
标签:system use 系统 一个用户 普通用户 body ora oracl root
原文地址:http://www.cnblogs.com/cyh2009/p/oracle.html