테이블스페이스 생성 및 삭제
-- 테이블스페이스 삭제 drop tablespace ex including contents; -- 테이블 스페이스 생성 CREATE TABLESPACE ex DATAFILE 'C:/oracle/product/10.2.0/oradata/ex/ex.DBF' SIZE 300M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED; -- 테이블 스페이스를 이용할 유저 생성 create user ex identified by ex default tablespace ex; -- 생성한 유저에게 데이터베이스 관리자 권한 부여 grant connect,dba to ex; 세부사용법 # SQLPLUS CONNECT - sqlplus system/manager - sqlplus "/as sysdba"..
Database/Oracle
2008. 1. 22. 22:07