Oracle数据库,创建用户,创建表空间,授权

来源:互联网 发布:matlab 矩阵元素 编辑:程序博客网 时间:2024/05/01 01:59

 

请输入用户名:  system

输入口令:  root

 

连接到:

Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production

With the Partitioning, OLAP and Data Mining options

 

SQL> create user citest identified by citest;

 

用户已创建。

 

SQL> create tablespace ci_space datafile 'd:/tablespace/ci_space.dbf' size 500m;

 

表空间已创建。

 

SQL> grant create session,create table,create view,unlimited tablespace to citest;

 

授权成功。

 

SQL> conn citest/citest;

已连接。

 

原创粉丝点击