블로그 이미지

calendar

1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28
  • total
  • today
  • yesterday
2011. 1. 20. 15:47 Database관련/Oracle

/*테이블 스페이스 생성 */
create tablespace test_tb datafile 'd:\test_tb.dbf' size 100M autoextend on next 5M;
/*사용자 생성 */
create user test identified by 111 default tablespace test_tb;

/*테이블 스페이스 삭제 */
drop tablespace test_tb including contents and datafiles;
/*사용자 삭제 */
drop user test ;

'Database관련 > Oracle' 카테고리의 다른 글

oracle Delete 후 commit 잘못해서 데이터 날려 먹었을때 sql  (0) 2013.03.21
sqlplus 외부접속  (0) 2013.03.21
sql xml로 바꿔서 출력 쿼리  (0) 2010.02.03
sqlplus copy 명령어  (0) 2010.01.29
export,import 명령어  (0) 2010.01.29
posted by 천상의날개