Oracle创建用户并设置权限
SQL*Plus: Release 9.2.0.1.0 - Production on 星期六 9月 29 15:08:34 2007Copyright (c) 1982, 2002, Oracle Corporation. Al
C:\>sqlplus
SQL*Plus: Release 9.2.0.1.0 - Production on 星期六 9月 29 15:08:34 2007
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
请输入用户名: sys as sysdba
请输入口令:
连接到:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
SQL> create user testuser identified by pwd default tablespace users Temporary T
ABLESPACE Temp;
用户已创建
SQL> grant connect to testuser;
授权成功。
SQL> commit;
提交完成。
SQL> alter user testuser quota unlimited on users;
用户已更改。
SQL> commit;
提交完成。
SQL> quit
从Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production中断开
C:\>sqlplus
SQL*Plus: Release 9.2.0.1.0 - Production on 星期六 9月 29 15:11:37 2007
Copyright (c) 1982, 2002, Oracle Corporation. All rights reserved.
请输入用户名: testuser
请输入口令:(此处输入pwd)
连接到:
Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
With the Partitioning, OLAP and Oracle Data Mining options
JServer Release 9.2.0.1.0 - Production
SQL>
,上一篇: java 使用流下载文件代码
推荐阅读
-
Oracle 导出用户下的所有索引创建语句
-
Oracle 11g简化版通过导入SQL创建用户
-
oracle常用权限设置(建议收藏)
-
Centos安装mysql数据库并修改密码设置远程登陆权限
-
为什么在服务器上php里执行file_put_contents创建文件返回是false呢,文件目录已经设置为777的权限了,不解
-
Linux下和Windows下创建Oracle用户和表空间
-
Oracle 用户权限 Grant
-
使用navicat 8实现创建数据库和导入数据 管理用户与权限[图文方法]
-
navicat 8 创建数据库与创建用户分配权限图文方法
-
SpringBoot快速设置拦截器并实现权限验证的方法