[Oracle] Create a user  오라클 계정만들기

 

Syntax

1. Simple way.

 

CREATE USER user_name  IDENTIFIED BY password;

 

 

2. With tablespaces. 테이블스페이스 지정하기

 

Syntax

 

CREATE USER user_name  identified by password  
default tablespace USERS temporary tablespace TEMP;

 

 

How to check tablespace.   테이블스페이스를 찾는 방법은

Find .dbf files    .DBF 파일을 찾는 것과

 

Or

Query   쿼리로 조회할 수 있다.

 

SELECT *
FROM   DBA_TABLESPACES;

 

+ Recent posts