Run the SQL below:
This will return all the records that have not yet been processed.
Spot check the recrords returned to delete spam, correct typo mistakes and empty submissions
Run the SQL below:
This will update all records to indicate that they are NOT spam
Run the SQL below:
select max(id) from reviews;
select max(id) from appeals;
select max(id) from audits;
select max(id) from queries;
select count(*) from appealsstages where reviewed = false
Save the results of these queries to be used later.
Run the SQL below:
This will run the Transfer Appealsstages Stored Procedure
Ignore the error message below:
Error Code : 1329
No data - zero rows fetched, selected, or processed
(0 ms taken)
Confirm that all records were transfered.
Run the SQL below:
This query should return 0. If records are returned, they were not processed.
If records are returned in step 7, they may have come in after you completed step 3.
To confirm, check the url field in the query above and see if if the url is included in the exported result set in step 5.
To perform additional data checks, run the SQL below using the results of the queries in Step 4 above:
select url from reviews where id > *** query result 4.1 *** order by url
select count(*) from appeals where id > *** query result 4.2 ***
select count(*) from audits where id > *** query result 4.3 ***
select count(*) from queries where id > *** query result 4.4 ***
Problems? IM lleahy right away.
Run the SQL below using the results returned in Step 4, Query #2:
This will create a pretty list of URLs for "new appeals only" to send to Google
Export result set to an html file: Appeals<MMDDYYYY>.html
Save html file to file server: *****
Email the URL list to: ***@*****.com, ***@*****.org and the subject: StopBadware: New Appeals
Please be sure to send these results to both email adresses.
You're done!