vi find/replaces for adding a table prefix to a SQL dump
Was importing a DB but wanted to prefix the tables, but the file was too large for TextMate. Here's all the vim substitutions
%s/DROP TABLE IF EXISTS `/DROP TABLE IF EXISTS `prefix_/g %s/CREATE TABLE `/CREATE TABLE `prefix_/g %s/INSERT INTO `/INSERT INTO `prefix_/g %s/LOCK TABLES `/LOCK TABLES `prefix_/g %s/ALTER TABLE `/ALTER TABLE `prefix_/g