服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Oracle - 使用sqlplus命令行工具为oracle创建用户和表空间

使用sqlplus命令行工具为oracle创建用户和表空间

2020-03-24 16:33furenjian Oracle

这篇文章主要介绍了使用sqlplus为oracle创建用户和表空间的方法,本文介绍的是使用Oracle 9i所带的命令行工具:SQLPLUS,需要的朋友可以参考下

用Oracle10g自带的企业管理器或PL/SQL图形化的方法创建表空间和用户以及分配权限是相对比较简单的,本文要介绍的是另一种方法,使用Oracle 9i所带的命令行工具:SQLPLUS

来创建表空间,这个方法用起来更加简明快捷。

  假设: 文章假设,如果您用的是Linux系统,那么Oracle用户名为oracle。同时,您是在oracle服务器上操作。

  如果是在Windows系统下, 请先点击“开始”,然后点“运行”,输入cmd并点击“确定”,打开命令行窗口

  如果是在Linux的图形窗口,请右键点击桌面并点击“打开终端”,然后输入    su  -   oracl

  做好上述准备工作以后,输入以下命令: 

?
1
2
3
4
sqlplus /nolog
  回车后,将出现提示符 SQL>
  这时输入
  conn / as sysdba

  一般即可登录,如果失败的话,可以试一下用conn    sys/sys用户的密码   as sysdba来重试一下

  接下来,我们看看您当前的数据库文件一般都是放在哪里的:

?
1
2
3
4
5
6
7
8
9
10
11
select name from v$datafile;
  windows下可能看到的结果如下:
  SQL> select name from v$datafile;
  NAME
  --------------------------------------------------------------------------------
  D:\oracle\oradata\orcl\system01.dbf
  D:\oracle\oradata\orcl\undotbs01.dbf
  D:\oracle\oradata\orcl\cwmlite01.dbf
  D:\oracle\oradata\orcl\drsys01.dbf
  D:\oracle\oradata\orcl\indx01.dbf
  D:\oracle\oradata\orcl\tools01.dbf

  说明您的数据文件是放在 D:\oracle\/oradata\orcl\ 这个目录下的

  Linux下可能看到的结果如下: 

?
1
2
3
4
5
6
7
8
9
SQL> select name from v$datafile;
  NAME
  --------------------------------------------------------------------------------
  /oracle/oradata/orcl/system01.dbf
  /oracle/oradata/orcl/undotbs01.dbf
  /oracle/oradata/orcl/cwmlite01.dbf
  /oracle/oradata/orcl/drsys01.dbf
  /oracle/oradata/orcl/indx01.dbf
  /oracle/oradata/orcl/tools01.dbf

  说明您的数据文件是放在 /oracle/oradata/orcl/ 这个目录下的

  好,我们可以开始创建数据库表空间了,创建数据库表空间的命令格式如下:  

?
1
create tablespace 表空间名 datafile  '对应的文件名'  size  大小;

  举例如下:

  对于上述的windows情况:  

?
1
create tablespace yang datafile 'D:\oracle\oradata\orcl\yang.dbf' size 3000m;

  3000m指的是3000MB

  对于上述的Linux的情况:  

?
1
create tablespace yang datafile '/oracle/oradata/orcl/yang.dbf' size 3000m;

  至此,所需的表空间已建立。

  接下来我们开始创建用户,创建用户的命令格式如下: 

?
1
create user 用户名 identified by 密码 default tablespace 用户默认使用哪一个表空间;

  修改用户的权限:  

?
1
grant 角色1,角色2 to 用户名;

  举例如下:

?
1
2
create user yanglei identified by yang123 default tablespace yang;
  grant dba, connect to yanglei;

授权成功。

ps:下面看下Oracle创建用户的方法,具体代码如下所示:

创建用户

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
-- Create the user
create user MEP
 identified by whq1987
 default tablespace MEP
 temporary tablespace MEP_TEMP
 profile DEFAULT;
-- Grant/Revoke role privileges
grant connect to MEP;
grant datapump_exp_full_database to MEP;
grant datapump_imp_full_database to MEP;
grant dba to MEP;
grant exp_full_database to MEP;
grant imp_full_database to MEP;
grant resource to MEP;
-- Grant/Revoke system privileges
grant alter_user to MEP;
grant comment any table to MEP;
grant create any view to MEP;
grant create session to MEP;
grant create user to MEP;
grant delete any table to MEP;
grant drop user to MEP;
grant export full database to MEP;
grant unlimited tablespace to MEP;

总结

以上所述是小编给大家介绍的使用sqlplus为oracle创建用户和表空间的方法,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!

原文链接:https://www.cnblogs.com/furenjian/articles/2889787.html

延伸 · 阅读

精彩推荐