반응형
vmware Player Linux 7(CentOS) 설정 Oracle 19c (RPM) 계정 생성
su oracle
오라클 계정으로 변경
sqlplus / as sysdba
접속

12c 이상 버전부턴 C##으로 계정이름을 지정하도록 바뀌었다. 아래 명령어를 입력하고 계정 생성을 해야 한다
[계정 생성 방법 1]
create user c##test identified by test;
grant connect, resource to c##test;
conn c##test/test
[계정 생성 방법2]
alter session set "_ORACLE_SCRIPT"=true;
(세션 설정 변경 하면 12c 이전 버전처럼 계정 생성가능)
create user test01 identified by test01;
grant connect, resource, dba to test01;
conn test01/test01