본문 바로가기

DB/__Oracle

Oracle Database XE

Oracle Database XE 설치

http://www.oracle.com/technology/software/products/database/xe/htdocs/102xewinsoft.html

http://eduunix.ccut.edu.cn/index/database/Oracle/


SQL> conn /as sysdba
연결되었습니다.
SQL> show user
USER은 "SYS"입니다
SQL> create user myOracleXe identified by dev default tablespace system;

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

SQL> grant connect, resource to myOracleXe;

권한이 부여되었습니다.

SQL> conn myOracleXe/dev
연결되었습니다.