Database/SQL Snippets

Title Categories Createdsort ascending

Get the currently installed schema version for a module.

by Chi
View get the currently installed schema version for a module.
bash
  1. drush ev 'require "includes/install.inc"; print drupal_get_installed_schema_version("module_name") . "\n";'
Database/SQL, Development/Debug, Drush/Bash, Migration
for Drupal 7

snippet rating: 2

2 weeks 21 hours ago

Backup for migrate

by carcheky
View backup for migrate
bash
  1. drush generate-makefile makefile/makefile.make --exclude-versions=drupal && drush sql-dump --result-file=makefile/makefile.sql && tar...
Database/SQL, Development/Debug, Drush/Bash, Migration

snippet rating: 0

3 weeks 4 days ago

How to debug an entity query using addTag and a hook_query_alter.

by paulbooker
Database/SQL, Entity/Node, Examples
for Drupal 7

snippet rating: 0

1 month 5 days ago

How to debug a dynamic query with and without devel.

by paulbooker
View how to debug a dynamic query with and without devel.
php
  1. $query = db_select('node', 'n');
  2. ...
Database/SQL
for Drupal 7

snippet rating: 0

1 month 5 days ago

Get total items count on query with limit

by varvashenia
View get total items count on query with limit
php
  1. $query = db_select('node', 'n');
  2. ...
Database/SQL
for Drupal 7

snippet rating: 0

comments: 1

1 month 1 week ago

Import gzipped sql via Drush

by Fidelix
View import gzipped sql via drush
bash
  1. gunzip -c myfile.sql.gz | drush sqlc
Database/SQL, Drush/Bash
for Drupal 6, 7

snippet rating: 0

comments: 2

1 month 1 week ago

EntityFieldQuery to get all nodes of one type

by tisteegz
View entityfieldquery to get all nodes of one type
php
  1. $query = new EntityFieldQuery();
  2.  
  3. ...
Database/SQL, Entity/Node
for Drupal 7

snippet rating: 0

comments: 2

1 month 1 week ago

Copy permissions from one role to another using Mysql only

by lmdoom
View copy permissions from one role to another using mysql only
sql
  1. CREATE TEMPORARY TABLE tmp SELECT * FROM role_permission WHERE rid...
Access Control, Database/SQL
for Drupal 7

snippet rating: 2

1 month 2 weeks ago

Get option list from raw datas

by bneel
View get option list from raw datas
php
  1. function mymodule_get_simple_list($datas, $value_name, $key_name = false, $...
Database/SQL, Fields, Form API
for Drupal 7

snippet rating: 0

1 month 3 weeks ago

Unblock admin account after 5 failed login attempts?

by ooops
View unblock admin account after 5 failed login attempts?
php
  1. #if you are not clear with user id who is blocked, you can completely clear the flood table
  2. arpit@arpit-u11:/var...
Administration, Database/SQL, Drush/Bash
for Drupal 7

snippet rating: -1

1 month 3 weeks ago
Subscribe to Database/SQL Snippets