<html><head></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><div><br></div><div>Depends a bit on how dirty you want to be, but assuming that the tables are disc_copies, you can actually simply swipe the <Tab>.DCD and <Tab>.DCL files for each table you want to move over - then drop them in the same place in the new mnesia directory (assuming schema already created), then start the new instance.</div><div><br></div><div>The .DCD file is a snapshot of the ets table, and the .DCL file is a set of operations on the table, updated each log dump. Thus, the pair forms a transaction-consistent view of the table (and *across tables*, if you do this on several tables at once), though not guaranteed to be the very latest. When the .DCL file grows too large, a new snapshot may be created (depending on mnesia settings).</div><div><br></div><div>You need to make sure that no log dump is ongoing while you do this. The only officially sanctioned way to get such a guarantee is to stop mnesia on the node in question. Before doing so, you can always call mnesia:dump_log() to ensure that you don't have a bunch of stuff still lingering in the transaction log.</div><div><br></div><div>BR,</div><div>Ulf W</div><div><br></div><div><div>On 2 Jul 2012, at 17:44, Daniel Dormont wrote:</div><br class="Apple-interchange-newline"><blockquote type="cite">Hi all,<div><br></div><div>Since I have been unable to restore order and goodness to my Mnesia cluster as discussed in my recent thread, I've decided to start over with a fresh node. But I need to move certain data across. My question now is much simpler: what is the best way to export a table (preferably _not_ including the table definition, since it will already exist, just the set of records) in one Mnesia installation and import it into another? I'm aware that there's a risk of things being slightly out of sync and I'm willing to completely ignore transactions for the purpose of this exercise anyway.</div>
<div><br></div><div>dan</div>
_______________________________________________<br>erlang-questions mailing list<br><a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>http://erlang.org/mailman/listinfo/erlang-questions<br></blockquote></div><br><div apple-content-edited="true">
<span class="Apple-style-span" style="border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: -webkit-auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; font-size: medium; "><div><div>Ulf Wiger, Co-founder & Developer Advocate, Feuerlabs Inc.</div><div><a href="http://feuerlabs.com">http://feuerlabs.com</a></div></div><div><br></div></span><br class="Apple-interchange-newline">
</div>
<br></body></html>