프린트 하기

OS환경 : Oracle Linux 7.6 (64bit)

 

DB 환경 : Oracle Database 19.3.0.0

 

방법 : 오라클 19c 테스트 시 사용하는 imsi 유저 생성구문

이 블로그에서 테스트할때 사용하는 유저인 imsi 유저와 테이블스페이스를 생성하는 구문임

 

 

유저 생성

1
2
3
SQL>
create user imsi identified by imsi account unlock default tablespace users quota unlimited on users;
grant resource, connect to imsi;

 

 

TS 생성(Users TS를 사용할 예정이라면 생략해도됨)

1
2
3
4
SQL>
drop tablespace imsits including contents and datafiles;
create tablespace imsits datafile '/ORA19/app/oracle/oradata/ORACLE19/imsits01.dbf' size 2g autoextend off;
alter user imsi default tablespace imsits quota unlimited on imsits;

 

 

추가 권한 부여

1
2
3
4
5
6
7
8
SQL>
GRANT SELECT ON v_$session TO imsi;
GRANT SELECT ON v_$sql_plan_statistics_all TO imsi;
GRANT SELECT ON v_$sql_plan TO imsi;
GRANT SELECT ON v_$sql TO imsi;
 
#필요시 dba 권한부여
GRANT dba to imsi; 

 

 

참조 :