Hi,<br><br>I have a simple record defined as:<br>-record(user, {id, name}).<br><br>Next I start up mnesia and try to create a table as follows:<br><br>mnesia:create_table(user, [{type, ordered_set}, {disc_copies, [node()]}, {attributes, record_info(fields, user)}]).<br>
<br>This gives me this error:<br>{aborted,{bad_type,user,disc_copies,nonode@nohost}}<br><br><br>If i change the table type to be ram_copies, everything works fine.<br>I realise that I cannot use disc_only_copies with ordered_set, but I thought that disc_copies was supported.   <br>
<br>Am I doing something else wrong ?<br><br>Thanks<br>Philip<br>