Drupal: How to disable module from database

  •     First you open phpmyadmin
  •     Then you go to the database that drupal is working on
  •     Click on the SQL tab
  •     In the text field type the following query :

    UPDATE system SET status = 0 WHERE name = 'module_name' LIMIT 1;

*where "module_name" is name of module you want to disable.