-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathrawsql-change-or-replace.sql
45 lines (37 loc) · 2.85 KB
/
rawsql-change-or-replace.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/* Change the destination URL of a WordPress site. */
UPDATE wp_options SET option_value = replace(option_value, 'http://www.oldurl.com', 'http://www.newurl.com') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://www.oldurl.com','http://www.newurl.com');
UPDATE wp_posts SET post_content = replace(post_content, ' http://www.oldurl.com ', ' http://www.newurl.com ');
/* Search and replace post/page content by string. */
UPDATE wp_posts SET post_content = REPLACE (post_content, 'original', 'replace_with');
/* Change username */
UPDATE wp_users SET user_login = 'new_username' WHERE user_login = 'username';
/* Reset user password */
UPDATE wp_users SET user_pass = MD5('password') WHERE user_login = 'username' LIMIT 1;
/* Change associated author on post/page */
UPDATE wp_posts SET post_author=(SELECT ID FROM wp_users WHERE user_login = 'username' LIMIT 1) WHERE post_author=(SELECT ID FROM wp_users WHERE user_login = 'username' LIMIT 1);
/* Change post type (post to page, etc) */
UPDATE wp_posts SET post_type = 'new_type' WHERE post_type = 'old_type';
/* Enable/Disable pingbacks & trackbacks before a certain date */
UPDATE wp_posts SET ping_status = 'closed|open' WHERE post_date < '2012-01-01' AND post_status = 'publish';
/* Enable/Disable comments before a certain date */
UPDATE wp_posts SET comment_status = 'closed' WHERE post_date < '2010-01-01' AND post_status = 'publish';
/* cleanup bad characters */
UPDATE wp_posts SET post_content = REPLACE(post_content, 'Â', '');
UPDATE wp_posts SET post_content = REPLACE(post_content, '“', '“');
UPDATE wp_posts SET post_content = REPLACE(post_content, 'â€', '”');
UPDATE wp_posts SET post_content = REPLACE(post_content, '’', '’');
UPDATE wp_posts SET post_content = REPLACE(post_content, '‘', '‘');
UPDATE wp_posts SET post_content = REPLACE(post_content, '—', '–');
UPDATE wp_posts SET post_content = REPLACE(post_content, '–', '—');
UPDATE wp_posts SET post_content = REPLACE(post_content, '•', '-');
UPDATE wp_posts SET post_content = REPLACE(post_content, '…', '…');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'Â', '');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, '“', '“');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, 'â€', '”');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, '’', '’');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, '‘', '‘');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, '—', '–');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, '–', '—');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, '•', '-');
UPDATE wp_comments SET comment_content = REPLACE(comment_content, '…', '…');