Perhaps a database dump to a text/sql file and then use a text editor to search and replace. Then import the data again. If it's possible you may want to remove the domain name part of the URL and do absolute URLs from the start of the site (if it's all on one domain) so you won't need to do it again.
Eg, from <img src="archive.xyz.com/image.jpg"> to <img src="/image.jpg">
Is this really possible - to find/replace everything in the dump, then reload it up to the server? That would be way cool.
As for the absolute URL, that's exactly what we're trying to do. Up to now the content was on a separate server "archive.xyz.com", now it will be on the same one, hence we need to search and replace, i.e. delete the part before the filename.
Yes, you can either use the mysqldump tool (I think you need ssh or telnet access to the server for this; myslqdump is usually always installed with mysql) or my preferred way is to use the web-based phpMyAdmin which might already be set up by your ISP. Good luck!
Bookmarks