'Grant'에 해당되는 글 2

  1. 2007.11.05 [Oracle] 오라클 사용자 추가
카테고리 없음 | Posted by 낫기법필 2007. 11. 5. 00:47

[Oracle] 오라클 사용자 추가

/*
   - Schema : oratestusr
   - Passwd : test
*/

/* 테이블 스페이스 생성 */
   create tablespace oratestusr datafile  'D:\oracle\OraDbData\BAS\bas.dbf' size 10M;

/* User(Schema) 생성 */
   create user oratestusr  identified by test default tablespace oratestusr;

/* 권한 부여 */
   grant connect, resource to oratestusr;


[출처] 기초에서 실무개발자로 오라클 프로젝트 실무 책