오브의 빛나는 별

[SQL] Oracle DB 계정 생성하기 본문

SQL

[SQL] Oracle DB 계정 생성하기

오브의 별 2023. 11. 4. 18:33
반응형

1. SQL Plus 접속 후 TEST라는 계정 만들기

create user TEST identified by test;

- 오라클 12c 버전부터는 사용자명에 C##을 붙이지 않으면 오류 발생(새로 등장하는 CDB, PDB 개념 때문)

- 따라서 'C##TEST'라는 이름의 계정 생성

- 만약, C##이 없는 계정을 만들고 싶다면 SQL Plus에서 DB 설정을 변경해야 함

 

1-1. 아래의 쿼리문 작성 후 계정 생성

ALTER SESSION SET "_ORACLE_SCRIPT" = TRUE;

create user TEST identified by test;

 

2. 계정에 권한 부여

grant connect, resource, dba to TEST;
commit;

 

 

 

Oracle 다운로드 및 설치 방법은 아래 링크 클릭

https://staraube.tistory.com/141

 

[SQL] Oracle 다운로드 및 설치 방법

1. Olacle 공식 홈페이지 접속 https://www.oracle.com/ Oracle | Cloud Applications and Cloud Platform Oracle condemns the terrorist attacks against Israel and its citizens. Oracle will provide all support necessary to its employees and to the governm

staraube.tistory.com

 

반응형