Recent Posts
XML | 11 sec ago
Lua | 35 sec ago
None | 36 sec ago
C++ | 49 sec ago
None | 51 sec ago
CSS | 52 sec ago
Java 5 | 1 min ago
None | 1 min ago
Delphi | 1 min ago
None | 1 min ago
Free Subdomains
Want a pastebin.com sub-domain for your community?
learn more...
What is pastebin?
Pastebin is a website that hosts all your text & code on dedicated servers for easy sharing.
learn more...
By fishfucker on the 25th of Jul 2007 05:51:46 PM
Download |
Raw |
Embed |
Report
#!/bin/bash
user="root"
pass="foobar"
base="/var/www/development/sql"
function SqlDumpData {
mysqldump -u $user -p$pass --no-create-info --skip-opt --comments=0 $1 | \
egrep -v "INSERT INTO \`(accesslog|cache|search_index|sessions)\`" | sort >$2
}
function SqlDumpStructure {
mysqldump -u $user -p$pass --no-data $1 >$2
}
cd $base
# drupal
SqlDumpData example example_data.sql
SqlDumpStructure example example_structure.sql
Submit a correction or amendment below.
Make A New Post