DB

[ORACLE] 계정생성

토마토왕자 2008. 3. 11. 11:13
오라클 사용자 생성 쿼리

SQL>connect system/manager;

연결되었습니다.

 

SQL> create user oracle_admin identified by oracle_admin;

사용자가 생성되었습니다.

 

SQL> grant create session, dba to oracle_admin;

권한이 부여되었습니다.

SQL> alter user hr_audit
  2           default tablespace users
  3           temporary tablespace temp;

사용자가 변경되었습니다.