테이블 스페이스, 유저 생성
DB/ORACLE 2014. 1. 10. 14:46create tablespace TBS_TEST datafile '/home4/app/oracle/oradata/ORCL/tbs_test.dbf' size 500m autoextend on next 100m;
create temporary tablespace TBS_TESTTEMP tempfile '/home4/app/oracle/oradata/ORCL/tbs_testtemp.dbf' size 200m autoextend on next 100m;
CREATE USER TEST IDENTIFIED BY password DEFAULT TABLESPACE TBS_TEST TEMPORARY TABLESPACE TBS_TESTTEMP;
grant resource,connect to TEST;
'DB > ORACLE' 카테고리의 다른 글
[oracle] dump/import 명령어 (0) | 2014.01.10 |
---|---|
리눅스 오라클 설치 (0) | 2014.01.10 |
DBMS_APPLICATION_INFO 패키지 사용 (0) | 2013.12.13 |
ORA-01861 : literal does not match format string (0) | 2013.10.23 |
오라클 DELETE, UPDATE 후 COMMIT 한 데이터 복구하는 방법 (2) | 2013.09.27 |