오라클은 테이블스페이스라는 공간을 사용한다.
그래서 조금은 복잡해 보일 수 있지만, 정리하면 간단하다.
아래에 대한 순서로 하면 어렵지 않게 할 수 있을 것이다.
** user01/password01로 사용자를 생성하는 방법
** 오라클 data 디렉토리가 /u02/oradata로 되어있다고 가정할 때..
0. 접속을 sys as sysdba로 접속한다.(패스워드는 사전에 설정되어있는 것으로..)
$ sqlplus /nolog
conn sys as sysdba
pasword : ************
Connected.
1. 테이블스페이스 생성
create tablespace ts_user01
datafile '/u02/oradata/ts_user01.dbf' size 50M
autoextend on
next 1M
maxsize 100M;
2. 임시 테이블 스페이스 생성
create temporary tablespace ts_user01_temp
tempfile '/u02/oradata/ts_user01_temp.dbf' size 100M
extent management local uniform size 128k;
3. 사용자 생성
create user user01 identified by password01
default tablespace ts_user01
temporary tablespace ts_user01_temp;
4. 기본 권한(접속, 테이블 생성/읽기) 부여
grant connect, resource to user01;
5. 테스트
conn user01/password01
정상 접속되면 성공.
'[Developer] > SQL' 카테고리의 다른 글
php-mysql 연동시 이상하게 안된다면.. (0) | 2009.10.07 |
---|
댓글