How to join existing distributed mnesia database
Taavi Talvik
<
>
Tue Feb 14 12:39:10 CET 2006
Hello!
Lets say, I have created schema on
,
all distribution is enabled etc. Fiew tables are created.
i.e.
mnesia:create_schema(['
']).
mnesia:create_table(my_table,
[{disc_copies,
['
']},
{type, set},
{attributes,
record_info(fields, my_table)}]),
Now I want to add
How can I get second system, lets say
to situation
where all schema and tables are fully replicated
i.e. equivalent to situation, where they have worked together
from beginning
mnesia:create_schema(['
', '
']).
mnesia:create_table(my_table,
[{disc_copies, ['
',
'
']},
{type, set},
{attributes,
record_info(fields, my_table)}]),
best regards,
taavi
More information about the erlang-questions
mailing list