zoukankan      html  css  js  c++  java
  • 修复./mysql/proc

    mysql数据库只能建不能删的错误提示及处理方法:

     mysql> drop database zabbixaa;
    
    ERROR 145 (HY000): Table ‘./mysql/proc‘ is marked as crashed and should be repaired
    

    处理方法:直接在mysql数据库里面使用root帐号登录后,进行修复:

    mysql> repair table mysql.proc;
    
    +------------+--------+----------+----------+
    
    | Table      | Op     | Msg_type | Msg_text |
    
    +------------+--------+----------+----------+
    
    | mysql.proc | repair | status   | OK       |
    
    +------------+--------+----------+----------+
    
    1 row in set (0.05 sec)
    

    再次执行删除正常

    mysql> drop database zabbixaa;
    
    Query OK, 0 rows affected (0.02 sec)
    

      

  • 相关阅读:
    open jdk
    llvm 编译
    llvm Array Bounds Check Elimination
    tmux 共享窗口大小
    llvm pass
    llvm code call graph
    llvm -O 经历过那些pass
    tcmalloc asan
    web ide
    eclipse配置
  • 原文地址:https://www.cnblogs.com/xzlive/p/9914326.html
Copyright © 2011-2022 走看看