본문 바로가기
DB/SQL(오라클)

오라클(SQL) 계정 생성 (sqlplus/계정이름/비밀번호)

by redbear0077 2021. 6. 22.
반응형

오라클(SQL) 계정 생성 (sqlplus/계정이름/비밀번호)

 

 

1.cmd 창열기

2.sqlplus

3.oracle기본주는계정 또는 생성한 계정(권한이있는)작성

4.계정 비밀번호

***처음계정은 오라클설치후 system으로 보통 설정되어있다.

5.아래 내용 실생

create user 원하는계정 identified by 계정비밀번호;

grant connect,resource to 원하는계정;

 

grant dba to 원하는계정;

alter user 원하는계정 default role all;

grant create table to 원하는계정;

grant unlimited tablespace to 원하는계정;

grant create session to 원하는계정;

grant create view to 원하는계정;

 

6.오라클에서 원하는 계정 생성

 

 

반응형