免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1370 | 回复: 0
打印 上一主题 下一主题

Drop All MySQL Tables without Deleting A Database [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2011-12-19 13:55 |只看该作者 |倒序浏览

有时候我们不具有删除数据库的权限,只是被分配一个我们可以改动的数据库给我们。这个时候就不能使用以下方法:

  1. mysql> DROP DATABASE atomstore;

  2. mysql> CREATE DATABASE atomstore;

下面我用C写的两个小程序可以简单地做同样的事情而不用删除数据库。而用脚本实现的方法(by VIVEK GITE)也将附于文后。

 

源码在Ubuntu Linux ubuntu 2.6.24-22-generic #1 SMP Mon Nov 24 19:35:06 UTC 2008 x86_64 GNU/Linux下测试通过。

  1. /usr/include/mysql/mysql.h
  2. 是安装mysql时安装的头文件

  3. 我使用的编译命令如下:gcc -o mysql_list_tables mysql_list_tables.-lmysqlclient -lz

  4. -lmysqlclient -lz”必须要附上。
 

使用方法如下:

  1. ./mysql_list_tables host user password database table_list.txt 
  2.  
  3. 这样会生成所有表名,并存于table_list.txt中。 
  4.  
  5. ./mysql_drop_tables host user password database table_list.txt 
  6.  
  7. 这样会将table_list.txt中的表全部删除。 
  8.  
  9. 其中
  10. host 是mysql server 的地址
  11. user 是你的mysql 用户名 
  12. password 是你的mysql 登陆密码 
  13. database 是你想要删除的所有表所在的具体mysql数据库。

 
  1. /* C source file: mysql_list_tables.c 
  2.  * Written by linuxqc@gmail.com */
  3. #include </usr/include/mysql/mysql.h>
  4. #include <stdio.h>
  5. #include <stdlib.h>

  6. int main(int argc, char *argv[])
  7. {
  8. MYSQL *mysql;
  9. MYSQL_RES *result;
  10. MYSQL_ROW row;
  11. FILE *fp;

  12. if (argc != 6) {
  13.     printf("mysql_list_tables, a small tool to list all your tables in a mysql database.\n");
  14.     printf("Usage:\n");
  15.     printf("mysql_list_tables <host> <user> <password> <database> <table_list.txt>\n");
  16.     printf("table_list.txt ia a text file in which all the names of the tables of the specified database will be stored one name per line.\n");
  17.     printf("This list can be used by the tool mysql_drop_tables.\n"); 
  18.     exit(EXIT_FAILURE);
  19. }

  20. fp = fopen(argv[5],"w");
  21. if (fp == NULL) {
  22.     printf("can't open output stream.\n");
  23.     exit(EXIT_FAILURE);
  24. }
  25. if ((mysql=mysql_init(NULL)) == NULL) {
  26.     printf("mysql_init() error!\n");
  27. }
  28. if (mysql_real_connect(mysql, argv[1],argv[2], argv[3], argv[4],3306,NULL,0)== NULL) {
  29.     printf("mysql_connect() error!\n");
  30. }
  31. if ((result = mysql_list_tables(mysql, NULL)) == NULL) {
  32.     printf("mysql_list_tables() error!\n");
  33. }
  34. while ((row = mysql_fetch_row(result)) != NULL) {
  35.     printf("%s\n", row[0]);
  36.     fprintf(fp, "%s\n", row[0]);
  37. }
  38. fclose(fp);
  39. mysql_free_result(result);
  40. mysql_close(mysql);
  41. exit(EXIT_SUCCESS);
  42. }

 

  1. /* C source file: mysql_drop_tables.c 
  2.  * Written by linuxqc@gmail.com */
  3. #define _GNU_SOURCE
  4. #include <stdio.h>
  5. #include </usr/include/mysql/mysql.h>
  6. #include <stdlib.h>

  7. int main(int argc, char *argv[])
  8. {
  9. MYSQL *mysql;
  10. MYSQL_RES *result;
  11. MYSQL_ROW row;
  12. FILE * fp;
  13. char * line = NULL;
  14. size_t len = 0;
  15. ssize_t read;
  16. char command[] = "DROP TABLE ";
  17. char query[100] = "\0";

  18. if (argc != 6) {
  19.     printf("mysql_drop_tables, a small tool to drop all your tables.\n");
  20.     printf("Usage:\n");
  21.     printf("mysql_drop_tables <host> <user> <password> <database> <table_list.txt>\n");
  22.     printf("table_list.txt ia a text file in which all the names of the tables which you want to drop have been stored one name per line\n");
  23.     printf("You may use the tool mysql_list_tables to create the table_list.txt\n"); 
  24.     exit(EXIT_FAILURE);
  25. }

  26. if ((mysql=mysql_init(NULL)) == NULL) {
  27.     printf("mysql_init() error!\n");
  28. }
  29. if (mysql_real_connect(mysql, argv[1],argv[2], argv[3], argv[4],3306,NULL,0)== NULL) {
  30.     printf("mysql_connect() error!\n");
  31. }
  32. if ((result = mysql_list_tables(mysql, NULL)) == NULL) {
  33.     printf("mysql_list_tables() error!\n");
  34. }
  35. fp = fopen(argv[5],"r");
  36. if (fp == NULL) {
  37.     printf("can't read input stream.\n");
  38.     exit(EXIT_FAILURE);
  39. }
  40. while ((read = getline(&line, &len, fp)) != -1) {
  41.     strcpy(query, command);
  42.     strcat(query, line);
  43.     if (mysql_query(mysql, query) != 0) {
  44.         printf("mysql_query() error!\n");
  45.     }
  46. }
  47. if (line) {
  48.     free(line);
  49. }
  50. fclose(fp);
  51. mysql_free_result(result);
  52. mysql_close(mysql);
  53. exit(EXIT_SUCCESS);
  54. }

 附一:VIVEK GITE写的脚本:

  1. #!/bin/bash
  2. MUSER="$1"
  3. MPASS="$2"
  4. MDB="$3"
  5.  
  6. # Detect paths
  7. MYSQL=$(which mysql)
  8. AWK=$(which awk)
  9. GREP=$(which grep)
  10.  
  11. if [ $# -ne 3 ]
  12. then
  13.     echo "Usage: $0 {MySQL-User-Name} {MySQL-User-Password} {MySQL-Database-Name}"
  14.     echo "Drops all tables from a MySQL"
  15.     exit 1
  16. fi
  17.  
  18. TABLES=$($MYSQL -u $MUSER -p$MPASS $MDB -'show tables' | $AWK '{ print $1}'| $GREP -'^Tables' )
  19.  
  20. for t in $TABLES
  21. do
  22.     echo "Deleting $t table from $MDB database..."
  23.     $MYSQL -u $MUSER -p$MPASS $MDB -"drop table $t"
  24. done

 关于此脚本请参看:http://www.cyberciti.biz/faq/how-do-i-empty-mysql-database/

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP