* 요약:
오라클 DB 사용자 계정 만들기
create user 사용자이름 identified by 비밀번호 default tablespace 테이블스페이스이름 temporary tablespace TEMP; |
예)
create user lim identified by root;
create user lim identified by root default tablespace nextree temporary tablespace temp;
* 사용자 계정 생성 및 권한부여
1. windows키 + R > sqlplus
사용자명 입력 : system 비밀번호 입력 : |
2. 사용자 계정 생성
create user 사용자 이름 identified by 비밀번호; |
3. 사용자 권한 부여
grant [ connect / dba / resource ] to 사용자명; |
4. 커밋
commit; |
* 권한 종류
* 권한 종류 grant create session to 사용자명 - 데이터베이스 접근 권한 grant create database link to 사용자명 grant create materialized view to 사용자명 grant create procedure to 사용자명 grant create public synonym to 사용자명 grant create role to 사용자명 grant create sequence to 사용자명 grant create synonym to 사용자명 grant create table to 사용자명 grant drop any table to 사용자명 grant create trigger to 사용자명 grant create type to 사용자명 grant create view to 사용자명 |
'DB > ORACLE' 카테고리의 다른 글
오라클 테이블 조회 (0) | 2019.06.24 |
---|---|
오라클 사용자 계정 수정, 삭제 (0) | 2019.06.24 |
오라클 DB, 사용자 확인하기 (0) | 2019.06.24 |
오라클 설치 11g (0) | 2019.06.24 |
오라클 삭제하기 (0) | 2019.06.24 |