DB/Oracle 2012. 7. 3. 17:02

> sqlplus "/as sysdba"

> startup

> conn sys/as sysdba


# SID 확인

> select name from v$database;


> create tablespace [이름] datafile '/home/oracle/data/dbName.dbf' size 100M autoextend on next 10M maxsize unlimited

> create user [이름] identified by [암호] default tablespace [이름];

> grant resource, connect to [이름];

> alter profile default limit password_life_time unlimited;

> @createtable.sql

> @insertdata.sql


> lsnrctl [start|status|stop]

'DB > Oracle' 카테고리의 다른 글

stored procedure invalid 조회  (0) 2012.07.03
CentOS 6 x64 에서 oracle 11gr2 설치  (0) 2012.07.03
listener.ora  (0) 2012.07.03
posted by hani^___^
: