oracle$> sqlplus '/as sysdba'
SQL>show user
USER은 "SYS"입니다
SQL> create user userid identified by password default tablespace system;
사용자가 생성되었습니다.
SQL> grant connect, resource to userid;
권한이 부여되었습니다. ( 일반 적인 모든 기능 허용 )
SQL> conn userid/password
연결되었습니다.
계정 추가
create user 계정 identified by 패스워드
default tablespace 테이블 스페이스
temporary tablespace 임시 테이블 스페이스;
grant connect to 계정;
grant resource to 계정;
계정 삭제
drop user 계정 cascade;
'DEV > DB' 카테고리의 다른 글
ibatis (0) | 2009.11.24 |
---|---|
오라클 함수 (0) | 2009.06.30 |
[oracle] 자신이 원하는 순서대로 정렬하기 (0) | 2009.06.23 |