<html>
<head>
<meta content="text/html; charset=windows-1252"
http-equiv="Content-Type">
</head>
<body text="#000000" bgcolor="#FFFFFF">
<div class="moz-cite-prefix">On 01/30/2015 09:06 AM, Colin Jack
wrote:<br>
</div>
<blockquote
cite="mid:30734355ad3f4eb69362262b33af719d@exchange.mainline.local"
type="cite">
<pre wrap="">We have a client who has trashed their database and their backup hasn't worked.
They want me to get it off last night's Aventurin{e} backup of the VPS that hosts their site! :)
What is the best way to extract a single database from the backup (if possible) - easy explanation please. :)
</pre>
</blockquote>
<code>as root<br>
<br>
export: mysqldump database_name > database_name.sql<br>
<br>
</code><code>import: mysql database_name < database_name.sql</code><br>
<br>
<br>
</body>
</html>