在Oracle Database12c中创建c##scott用户的步骤教程

一、环境

(1)操作:centos7;

(2):oracle database 12c;

三、操作步骤

1、命令窗口输入:sqlplus / as sysdba,以打开sqlplus并连接至数据库。

2、 在sqlplus中依次输入:

oracle$ sqlplus / as sysdba;  
已连接。 
create user c##scott identified by tiger;  
  
grant connect,resource,unlimited tablespace to c##scott;  
  
alter user c##scott default tablespace users;  
  
alter user c##scott temporary tablespace temp;  
  
conn c##scott/susheng;  
(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐