* 전체 Table 정보
SELECT * from tab;
* Table 설명
- DESC A (describe 테이블 명)
* Line Size 설정
- SET LINESIZE 200
* DB Table 전체 삭제
SQL> Begin
2 for c in (select table_name from user_tables) loop
3 execute immediate ('drop table '||c.table_name||' cascade constraints');
4 end loop;
5 End;
6 .
(점 찍어야 합니다. 이렇게 입력하면다시 이렇게 아무것도 안뜨는 명령어가 뜬다)
SQL>
SQL> run
(을 실행한다. 실행하면 아래 구문이 나올것이다)
1 Begin
2 for c in (select table_name from user_tables) loop
3 execute immediate ('drop table '||c.table_name||' cascade constraints');
4 end loop;
5 End;
PL/SQL procedure successfully completed.
(메시지가 나오면 성공, 그 후에)
SQL> purge recyclebin;
Recyclebin purged.
(휴지통이 비워졌다는 문구가 나온다, 그후 select * from tab; 을 해보면 깨끗히 지워진 테이블을 볼 수 있을것이다)
'SW > 데이터베이스' 카테고리의 다른 글
////Room DB (0) | 2021.04.18 |
---|---|
성능개선 (0) | 2021.03.28 |
///SQLite 기본 개념과 구조 (0) | 2020.09.13 |
Oracle Error 처리 (0) | 2019.09.01 |
JDBC를 이용한 MS Access(DB)연동 (0) | 2019.09.01 |