table 일괄 삭제 하기 > 기술자료 | 해피정닷컴

table 일괄 삭제 하기 > 기술자료

본문 바로가기

사이트 내 전체검색

table 일괄 삭제 하기 > 기술자료

MySQL table 일괄 삭제 하기

페이지 정보


본문

CMS(그누보드,XE,wordpress)등을 사용하다가 데이터베이스는 놔두고 테이블만 일괄 삭제후 다시 설치할 때 유용합니다.

drop table * 또는 all 이렇게 해서 지워지면 좋겠지만 안되는 방법이니 다른 방법을 써야 합니다.
Mysql 에서 데이터베스는 놔두고 테이블만을 일괄 적으로 삭제할때 사용하기 좋은 방법입니다



1. MariaDB 로그인

[root@localhost ~]# mysql -uroot -p
Enter password: 
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 13
Server version: 10.1.25-MariaDB MariaDB Server

Copyright (c) 2000, 2017, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> 



2. 내용 붙여 넣기
아래 내용을 복사해서 한번에 실행시킵니다.

SET @tables = NULL;
SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables
FROM information_schema.tables 
WHERE table_schema = '디비명';
SET @tables = CONCAT('DROP TABLE ', @tables);
PREPARE stmt FROM @tables;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;



3. 적용된 모습

MariaDB [(none)]> SET @tables = NULL;
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> SELECT GROUP_CONCAT(table_schema, '.', table_name) INTO @tables
    -> FROM information_schema.tables 
    -> WHERE table_schema = '디비명';
Query OK, 1 row affected (0.00 sec)

MariaDB [(none)]> SET @tables = CONCAT('DROP TABLE ', @tables);
Query OK, 0 rows affected (0.00 sec)

MariaDB [(none)]> PREPARE stmt FROM @tables;
Query OK, 0 rows affected (0.00 sec)
Statement prepared

MariaDB [(none)]> EXECUTE stmt;
Query OK, 0 rows affected (0.01 sec)

MariaDB [(none)]> DEALLOCATE PREPARE stmt;
Query OK, 0 rows affected (0.00 sec)



4. 테이블이 지워졌는지 확인

MariaDB [(none)]> use 디비명;
Database changed
MariaDB [디비명]> show tables;
Empty set (0.00 sec)

MariaDB [디비명]> 



참고자료
http://bizmark.co.kr/archives/320 

댓글목록

등록된 댓글이 없습니다.


Total 2,641건 31 페이지
  • RSS
기술자료 목록
열람
MySQL   12477  2017-08-11 05:33  
2040
MySQL   21247  2017-08-11 01:08 ~ 2018-01-10 00:09  
2039
etc보드   10808  2017-08-10 17:43  
2038
Linux   12682  2017-08-10 12:52  
2037
MySQL   22181  2017-08-09 05:54 ~ 2022-07-08 13:03  
2036
그누보드   20128  2017-08-08 15:44  
2035
MSSQL   12390  2017-08-08 13:47  
2034
제로보드   11116  2017-08-08 04:18 ~ 2017-08-08 00:00  
2033
SNS   24541  2017-08-06 03:55  
2032
SNS   18683  2017-08-06 03:34 ~ 2017-08-06 00:00  
2031
SNS   22763  2017-08-06 01:55 ~ 2018-01-09 00:54  
2030
PHP   19479  2017-08-06 01:09  
2029
PHP   43888  2017-08-05 00:29 ~ 2018-01-10 06:11  
2028
PHP   25423  2017-08-03 23:59  
2027
Linux   95464  2017-08-03 23:02  
2026
PHP   29291  2017-08-03 16:56 ~ 2022-11-15 11:28  
2025
MySQL   18140  2017-08-03 14:29 ~ 2018-01-10 01:01  
2024
MySQL   12585  2017-08-01 18:40  
2023
영카트   11434  2017-08-01 17:15  
2022
그누보드   13833  2017-07-28 15:32  

검색

해피정닷컴 정보

회사소개 회사연혁 협력사 오시는길 서비스 이용약관 개인정보 처리방침

회사명: 해피정닷컴   대표: 정창용   전화: 070-7600-3500   팩스: 042-670-8272
주소: (34368) 대전시 대덕구 대화로 160 대전산업용재유통단지 1동 222호
개인정보보호책임자: 정창용   사업자번호: 119-05-36414
통신판매업신고: 제2024-대전대덕-0405호 [사업자등록확인]  
Copyright 2001~2024 해피정닷컴. All Rights Reserved.