2010. 1. 29. 12:04
Database관련/Oracle
create tablespace memp datafile 'c:\memp.ora' size 50m autoextend on;
create user memp identified by memp default tablespace memp;
grant connect,resource to memp;
conn memp/memp;
create sequence order_seq start with 1 increment by 1;
'Database관련 > Oracle' 카테고리의 다른 글
sqlplus copy 명령어 (0) | 2010.01.29 |
---|---|
export,import 명령어 (0) | 2010.01.29 |
toad 접속방법 (0) | 2010.01.29 |
기본키 변경 (0) | 2010.01.29 |
em복구방법 (0) | 2010.01.29 |