#data
5 posts tagged data. Clear filter
-
How To Remove Duplicates From a Table with Postgres
Let's create a table that will hold some dummy data. create table fruits (id serial primary key, name varchar, color varchar); insert into fruits (name, color) values ('apple', 'red'); insert into...
-
Backup and Rotate MySQL Databases Simple Bash Script
Make a directory ( it can anywhere ) called baks/mysql mkdir -p /baks/mysql Create a file (it can be anywhere) called /root/mysqlbackups.sh and put this script in it !/bin/bash modify the following...
-
How to Import/Export Your Wordpress Blogroll... er, Your Links
It's not immediately apparent how to import/export the links in your Wordpress blogroll. One would expect that the import/export tool, used to backup/restore Wordpress posts and pages would handle...
-
The survey for people who make websites
I took the survey! Click here to take it →
-
Manage Fixtures with Yaml DB Plugin for Rails
Get the plugin like so... This command will dump your data And load it back Beautiful :) More info here http://blog.heroku.com/archives/2007/11/23/yamldb\for\databaseindependent\data\dumps/ and...