There are some times in Wordpress development when you need to disable all Wordpress plugins to proceed with your development. An example of this is setting up a multisite blog network on one Wordpress install. Here is a MySQL snippet for your wordpress database to disable all Wordpress plugins at once.
UPDATE wp_options SET option_value = '' WHERE option_name = 'active_plugins';