I've bought a few Amazon sites that have affilate IDs hard coded into images and webpages. Is there a good WP plugin to change them to your ID? I am aware of this free plugin, Amazon Link Localizer: http://wordpress.org/extend/plugins/amazon-affiliate-link-localizer/ But it makes money by putting the author's affiliate ID in when you don't have one for the country the click comes from. I'd rather pay to get something that changes them all to my ID.
If it was me I would do it manually. I know it takes time, but then you are sure to get it right. If you download the data base you can use search and replace.
You could easily construct an SQL statement to do it.. something like UPDATE wp_posts SET content = REPLACE(content, 'oldid-20', 'newid-20'); You can run this on phpMyAdmin WARNING: this is off the top of my head, you need to make sure it is on the correct fields etc. Also make sure you backup before doing anything like this.