aboutsummaryrefslogtreecommitdiffstats
path: root/lib/mnesia/doc/src/mnesia.xml
blob: 7a8f796cee7db93d59f40f031a33fbf59428a9e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
<?xml version="1.0" encoding="latin1" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>1996</year><year>2011</year>
      <holder>Ericsson AB. All Rights Reserved.</holder>
    </copyright>
    <legalnotice>
      The contents of this file are subject to the Erlang Public License,
      Version 1.1, (the "License"); you may not use this file except in
      compliance with the License. You should have received a copy of the
      Erlang Public License along with this software. If not, it can be
      retrieved online at http://www.erlang.org/.

      Software distributed under the License is distributed on an "AS IS"
      basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
      the License for the specific language governing rights and limitations
      under the License.

    </legalnotice>

    <title>mnesia</title>
    <prepared>Claes Wikstr&ouml;m and H&aring;kan Mattsson</prepared>
    <responsible></responsible>
    <docno></docno>
    <approved></approved>
    <checked></checked>
    <date></date>
    <rev></rev>
    <file></file>
  </header>
  <module>mnesia</module>
  <modulesummary>A Distributed Telecommunications DBMS </modulesummary>
  <description>
    <p><c>Mnesia</c> is a distributed DataBase Management System (DBMS),
      appropriate for telecommunications applications and other Erlang
      applications which require continuous operation and  exhibit soft
      real-time properties.
      </p>
    <p>Listed below are some of the most important and attractive capabilities, Mnesia provides:
      </p>
    <list type="bulleted">
      <item>
        <p>A relational/object hybrid data model which is
          suitable for telecommunications applications.
          </p>
      </item>
      <item>
        <p>A specifically designed  DBMS query language, QLC (as an add-on library). 
          </p>
      </item>
      <item>
        <p>Persistence. Tables may be coherently kept on disc as
          well as in main memory.
          </p>
      </item>
      <item>
        <p>Replication. Tables may be replicated at several nodes.
          </p>
      </item>
      <item>
        <p>Atomic transactions. A series of table manipulation
          operations can be grouped into a single atomic
          transaction.
          </p>
      </item>
      <item>
        <p>Location transparency. Programs can be written without
          knowledge of the actual location of data.
          </p>
      </item>
      <item>
        <p>Extremely fast real time data searches.
          </p>
      </item>
      <item>
        <p>Schema manipulation routines. It is possible to
          reconfigure the DBMS at runtime without stopping the
          system.
          </p>
      </item>
    </list>
    <p>This Reference Manual describes the Mnesia API. This includes
      functions used to define and manipulate Mnesia tables.
      </p>
    <p>All functions documented in these pages can be used in any
      combination with queries using the list comprehension notation. The
      query notation is described in the QLC's man page.
      </p>
    <p>Data in Mnesia is organized as a set of tables.  Each table
      has a name which must be an atom. Each table is made up of
      Erlang records.  The user is responsible for the record
      definitions.  Each table also has a set of properties. Below
      are some of the properties that are associated with each
      table:
      </p>
    <list type="bulleted">
      <item>
        <p><c>type</c>. Each table can either have 'set',
          'ordered_set' or 'bag' semantics. Note: currently 'ordered_set' 
          is not supported for 'disc_only_copies'. If a table is of type
          'set' it means that each key leads to either one or zero
          records.           <br></br>
If a new item is inserted with the same key as
          an existing record, the old record is overwritten. On the
          other hand, if a table is of type 'bag', each key can map to
          several records. However, all records in type bag tables are
          unique, only the keys may be duplicated.
          </p>
      </item>
      <item>
        <p><c>record_name</c>. All records stored in a table must
          have the same name. You may say that the records must be
          instances of the same record type.
          </p>
      </item>
      <item>
        <p><c>ram_copies</c> A table can be replicated on a number
          of Erlang nodes. The <c>ram_copies</c> property specifies a
          list of Erlang nodes where RAM copies are kept.  These
          copies can be dumped to disc at regular intervals.  However,
          updates to these copies are not written to disc on a
          transaction basis.
          </p>
      </item>
      <item>
        <p><c>disc_copies</c> The <c>disc_copies</c> property
          specifies a list of Erlang nodes where the table is kept in
          RAM as well as on disc. All updates of the table are
          performed on the actual table and are also logged to disc.
          If a table is of type <c>disc_copies</c> at a certain node,
          it means that the entire table is resident in RAM memory as
          well as on disc. Each transaction performed on the table is
          appended to a LOG file as well as written into the RAM
          table.
          </p>
      </item>
      <item>
        <p><c>disc_only_copies</c> Some, or all, table replicas
          can be kept on disc only. These replicas are considerably
          slower than the RAM based replicas.
          </p>
      </item>
      <item>
        <p><c>index</c> This is a list of attribute names, or
          integers, which specify the tuple positions on which
          Mnesia shall build and maintain an extra index table.
          </p>
      </item>
      <item>
        <p><c>local_content</c> When an application requires 
          tables whose contents is local to each node,
          <c>local_content</c> tables may be used. The name of the
          table is known to all Mnesia nodes, but its contents is
          unique on each node. This means that access to such a table
          must be done locally.  Set the <c>local_content</c> field to
          <c>true</c> if you want to enable the <c>local_content</c>
          behavior. The default is <c>false</c>.
          </p>
      </item>
      <item>
	<p><c>majority</c> This attribute can be either <c>true</c> or
	<c>false</c> (default is <c>false</c>). When <c>true</c>, a majority
	of the table replicas must be available for an update to succeed.
	Majority checking can be enabled on tables with mission-critical data,
	where it is vital to avoid inconsistencies due to network splits.
	</p>
      </item>
      <item>
        <p><c>snmp</c> Each (set based) Mnesia table can be
          automatically turned into an SNMP ordered table as well.
          This property specifies the types of the SNMP keys.
          </p>
      </item>
      <item>
        <p><c>attributes</c>. The names of the attributes for the
          records that are inserted in the table.
          </p>
      </item>
    </list>
    <p>See <c>mnesia:create_table/2</c> about the complete set of
      table properties and their details.
      </p>
    <p>This document uses a table of persons to illustrate various
      examples. The following record definition is assumed:
      </p>
    <code type="none">
-record(person, {name,
                 age = 0,
                 address = unknown,
                 salary = 0,
                 children = []}),
    </code>
    <p>The first attribute of the record is the primary key, or key
      for short.
      </p>
    <p>The function descriptions are sorted in alphabetic order. <em>Hint:</em>
      start to read about <c>mnesia:create_table/2</c>,
      <c>mnesia:lock/2</c> and <c>mnesia:activity/4</c> before you continue on
      and learn about the rest.
      </p>
    <p>Writing or deleting in transaction context creates a local copy
      of each modified record during the transaction. During iteration,
      i.e. <c>mnesia:fold[lr]/4</c> <c>mnesia:next/2</c> <c>mnesia:prev/2</c> 
      <c>mnesia:snmp_get_next_index/2</c>, mnesia will compensate for 
      every written or deleted record, which may reduce the
      performance. If possible avoid writing or deleting records in
      the same transaction before iterating over the table.
    </p>
  </description>
  <funcs>
    <func>
      <name>abort(Reason) -> transaction abort </name>
      <fsummary>Abort the current transaction.</fsummary>
      <desc>
        <p>Makes the transaction silently 
          return the tuple <c>{aborted, Reason}</c>.
          The abortion of a Mnesia transaction means that
          an exception will be thrown to an enclosing <c>catch</c>.
          Thus, the expression <c>catch mnesia:abort(x)</c> does
          not abort the transaction. </p>
      </desc>
    </func>
    <func>
      <name>activate_checkpoint(Args) -> {ok,Name,Nodes} | {error,Reason}</name>
      <fsummary>Activate a checkpoint.</fsummary>
      <desc>
        <p>A checkpoint is a consistent view of the system. 
          A checkpoint can be activated on a set of tables.
          This checkpoint can then be traversed and will
          present a view of the system as it existed at the time when
          the checkpoint was activated,  even if the tables are being or have been
          manipulated. 
          </p>
        <p><c>Args</c> is a list of the following tuples: 
          </p>
        <list type="bulleted">
          <item>
            <p><c>{name,Name}</c>. <c>Name</c> of checkpoint. Each
              checkpoint must have a name which is unique to the
              associated nodes. The name can be reused only once the
              checkpoint has been deactivated. By default, a name
              which is probably unique is generated.
              </p>
          </item>
          <item>
            <p><c>{max,MaxTabs}</c><c>MaxTabs</c> is a list of
              tables that should be included in the checkpoint. The
              default is []. For these tables, the redundancy will be
              maximized and checkpoint information will be retained together
              with all replicas. The checkpoint becomes more fault
              tolerant if the tables have several replicas. When a new
              replica is added by means of the schema manipulation
              function <c>mnesia:add_table_copy/3</c>, a retainer will 
              also be attached automatically.
              </p>
          </item>
          <item>
            <p><c>{min,MinTabs}</c>. <c>MinTabs</c> is a list of
              tables that should be included in the checkpoint. The
              default is []. For these tables, the redundancy will be
              minimized and the checkpoint information will only be retained
              with one replica, preferably on the local node.
              </p>
          </item>
          <item>
            <p><c>{allow_remote,Bool}</c>. <c>false</c> means that
              all retainers must be local. The checkpoint cannot be
              activated if a table does not reside locally.
              <c>true</c> allows retainers to be allocated on any
              node. Default is set to <c>true</c>.
              </p>
          </item>
          <item>
            <p><c>{ram_overrides_dump,Bool} </c> Only applicable
              for <c>ram_copies</c>.  <c>Bool</c> allows you to choose
              to backup the table state as it is in RAM, or as it is on
              disc. <c>true</c> means that the latest committed
              records in RAM should be included in the checkpoint.
              These are the  records that the application accesses.
              <c>false</c> means that the records dumped to DAT files
              should be included in the checkpoint. These are the
              records that will be loaded at startup. Default is
              <c>false</c>.   
              </p>
          </item>
        </list>
        <p>Returns <c>{ok,Name,Nodes}</c> or <c>{error,Reason}</c>.
          <c>Name</c> is the (possibly generated) name of the
          checkpoint. <c>Nodes</c> are the nodes that
          are involved in the checkpoint. Only nodes that keep a
          checkpoint retainer know about the checkpoint.
          </p>
      </desc>
    </func>
    <func>
      <name>activity(AccessContext, Fun [, Args]) -> ResultOfFun | exit(Reason)</name>
      <fsummary>Execute <c>Fun</c>in <c>AccessContext</c>.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:activity(AccessContext, Fun, Args, AccessMod)</c> where <c>AccessMod</c> is the default
          access callback module obtained by
          <c>mnesia:system_info(access_module)</c>. <c>Args</c>
          defaults to the empty list <c>[]</c>.</p>
      </desc>
    </func>
    <func>
      <name>activity(AccessContext, Fun, Args, AccessMod) -> ResultOfFun | exit(Reason)</name>
      <fsummary>Execute <c>Fun</c>in <c>AccessContext</c>.</fsummary>
      <desc>
        <p>This function executes the functional object <c>Fun</c>
          with the arguments <c>Args</c>. 
          </p>
        <p>The code which executes inside the activity can
          consist of a series of table manipulation functions, which is
          performed in a <c>AccessContext</c>. Currently, the following
          access contexts are supported:
          </p>
        <taglist>
          <tag><c>transaction</c></tag>
          <item>
            <p>Short for <c>{transaction, infinity}</c></p>
          </item>
          <tag><c>{transaction, Retries}</c></tag>
          <item>
            <p>Invokes <c>mnesia:transaction(Fun, Args, Retries)</c>. Note that the result from the <c>Fun</c> is
              returned if the transaction was successful (atomic),
              otherwise the function exits with an abort reason.
              </p>
          </item>
          <tag><c>sync_transaction</c></tag>
          <item>
            <p>Short for <c>{sync_transaction, infinity}</c></p>
          </item>
          <tag><c>{sync_transaction, Retries}</c></tag>
          <item>
            <p>Invokes <c>mnesia:sync_transaction(Fun, Args, Retries)</c>. Note that the result from the <c>Fun</c> is
              returned if the transaction was successful (atomic),
              otherwise the function exits with an abort reason.
              </p>
          </item>
          <tag><c>async_dirty</c></tag>
          <item>
            <p>Invokes <c>mnesia:async_dirty(Fun, Args)</c>.
              </p>
          </item>
          <tag><c>sync_dirty</c></tag>
          <item>
            <p>Invokes <c>mnesia:sync_dirty(Fun, Args)</c>.
              </p>
          </item>
          <tag><c>ets</c></tag>
          <item>
            <p>Invokes <c>mnesia:ets(Fun, Args)</c>.
              </p>
          </item>
        </taglist>
        <p>This function (<c>mnesia:activity/4</c>) differs in an
          important aspect from the <c>mnesia:transaction</c>,
          <c>mnesia:sync_transaction</c>,
          <c>mnesia:async_dirty</c>, <c>mnesia:sync_dirty</c> and
          <c>mnesia:ets</c> functions. The <c>AccessMod</c> argument
          is the name of a callback module which implements the
          <c>mnesia_access</c> behavior.
          </p>
        <p>Mnesia will forward calls to the following functions:
          </p>
        <list type="bulleted">
          <item>
            <p>mnesia:lock/2 (read_lock_table/1, write_lock_table/1)</p>
          </item>
          <item>
            <p>mnesia:write/3 (write/1, s_write/1)</p>
          </item>
          <item>
            <p>mnesia:delete/3 (delete/1, s_delete/1)</p>
          </item>
          <item>
            <p>mnesia:delete_object/3 (delete_object/1, s_delete_object/1)</p>
          </item>
          <item>
            <p>mnesia:read/3 (read/1, wread/1)</p>
          </item>
          <item>
            <p>mnesia:match_object/3 (match_object/1)</p>
          </item>
          <item>
            <p>mnesia:all_keys/1</p>
          </item>
          <item>
            <p>mnesia:first/1</p>
          </item>
          <item>
            <p>mnesia:last/1</p>
          </item>
          <item>
            <p>mnesia:prev/2</p>
          </item>
          <item>
            <p>mnesia:next/2</p>
          </item>
          <item>
            <p>mnesia:index_match_object/4 (index_match_object/2)</p>
          </item>
          <item>
            <p>mnesia:index_read/3</p>
          </item>
          <item>
            <p>mnesia:table_info/2</p>
          </item>
        </list>
        <p>to the corresponding:
          </p>
        <list type="bulleted">
          <item>
            <p>AccessMod:lock(ActivityId, Opaque, LockItem, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:write(ActivityId, Opaque, Tab, Rec, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:delete(ActivityId, Opaque, Tab, Key, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:delete_object(ActivityId, Opaque, Tab, RecXS, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:read(ActivityId, Opaque, Tab, Key, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:match_object(ActivityId, Opaque, Tab, Pattern, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:all_keys(ActivityId, Opaque, Tab, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:first(ActivityId, Opaque, Tab)</p>
          </item>
          <item>
            <p>AccessMod:last(ActivityId, Opaque, Tab)</p>
          </item>
          <item>
            <p>AccessMod:prev(ActivityId, Opaque, Tab, Key)</p>
          </item>
          <item>
            <p>AccessMod:next(ActivityId, Opaque, Tab, Key)</p>
          </item>
          <item>
            <p>AccessMod:index_match_object(ActivityId, Opaque, Tab, Pattern, Attr, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:index_read(ActivityId, Opaque, Tab, SecondaryKey, Attr, LockKind)</p>
          </item>
          <item>
            <p>AccessMod:table_info(ActivityId, Opaque, Tab, InfoItem)</p>
          </item>
        </list>
        <p>where <c>ActivityId</c> is a record which represents the
          identity of the enclosing Mnesia activity. The first field
          (obtained with <c>element(1, ActivityId)</c> contains an
          atom which may be interpreted as the type of the activity:
          <c>'ets'</c>, <c>'async_dirty'</c>, <c>'sync_dirty'</c> or
          <c>'tid'</c>. <c>'tid'</c> means that the activity is a
          transaction. The structure of the rest of the identity
          record is internal to Mnesia.
          </p>
        <p><c>Opaque</c> is an opaque data structure which is internal
          to Mnesia.</p>
      </desc>
    </func>
    <func>
      <name>add_table_copy(Tab, Node, Type) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Copy a table to a remote node.</fsummary>
      <desc>
        <p>This function makes another copy of a table  at the
          node <c>Node</c>. The <c>Type</c> argument must be
          either of the atoms <c>ram_copies</c>, <c>disc_copies</c>,
          or
          <c>disc_only_copies</c>. For example, the following call
          ensures that a disc replica of the <c>person</c> table  also
          exists at node <c>Node</c>.</p>
        <code type="none">
mnesia:add_table_copy(person, Node, disc_copies)
        </code>
        <p>This function can also be used to add a replica of the
          table named <c>schema</c>.</p>
      </desc>
    </func>
    <func>
      <name>add_table_index(Tab, AttrName) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Create an index for a table. </fsummary>
      <desc>
        <p>Table indices can and should be used whenever the user
          wants to frequently use some other field than the key field
          to look up records. If this other field has an index
          associated with it, these lookups can occur in constant time
          and space.  For example, if our application wishes to use
          the age field of persons to efficiently find all person with
          a specific age, it might be a good idea to have an index on
          the age field. This can be accomplished with the following
          call:</p>
        <code type="none">
mnesia:add_table_index(person, age)
        </code>
        <p>Indices do not come free, they occupy space which is 
          proportional to the size of the table. They also cause insertions
          into the table to execute slightly slower. </p>
      </desc>
    </func>
    <func>
      <name>all_keys(Tab) -> KeyList | transaction abort</name>
      <fsummary>Return all keys in a table.</fsummary>
      <desc>
        <p>This function returns a list of all keys in the table
          named <c>Tab</c>. The semantics of this function is context
          sensitive. See <c>mnesia:activity/4</c> for more information. In
          transaction context it acquires a read lock on the entire
          table.</p>
      </desc>
    </func>
    <func>
      <name>async_dirty(Fun, [, Args])  -> ResultOfFun | exit(Reason)</name>
      <fsummary>Call the Fun in a context which is not protected by a transaction.</fsummary>
      <desc>
        <p>Call the <c>Fun</c> in a context which is not protected
          by a transaction. The Mnesia function calls performed in the
          <c>Fun</c> are mapped to the corresponding dirty
          functions. This still involves logging, replication and
          subscriptions, but there is no locking, local transaction
          storage, or commit protocols involved. Checkpoint retainers
          and indices are updated, but they will be updated dirty. As
          for normal mnesia:dirty_* operations, the operations are
          performed semi-asynchronously. See
          <c>mnesia:activity/4</c> and the Mnesia User's Guide for
          more details.
          </p>
        <p>It is possible to manipulate the Mnesia tables without
          using transactions. This has some serious disadvantages, but
          is considerably faster since the transaction manager is not
          involved and no locks are set. A dirty operation does,
          however, guarantee a certain level of consistency and it is
          not possible for the dirty operations to return garbled
          records. All dirty operations provide location transparency
          to the programmer and a program does not have to be aware of
          the whereabouts of a certain table in order to function. 
          </p>
        <p><em>Note:</em>It is more than 10 times more efficient to read records dirty
          than within a transaction.
          </p>
        <p>Depending on the application, it may be a good idea to use
          the dirty functions for certain operations. Almost all
          Mnesia functions which can be called within transactions
          have a dirty equivalent which is much more
          efficient. However, it must be noted that it is possible for
          the database to be left in an inconsistent state if dirty
          operations are used to update it. Dirty operations should
          only be used for performance reasons when it is absolutely
          necessary.  </p>
        <p><em>Note:</em> Calling (nesting) a <c>mnesia:[a]sync_dirty</c>
          inside a transaction context will inherit the transaction semantics.
          </p>
      </desc>
    </func>
    <func>
      <name>backup(Opaque [, BackupMod]) -> ok | {error,Reason}</name>
      <fsummary>Back up all tables in the database.</fsummary>
      <desc>
        <p>Activates a new checkpoint covering all Mnesia tables,
          including the schema, with maximum degree of redundancy and
          performs a backup using <c>backup_checkpoint/2/3</c>.  The
          default value of the backup callback module <c>BackupMod</c>
          is obtained by <c>mnesia:system_info(backup_module)</c>.</p>
      </desc>
    </func>
    <func>
      <name>backup_checkpoint(Name, Opaque [, BackupMod]) ->  ok | {error,Reason}</name>
      <fsummary>Back up all tables in a checkpoint.</fsummary>
      <desc>
        <p>The tables are backed up to external media using the backup
          module <c>BackupMod</c>. Tables with the local contents
          property is being backed up as they exist on the current
          node.  <c>BackupMod</c> is the default backup callback
          module obtained by
          <c>mnesia:system_info(backup_module)</c>. See the User's
          Guide about the exact callback interface (the
          <c>mnesia_backup behavior</c>).</p>
      </desc>
    </func>
    <func>
      <name>change_config(Config, Value) -> {error, Reason} | {ok, ReturnValue}</name>
      <fsummary>Change a configuration parameter.</fsummary>
      <desc>
        <p>The <c>Config</c> should be an atom of the following 
          configuration parameters: </p>
        <taglist>
          <tag><c>extra_db_nodes</c></tag>
          <item>
            <p><c>Value</c> is a list of nodes which Mnesia should try to connect to.
              The <c>ReturnValue</c> will be those nodes in 
              <c>Value</c> that Mnesia are connected to.
                            <br></br>
Note: This function shall only be used to connect to newly started ram nodes
              (N.D.R.S.N.) with an empty schema. If for example it is used after the network 
              have been partitioned it may lead to inconsistent tables.
                            <br></br>
Note: Mnesia may be connected to other nodes than those
              returned in <c>ReturnValue</c>.</p>
          </item>
          <tag><c>dc_dump_limit</c></tag>
          <item>
            <p><c>Value</c> is a number. See description in 
              <c>Configuration Parameters</c> below.
              The <c>ReturnValue</c> is the new value. Note this configuration parameter
              is not persistent, it will be lost when mnesia stopped.</p>
          </item>
        </taglist>
      </desc>
    </func>
    <func>
      <name>change_table_access_mode(Tab, AccessMode) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Change the access mode for the table.</fsummary>
      <desc>
        <p>The <c>AcccessMode</c> is by default the atom
          <c>read_write</c> but it may also be set to the atom
          <c>read_only</c>. If the <c>AccessMode</c> is set to
          <c>read_only</c>, it means that it is not possible to perform
          updates to the table. At startup Mnesia always loads
          <c>read_only</c> tables locally regardless of when and if
          Mnesia was terminated on other nodes.</p>
      </desc>
    </func>
    <func>
      <name>change_table_copy_type(Tab, Node, To) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Change the storage type of a table.</fsummary>
      <desc>
        <p>For example:</p>
        <code type="none">
mnesia:change_table_copy_type(person, node(), disc_copies)
        </code>
        <p>Transforms our <c>person</c> table from a RAM table into
          a disc based table at <c>Node</c>. 
          </p>
        <p>This function can also be used to change the storage type of
          the table named <c>schema</c>. The schema table can only
          have <c>ram_copies</c> or <c>disc_copies</c> as the storage type. If the
          storage type of the schema is <c>ram_copies</c>, no other table
          can be disc resident on that node.</p>
      </desc>
    </func>
    <func>
      <name>change_table_load_order(Tab, LoadOrder) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Change the load order priority for the table.</fsummary>
      <desc>
        <p>The <c>LoadOrder</c> priority is by default <c>0</c> (zero)
          but may be set to any integer. The tables with the highest
          <c>LoadOrder</c> priority will be loaded first at startup.</p>
      </desc>
    </func>
    <func>
      <name>change_table_majority(Tab, Majority) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Change the majority check setting for the table.</fsummary>
      <desc>
        <p><c>Majority</c> must be a boolean; the default is <c>false</c>.
	When <c>true</c>, a majority of the table's replicas must be available
	for an update to succeed. When used on fragmented tables, <c>Tab</c>
	must be the name base table. Directly changing the majority setting on
	individual fragments is not allowed.</p>
      </desc>
    </func>
    <func>
      <name>clear_table(Tab) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Deletes all entries in a table.</fsummary>
      <desc>
        <p>Deletes all entries in the table <c>Tab</c>.</p>
      </desc>
    </func>
    <func>
      <name>create_schema(DiscNodes) -> ok | {error,Reason}</name>
      <fsummary>Create a brand new schema on the specified nodes.</fsummary>
      <desc>
        <p>Creates a new database on disc. Various files are
          created in the local Mnesia directory of each node. Note
          that the directory must be unique for each node. Two nodes
          may never share the same directory. If possible, use a local
          disc device in order to improve performance.</p>
        <p><c>mnesia:create_schema/1</c> fails if any of the
          Erlang nodes given as <c>DiscNodes</c> are not alive, if
          Mnesia is running on anyone of the nodes, or if anyone of
          the nodes already has a schema.  Use
          <c>mnesia:delete_schema/1</c> to get rid of old faulty
          schemas.
          </p>
        <p><em>Note:</em> Only nodes with disc should be
          included in <c>DiscNodes</c>. Disc-less nodes, that is nodes
          where all tables including the schema only resides in RAM,
          may not be included.</p>
      </desc>
    </func>
    <func>
      <name>create_table(Name, TabDef) -> {atomic, ok} | {aborted, Reason}</name>
      <fsummary>Create a Mnesia table called <c>Name</c>with properties as described by the argument <c>TabDef</c>.</fsummary>
      <desc>
        <p>This function creates a Mnesia table called <c>Name</c>
          according to the
          argument <c>TabDef</c>. This list must be a list of
          <c>{Item, Value}</c> tuples, where the following values are
          allowed:</p>
        <list type="bulleted">
          <item>
            <p><c>{access_mode, Atom}</c>.  The access mode  is by
              default the atom <c>read_write</c> but it may also be
              set to the atom <c>read_only</c>. If the
              <c>AccessMode</c> is set to <c>read_only</c>, it means
              that it is not possible to perform updates to the table.
              </p>
            <p>At startup Mnesia always loads <c>read_only</c> tables
              locally regardless of when and if Mnesia was terminated
              on other nodes. This argument returns the access mode of
              the table. The access mode may either be read_only or
              read_write.
              </p>
          </item>
          <item>
            <p><c>{attributes, AtomList}</c> a list of the
              attribute names for the records that are supposed to
              populate the table. The default value is <c>[key, val]</c>. The table must have at least one extra
              attribute in addition to the  key.
              </p>
            <p>When accessing single attributes in a record, it is not
              necessary, or even recommended, to hard code any
              attribute names as atoms. Use the construct
              <c>record_info(fields, RecordName)</c> instead. It can be
              used for records of type <c>RecordName</c></p>
          </item>
          <item>
            <p><c>{disc_copies, Nodelist}</c>, where
              <c>Nodelist</c> is a list of the nodes where this table
              is supposed to have  disc copies. If a table replica is
              of type <c>disc_copies</c>, all write operations on this
              particular replica of the table are written to disc as
              well as to the RAM copy of the table.
              </p>
            <p>It is possible
              to have a replicated table of type   <c>disc_copies</c>
              on one node, and another type on another node.  The
              default value is <c>[]</c></p>
          </item>
          <item>
            <p><c>{disc_only_copies, Nodelist}</c>, where
              <c>Nodelist</c> is a list of the nodes where this table
              is supposed to  have <c>disc_only_copies</c>. A disc only
              table replica is kept on disc  only and unlike the other
              replica types, the contents of the replica will not
              reside in RAM. These replicas are considerably slower
              than replicas held in RAM.
              </p>
          </item>
          <item>
            <p><c>{index, Intlist}</c>, where
              <c>Intlist</c> is a list of attribute names (atoms) or
              record fields for which Mnesia shall build and maintain
              an extra index table. The <c>qlc</c> query compiler may
              or may not utilize any additional indices while
              processing queries on a table. 
              </p>
          </item>
          <item>
            <p><c>{load_order, Integer}</c>. The load order
              priority is by default <c>0</c> (zero) but may be set to
              any integer. The tables with the highest load order
              priority will be loaded first at startup.
              </p>
          </item>
	  <item>
	    <p><c>{majority, Flag}</c>, where <c>Flag</c> must be a boolean.
	    If <c>true</c>, any (non-dirty) update to the table will abort unless
	    a majority of the table's replicas are available for the commit.
	    When used on a fragmented table, all fragments will be given
	    the same majority setting.
	    </p>
	  </item>
          <item>
            <p><c>{ram_copies, Nodelist}</c>, where
              <c>Nodelist</c> is a list of the nodes where this table
              is supposed to  have RAM copies. A table replica of type
              <c>ram_copies</c> is obviously not written to disc on a
              per transaction basis. It is possible to  dump
              <c>ram_copies</c> replicas to disc with the function
              <c>mnesia:dump_tables(Tabs)</c>. The default value for
              this attribute is <c>[node()]</c>.
              </p>
          </item>
          <item>
            <p><c>{record_name, Name}</c>, where <c>Name</c> must
              be an atom.  All records, stored in the table, must have
              this name as the first element. It defaults to the same
              name as the name of the table.
              </p>
          </item>
          <item>
            <p><c>{snmp, SnmpStruct}</c>. See
              <c>mnesia:snmp_open_table/2</c> for a description of
              <c>SnmpStruct</c>. If this attribute is present in the
              <c>ArgList</c> to <c>mnesia:create_table/2</c>, the
              table is immediately accessible by means of the Simple
              Network Management  Protocol (SNMP). This means that
              applications which use SNMP to manipulate and control
              the system can be designed easily, since Mnesia provides
              a direct mapping between the logical tables that make up
              an SNMP control application and the physical data which
              makes up a Mnesia table.
              </p>
          </item>
          <item>
            <p><c>{type, Type}</c>, where <c>Type</c> must be
              either of the atoms <c>set</c>, <c>ordered_set</c> or
              <c>bag</c>. The default value is <c>set</c>. In a
              <c>set</c> all records have unique keys and in a
              <c>bag</c> several records may have the same key, but
              the record content is unique. If a non-unique record is
              stored the old, conflicting record(s) will simply be
              overwritten. Note: currently 'ordered_set' 
              is not supported for 'disc_only_copies'.
              </p>
          </item>
          <item>
            <p><c>{local_content, Bool}</c>, where <c>Bool</c> must be
              either <c>true</c> or <c>false</c>. The default value is <c>false</c>.</p>
          </item>
        </list>
        <p>For example, the following call creates the <c>person</c> table
          previously defined and replicates it on 2 nodes: 
          </p>
        <code type="none">
mnesia:create_table(person, 
    [{ram_copies, [N1, N2]},
     {attributes, record_info(fields,person)}]).
        </code>
        <p>If it was required that Mnesia   build and maintain an extra index
          table on the <c>address</c> attribute of all the <c>person</c>
          records that are inserted in the table, the following code would be issued:
          </p>
        <code type="none">
mnesia:create_table(person,
    [{ram_copies, [N1, N2]},
     {index, [address]},
     {attributes, record_info(fields,person)}]).
        </code>
        <p>The specification of <c>index</c> and <c>attributes</c> may be
          hard coded as <c>{index, [2]}</c> and 
          <c>{attributes, [name, age, address, salary, children]}</c> 
          respectively.
          </p>
        <p><c>mnesia:create_table/2</c> writes records into the
          <c>schema</c> table. This function, as well as all other
          schema manipulation functions, are implemented with the
          normal transaction management system. This guarantees that
          schema updates are performed on all nodes in an atomic
          manner.</p>
      </desc>
    </func>
    <func>
      <name>deactivate_checkpoint(Name) -> ok | {error, Reason}</name>
      <fsummary>Deactivate a checkpoint.</fsummary>
      <desc>
        <p>The checkpoint is automatically deactivated when some of
          the tables involved have no retainer attached to them. This may
          happen when nodes go down or when a replica is deleted.
          Checkpoints will also be deactivated with this function.
          <c>Name</c> is the name of an active checkpoint.</p>
      </desc>
    </func>
    <func>
      <name>del_table_copy(Tab, Node) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Delete the replica of table <c>Tab</c>at node <c>Node</c>.</fsummary>
      <desc>
        <p>Deletes the replica of table <c>Tab</c> at node <c>Node</c>.
          When the last replica is deleted with this
          function, the table disappears entirely.
          </p>
        <p>This function may also be used to delete a replica of
          the table named <c>schema</c>. Then the mnesia node will be removed.
          Note: Mnesia must be stopped on the node first.</p>
      </desc>
    </func>
    <func>
      <name>del_table_index(Tab, AttrName) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Delete an index in a table. </fsummary>
      <desc>
        <p>This function deletes the index on attribute with name
          <c>AttrName</c> in a table.</p>
      </desc>
    </func>
    <func>
      <name>delete({Tab, Key}) -> transaction abort | ok </name>
      <fsummary>Delete all records in table <c>Tab</c>with the key <c>Key</c>.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:delete(Tab, Key, write)</c></p>
      </desc>
    </func>
    <func>
      <name>delete(Tab, Key, LockKind) -> transaction abort | ok </name>
      <fsummary>Delete all records in table <c>Tab</c>with the key <c>Key</c>.</fsummary>
      <desc>
        <p>Deletes all records in table <c>Tab</c> with the key
          <c>Key</c>.  
          </p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires a lock of type <c>LockKind</c> in the
          record.  Currently the lock types <c>write</c> and
          <c>sticky_write</c> are supported.</p>
      </desc>
    </func>
    <func>
      <name>delete_object(Record) -> transaction abort | ok </name>
      <fsummary>Delete a record</fsummary>
      <desc>
        <p>Invokes <c>mnesia:delete_object(Tab, Record, write)</c> where
          <c>Tab</c> is <c>element(1, Record)</c>.</p>
      </desc>
    </func>
    <func>
      <name>delete_object(Tab, Record, LockKind) -> transaction abort | ok </name>
      <fsummary>Delete a record</fsummary>
      <desc>
        <p>If a table is of type <c>bag</c>, we may sometimes
          want to delete only some of the records with a certain
          key. This can be done with the <c>delete_object/3</c>
          function.  A complete record must be supplied to this
          function.  
          </p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires a lock of type <c>LockKind</c> on the
          record. Currently the lock types <c>write</c> and
          <c>sticky_write</c> are supported.</p>
      </desc>
    </func>
    <func>
      <name>delete_schema(DiscNodes) -> ok | {error,Reason}</name>
      <fsummary>Delete the schema on the given nodes</fsummary>
      <desc>
        <p>Deletes a database created with
          <c>mnesia:create_schema/1</c>.
          <c>mnesia:delete_schema/1</c> fails if any of the Erlang
          nodes given as <c>DiscNodes</c> is not alive, or if Mnesia
          is running on any of the nodes.
          </p>
        <p>After the database has been deleted, it may still be
          possible to start Mnesia as a disc-less node. This depends on
          how the configuration parameter <c>schema_location</c> is set.
          </p>
        <warning>
          <p>This function must be used with extreme
            caution since it makes  existing persistent data
            obsolete. Think twice before using it.  </p>
        </warning>
      </desc>
    </func>
    <func>
      <name>delete_table(Tab) -> {aborted, Reason} | {atomic, ok} </name>
      <fsummary>Delete permanently all replicas of table <c>Tab</c>.</fsummary>
      <desc>
        <p>Permanently deletes all replicas of table <c>Tab</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_all_keys(Tab) -> KeyList | exit({aborted, Reason}).</name>
      <fsummary>Dirty search for all record keys in table.</fsummary>
      <desc>
        <p>This is the dirty equivalent of the
          <c>mnesia:all_keys/1</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_delete({Tab, Key}) -> ok | exit({aborted, Reason}) </name>
      <fsummary>Dirty delete of a record.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:dirty_delete(Tab, Key)</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_delete(Tab, Key) -> ok | exit({aborted, Reason}) </name>
      <fsummary>Dirty delete of a record. </fsummary>
      <desc>
        <p>This is the dirty equivalent of the 
          <c>mnesia:delete/3</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_delete_object(Record) </name>
      <fsummary>Dirty delete of a record.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:dirty_delete_object(Tab, Record)</c>
          where <c>Tab</c> is <c>element(1, Record)</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_delete_object(Tab, Record) </name>
      <fsummary>Dirty delete of a record. </fsummary>
      <desc>
        <p>This is the dirty equivalent of the
          <c>mnesia:delete_object/3</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_first(Tab) ->  Key | exit({aborted, Reason}) </name>
      <fsummary>Return the key for the first record in a table.</fsummary>
      <desc>
        <p>Records in <c>set</c> or <c>bag</c> tables are not ordered. 
          However, there 
          is an ordering of the records which is not known 
          to the user. Accordingly, it is possible to traverse a table by means
          of this function in conjunction with the <c>mnesia:dirty_next/2</c> 
          function.
          </p>
        <p>If there are no records at all in the table, this function
          returns the atom <c>'$end_of_table'</c>. For this reason, it
          is highly undesirable, but not disallowed, to use this atom
          as the key for any user records.</p>
      </desc>
    </func>
    <func>
      <name>dirty_index_match_object(Pattern, Pos)</name>
      <fsummary>Dirty pattern match using index.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:dirty_index_match_object(Tab, Pattern, Pos)</c> where <c>Tab</c> is <c>element(1, Pattern)</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_index_match_object(Tab, Pattern, Pos)</name>
      <fsummary>Dirty pattern match using index.</fsummary>
      <desc>
        <p>This is the dirty equivalent of the
          <c>mnesia:index_match_object/4</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_index_read(Tab, SecondaryKey, Pos)</name>
      <fsummary>Dirty read using index.</fsummary>
      <desc>
        <p>This is the dirty equivalent of the
          <c>mnesia:index_read/3</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_last(Tab) ->  Key | exit({aborted, Reason}) </name>
      <fsummary>Return the key for the last record in a table.</fsummary>
      <desc>
        <p>This function works exactly like
          <c>mnesia:dirty_first/1</c> but returns the last object in
          Erlang  term  order for the <c>ordered_set</c> table type. For
          all other table types, <c>mnesia:dirty_first/1</c> and 
          <c>mnesia:dirty_last/1</c> are synonyms.</p>
      </desc>
    </func>
    <func>
      <name>dirty_match_object(Pattern) -> RecordList | exit({aborted, Reason}).</name>
      <fsummary>Dirty pattern match pattern.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:dirty_match_object(Tab, Pattern)</c>
          where <c>Tab</c> is <c>element(1, Pattern)</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_match_object(Tab, Pattern) -> RecordList | exit({aborted, Reason}).</name>
      <fsummary>Dirty pattern match pattern.</fsummary>
      <desc>
        <p>This is the dirty equivalent of the
          <c>mnesia:match_object/3</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_next(Tab, Key) -> Key | exit({aborted, Reason}) </name>
      <fsummary>Return the next key in a table. </fsummary>
      <desc>
        <p>This function makes it possible to traverse a table
          and perform operations on all records in the table. When
          the end of the table is reached, the special key
          <c>'$end_of_table'</c> is returned. Otherwise, the function
          returns a key which can be used to read the actual record.The
          behavior is undefined if another Erlang process performs write
          operations on the table while it is being traversed with the
          <c>mnesia:dirty_next/2</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_prev(Tab, Key) -> Key | exit({aborted, Reason}) </name>
      <fsummary>Return the previous key in a table. </fsummary>
      <desc>
        <p>This function works exactly like
          <c>mnesia:dirty_next/2</c> but returns the previous object in
          Erlang term  order for the ordered_set table type. For
          all other table types, <c>mnesia:dirty_next/2</c> and 
          <c>mnesia:dirty_prev/2</c> are synonyms.</p>
      </desc>
    </func>
    <func>
      <name>dirty_read({Tab, Key}) -> ValueList | exit({aborted, Reason}</name>
      <fsummary>Dirty read of records.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:dirty_read(Tab, Key)</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_read(Tab, Key) -> ValueList | exit({aborted, Reason}</name>
      <fsummary>Dirty read of records.</fsummary>
      <desc>
        <p>This is the dirty equivalent of the
          <c>mnesia:read/3</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_select(Tab, MatchSpec) -> ValueList | exit({aborted, Reason}</name>
      <fsummary>Dirty match the objects in <c>Tab</c>against <c>MatchSpec</c>.</fsummary>
      <desc>
        <p>This is the dirty equivalent of the
          <c>mnesia:select/2</c> function.</p>
      </desc>
    </func>
    <func>
      <name>dirty_slot(Tab, Slot) -> RecordList | exit({aborted, Reason})</name>
      <fsummary>Return the list of records that are associated with  Slot in a table.</fsummary>
      <desc>
        <p>This function can be used to traverse a table in a
          manner similar to the <c>mnesia:dirty_next/2</c> function.
          A table has a number of slots which range from 0 (zero) to some
          unknown upper bound.  The function
          <c>mnesia:dirty_slot/2</c> returns the special atom
          <c>'$end_of_table'</c> when the end of the table is reached.
          The behavior of this function is undefined if a write
          operation is performed on the table while it is being
          traversed.</p>
      </desc>
    </func>
    <func>
      <name>dirty_update_counter({Tab, Key}, Incr) -> NewVal | exit({aborted, Reason})</name>
      <fsummary>Dirty update of a counter record.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:dirty_update_counter(Tab, Key, Incr)</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_update_counter(Tab, Key, Incr) -> NewVal | exit({aborted, Reason})</name>
      <fsummary>Dirty update of a counter record.</fsummary>
      <desc>
        <p>There are no special counter records in Mnesia. However,
          records of the form <c>{Tab, Key, Integer}</c> can be used
          as (possibly disc resident) counters, when <c>Tab</c> is a
          <c>set</c>. This function updates a counter with a
          positive or negative number. However, counters can never become less
          than zero. There are two significant differences between
          this function and the action of first reading the record,
          performing the arithmetics, and then writing the record:</p>
        <list type="bulleted">
          <item>It is much more efficient</item>
          <item><c>mnesia:dirty_update_counter/3</c> is
           performed as an atomic operation despite the fact that it is not
           protected by a transaction.</item>
        </list>
        <p>If two processes perform <c>mnesia:dirty_update_counter/3</c>
          simultaneously, both updates will take effect without the
          risk of losing one of the updates. The new value
          <c>NewVal</c> of the counter is returned.</p>
        <p>If <c>Key</c> don't exits, a new record is created with the value
          <c>Incr</c> if it is larger than 0, otherwise it is set to 0.</p>
      </desc>
    </func>
    <func>
      <name>dirty_write(Record) -> ok | exit({aborted, Reason})</name>
      <fsummary>Dirty write of a record.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:dirty_write(Tab, Record)</c>
          where <c>Tab</c> is <c>element(1, Record)</c>.</p>
      </desc>
    </func>
    <func>
      <name>dirty_write(Tab, Record) -> ok | exit({aborted, Reason})</name>
      <fsummary>Dirty write of a record.</fsummary>
      <desc>
        <p>This is the dirty equivalent of <c>mnesia:write/3</c>.</p>
      </desc>
    </func>
    <func>
      <name>dump_log() -> dumped</name>
      <fsummary>Perform a user initiated dump of the local log file.</fsummary>
      <desc>
        <p>Performs a user initiated dump of the local log file.
          This is usually not necessary since Mnesia, by default,
          manages this automatically.</p>
      </desc>
    </func>
    <func>
      <name>dump_tables(TabList) -> {atomic, ok} | {aborted, Reason}</name>
      <fsummary>Dump all RAM tables to disc.</fsummary>
      <desc>
        <p>This function dumps a set of <c>ram_copies</c> tables
          to disc. The next time the system is started, these tables
          are initiated with the data found in the files that are the
          result of this dump. None of the tables may have disc
          resident replicas.</p>
      </desc>
    </func>
    <func>
      <name>dump_to_textfile(Filename) </name>
      <fsummary>Dump local tables into a text file.</fsummary>
      <desc>
        <p>Dumps all local tables of a mnesia system into a text file
          which can then be edited (by means of a normal text editor)
          and then later be reloaded with
          <c>mnesia:load_textfile/1</c>. Only use this function for
          educational purposes. Use other functions to deal with real
          backups.</p>
      </desc>
    </func>
    <func>
      <name>error_description(Error) -> String </name>
      <fsummary>Return a string describing a particular Mnesia error.</fsummary>
      <desc>
        <p>All Mnesia transactions, including all the schema
          update functions, either return the value <c>{atomic, Val}</c> or the tuple <c>{aborted, Reason}</c>. The
          <c>Reason</c> can be either of the following atoms. The
          <c>error_description/1</c> function returns a descriptive
          string which describes the error.
          </p>
        <list type="bulleted">
          <item>
            <p><c>nested_transaction</c>. Nested transactions are
              not allowed in this context.
              </p>
          </item>
          <item>
            <p><c>badarg</c>. Bad or invalid argument, possibly
              bad type.
              </p>
          </item>
          <item>
            <p><c>no_transaction</c>. Operation not allowed
              outside transactions.
              </p>
          </item>
          <item>
            <p><c>combine_error</c>. Table options  were illegally
              combined.
              </p>
          </item>
          <item>
            <p><c>bad_index</c>. Index already exists or was out
              of bounds.
              </p>
          </item>
          <item>
            <p><c>already_exists</c>. Schema option is already set.
              </p>
          </item>
          <item>
            <p><c>index_exists</c>. Some operations cannot  be performed on 
              tabs with index.
              </p>
          </item>
          <item>
            <p><c>no_exists</c>. Tried to perform operation on
              non-existing, or not alive, item.
              </p>
          </item>
          <item>
            <p><c>system_limit</c>. Some system_limit was exhausted.
              </p>
          </item>
          <item>
            <p><c>mnesia_down</c>.  A transaction involving
              records at some remote  node which died while
              transaction was executing. Record(s) are no longer
              available elsewhere in the network.
              </p>
          </item>
          <item>
            <p><c>not_a_db_node</c>. A node which does not exist
              in  the schema was mentioned.
              </p>
          </item>
          <item>
            <p><c>bad_type</c>. Bad type on some arguments.
              </p>
          </item>
          <item>
            <p><c>node_not_running</c>. Node not running.
              </p>
          </item>
          <item>
            <p><c>truncated_binary_file</c>. Truncated binary in file.
              </p>
          </item>
          <item>
            <p><c>active</c>. Some delete operations require that 
              all active records are removed.
              </p>
          </item>
          <item>
            <p><c>illegal</c>. Operation not supported on record.
              </p>
          </item>
        </list>
        <p>The <c>Error</c> may be <c>Reason</c>,
          <c>{error, Reason}</c>, or <c>{aborted, Reason}</c>. The
          <c>Reason</c> may be an atom or a tuple with <c>Reason</c>
          as an atom in the first field.</p>
      </desc>
    </func>
    <func>
      <name>ets(Fun, [, Args]) -> ResultOfFun | exit(Reason)</name>
      <fsummary>Call the Fun in a raw context which is not protected by a transaction.</fsummary>
      <desc>
        <p>Call the <c>Fun</c> in a raw context which is not protected by
          a transaction. The Mnesia function call is performed in the
          <c>Fun</c> are performed directly on the local <c>ets</c> tables on
          the assumption that the local storage type is
          <c>ram_copies</c> and the tables are not replicated to other
          nodes. Subscriptions are not triggered and checkpoints are
          not updated, but it is extremely fast.  This function can
          also be applied to <c>disc_copies</c> tables if all
          operations are read only.  See <c>mnesia:activity/4</c>
          and the Mnesia User's Guide for more details.</p>
        <p><em>Note:</em> Calling (nesting) a <c>mnesia:ets</c>
          inside a transaction context will inherit the transaction semantics.</p>
      </desc>
    </func>
    <func>
      <name>first(Tab) ->  Key | transaction abort </name>
      <fsummary>Return the key for the first record in a table.</fsummary>
      <desc>
        <p>Records in <c>set</c> or <c>bag</c> tables are not ordered. 
          However, there 
          is an ordering of the records which is not known 
          to the user. Accordingly, it is possible to traverse a table by means
          of this function in conjunction with the <c>mnesia:next/2</c> 
          function.
          </p>
        <p>If there are no records at all in the table, this function
          returns the atom <c>'$end_of_table'</c>. For this reason, it
          is highly undesirable, but not disallowed, to use this atom
          as the key for any user records.</p>
      </desc>
    </func>
    <func>
      <name>foldl(Function, Acc, Table) -> NewAcc | transaction abort </name>
      <fsummary>Call Function for each record in Table </fsummary>
      <desc>
        <p>Iterates over the table <c>Table</c> and calls 
          <c>Function(Record, NewAcc)</c> for each <c>Record</c> in the table.
          The term returned from <c>Function</c> will be used as the second 
          argument in the next call to the <c>Function</c>. 
          </p>
        <p><c>foldl</c> returns the same term as the last call to 
          <c>Function</c> returned.</p>
      </desc>
    </func>
    <func>
      <name>foldr(Function, Acc, Table) -> NewAcc | transaction abort </name>
      <fsummary>Call Function for each record in Table  </fsummary>
      <desc>
        <p>This function works exactly like
          <c>foldl/3</c> but iterates the table in the opposite order 
          for the <c>ordered_set</c> table type. For
          all other table types, <c>foldr/3</c> and 
          <c>foldl/3</c> are synonyms.</p>
      </desc>
    </func>
    <func>
      <name>force_load_table(Tab) -> yes | ErrorDescription </name>
      <fsummary>Force a table to be loaded into the system </fsummary>
      <desc>
        <p>The Mnesia algorithm for table load might lead to a
          situation where a table cannot be loaded. This situation
          occurs when a node is started and Mnesia concludes, or
          suspects, that another copy of the table was active after
          this local copy became inactive due to a system crash.
          </p>
        <p>If this situation is not acceptable, this function can be
          used to override the strategy of the Mnesia table load
          algorithm. This could lead to a situation where some
          transaction effects are lost with a inconsistent database as
          result, but for some applications high availability is more
          important than consistent data.</p>
      </desc>
    </func>
    <func>
      <name>index_match_object(Pattern, Pos) -> transaction abort | ObjList</name>
      <fsummary>Match records and utilizes index information.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:index_match_object(Tab, Pattern, Pos, read)</c> where <c>Tab</c> is <c>element(1, Pattern)</c>.</p>
      </desc>
    </func>
    <func>
      <name>index_match_object(Tab, Pattern, Pos, LockKind) -> transaction abort | ObjList</name>
      <fsummary>Match records and utilizes index information.</fsummary>
      <desc>
        <p>In a manner similar to the <c>mnesia:index_read/3</c>
          function, we can also utilize any index information when we
          try to match records. This function takes a pattern which
          obeys the same rules as the <c>mnesia:match_object/3</c>
          function with the exception that this function requires the
          following conditions:
          </p>
        <list type="bulleted">
          <item>
            <p>The table <c>Tab</c> must have an index on
              position <c>Pos</c>.
              </p>
          </item>
          <item>
            <p>The element in position <c>Pos</c> in
              <c>Pattern</c> must be bound. <c>Pos</c> may either be
              an integer (#record.Field), or an attribute name.</p>
          </item>
        </list>
        <p>The two index search functions described here are
          automatically invoked when searching tables with <c>qlc</c>
          list comprehensions and also when using the low level
          <c>mnesia:[dirty_]match_object</c> functions.
          </p>
        <p></p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires a lock of type <c>LockKind</c> on the
          entire table or on a single record. Currently, the lock type
          <c>read</c> is supported.
          </p>
      </desc>
    </func>
    <func>
      <name>index_read(Tab, SecondaryKey, Pos) -> transaction abort | RecordList </name>
      <fsummary>Read records via index table. </fsummary>
      <desc>
        <p>Assume there is an index on position <c>Pos</c> for a
          certain record type. This function can be used to read the
          records without knowing the actual key for the record. For
          example, with an index in position 1 of the <c>person</c>
          table, the call <c>mnesia:index_read(person, 36, #person.age)</c> returns a list of all persons with age
          equal to 36.  <c>Pos</c> may also be an attribute name
          (atom), but if the notation <c>mnesia:index_read(person, 36, age)</c> is used, the field position will be searched for in
          runtime, for each call.
          </p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires a read lock on the entire table.</p>
      </desc>
    </func>
    <func>
      <name>info() -> ok </name>
      <fsummary>Print some information about the system on the tty.</fsummary>
      <desc>
        <p>Prints some information about the system on the tty.
          This function may be used even if Mnesia is not started.
          However, more information will be displayed if Mnesia is
          started.</p>
      </desc>
    </func>
    <func>
      <name>install_fallback(Opaque) -> ok | {error,Reason}</name>
      <fsummary>Install a backup as fallback.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:install_fallback(Opaque, Args)</c> where
          <c>Args</c> is <c>[{scope, global}]</c>.</p>
      </desc>
    </func>
    <func>
      <name>install_fallback(Opaque), BackupMod) -> ok | {error,Reason}</name>
      <fsummary>Install a backup as fallback.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:install_fallback(Opaque, Args)</c> where
          <c>Args</c> is <c>[{scope, global}, {module, BackupMod}]</c>.</p>
      </desc>
    </func>
    <func>
      <name>install_fallback(Opaque, Args) -> ok | {error,Reason}</name>
      <fsummary>Install a backup as fallback.</fsummary>
      <desc>
        <p>This function is used to install a backup as fallback.  The
          fallback will be used to restore the database at the next
          start-up. Installation of fallbacks requires Erlang to be up
          and running on all the involved nodes, but it does not
          matter if Mnesia is running or not. The installation of the
          fallback will fail if the local node is not one of the disc
          resident nodes in the backup.
          </p>
        <p><c>Args</c> is a list of the following tuples: 
          </p>
        <list type="bulleted">
          <item>
            <p><c>{module, BackupMod}</c>. 
              All accesses of the backup media is performed via a
              callback module named <c>BackupMod</c>. The
              <c>Opaque</c> argument is forwarded to the callback
              module which may interpret it as it wish. The default
              callback module is called <c>mnesia_backup</c> and it
              interprets the <c>Opaque</c> argument as a local
              filename. The default for this module is also
              configurable via the <c>-mnesia mnesia_backup</c>
              configuration parameter.  </p>
          </item>
          <item>
            <p><c>{scope, Scope}</c>
              The <c>Scope</c> of a fallback may either be
              <c>global</c> for the entire database or <c>local</c>
              for one node. By default, the installation of a fallback
              is a global operation which either is performed all
              nodes with disc resident schema or none. Which nodes
              that are disc resident or not, is determined from the
              schema info in the backup.</p>
            <p>If the <c>Scope</c> of the operation is <c>local</c>
              the fallback will only be installed on the local node.</p>
          </item>
          <item>
            <p><c>{mnesia_dir, AlternateDir}</c> 
              This argument is only valid if the scope of the
              installation is <c>local</c>. Normally the installation
              of a fallback is targeted towards the Mnesia directory
              as configured with the <c>-mnesia dir</c> configuration
              parameter. But by explicitly supplying an
              <c>AlternateDir</c> the fallback will be installed there
              regardless of the Mnesia directory configuration
              parameter setting. After installation of a fallback on
              an alternate Mnesia directory that directory is fully
              prepared for usage as an active Mnesia directory.
              </p>
            <p>This is a somewhat dangerous feature which must be
              used with care. By unintentional mixing of directories
              you may easily end up with a inconsistent database, if
              the same backup is installed on more than one directory.</p>
          </item>
        </list>
      </desc>
    </func>
    <func>
      <name>is_transaction() ->  boolean </name>
      <fsummary>Check if code is running in a transaction.</fsummary>
      <desc>
        <p>When this function is executed inside a transaction context
          it returns <c>true</c>, otherwise <c>false</c>.</p>
      </desc>
    </func>
    <func>
      <name>last(Tab) ->  Key | transaction abort </name>
      <fsummary>Return the key for the last record in a table.</fsummary>
      <desc>
        <p>This function works exactly like
          <c>mnesia:first/1</c> but returns the last object in
          Erlang  term  order for the <c>ordered_set</c> table type. For
          all other table types, <c>mnesia:first/1</c> and 
          <c>mnesia:last/1</c> are synonyms.</p>
      </desc>
    </func>
    <func>
      <name>load_textfile(Filename)</name>
      <fsummary>Load tables from a text file.</fsummary>
      <desc>
        <p>Loads a series of definitions and data found in the
          text file (generated with <c>mnesia:dump_to_textfile/1</c>)
          into Mnesia. This function also starts Mnesia and possibly
          creates a new schema. This function is intended for
          educational purposes only and using other functions to deal
          with real backups, is recommended.</p>
      </desc>
    </func>
    <func>
      <name>lock(LockItem, LockKind) -> Nodes | ok | transaction abort</name>
      <fsummary>Explicit grab lock.</fsummary>
      <desc>
        <p>Write locks are normally acquired on all nodes where a
          replica of the table resides (and is active). Read locks are
          acquired on one node (the local node if  a local
          replica exists). Most of the context sensitive access functions
          acquire an implicit lock if they are invoked in a
          transaction context. The granularity of a lock may either
          be a single record or an entire table.
	</p>
	<p>The normal usage is to call the function without checking
	  the return value since it exits if it fails and the
	  transaction is restarted by the transaction manager.  It
	  returns all the locked nodes if a write lock is acquired, and
	  <c>ok</c> if it was a read lock.
	</p>
        <p>This function <c>mnesia:lock/2</c> is intended to support
          explicit locking on tables but also intended for situations
          when locks need to be acquired regardless of how tables are
          replicated. Currently, two <c>LockKind</c>'s are supported:
          </p>
        <taglist>
          <tag><c>write</c></tag>
          <item>
            <p>Write locks are exclusive, which means that if one
              transaction manages to acquire a write lock on an item,
              no other transaction may acquire any kind of lock on the
              same item. 
              </p>
          </item>
          <tag><c>read</c></tag>
          <item>
            <p>Read locks may be shared, which means that if one
              transaction manages to acquire a read lock on an item,
              other transactions may also acquire a read lock on the
              same item. However, if someone has a read lock no one can
              acquire a write lock at the same item. If some one has a
              write lock no one can acquire  a read lock nor
              a write lock at the same item.</p>
          </item>
        </taglist>
        <p>Conflicting lock requests are automatically queued if there
          is no risk of a deadlock. Otherwise the transaction must be
          aborted and executed again. Mnesia does this automatically
          as long as the upper limit of maximum <c>retries</c> is not
          reached. See <c>mnesia:transaction/3</c> for the details.
          </p>
        <p>For the sake of completeness sticky write locks will also 
          be described here even if a sticky write lock is not
          supported by this particular function:
          </p>
        <taglist>
          <tag><c>sticky_write</c></tag>
          <item>
            <p>Sticky write locks are a mechanism which can be used
              to optimize write lock acquisition. If your application
              uses replicated tables mainly for fault tolerance (as
              opposed to read access optimization purpose), sticky
              locks may be the best option available. 
              </p>
            <p>When a sticky write lock is acquired, all nodes will be
              informed which node is locked. Subsequently,
              sticky lock requests from the same node will be
              performed as  a local operation without any
              communication with other nodes. The sticky lock
              lingers on the node even after the transaction has
              ended. See the Mnesia User's Guide for more information.</p>
          </item>
        </taglist>
        <p>Currently, two kinds of <c>LockItem</c>'s are supported by
          this function:
          </p>
        <taglist>
          <tag><c>{table, Tab}</c></tag>
          <item>
            <p>This acquires a lock of type <c>LockKind</c> on the
              entire table <c>Tab</c>.
              </p>
          </item>
          <tag><c>{global, GlobalKey, Nodes}</c></tag>
          <item>
            <p>This acquires a lock of type <c>LockKind</c> on the
              global resource <c>GlobalKey</c>. The lock is acquired
              on all active nodes in the <c>Nodes</c> list. </p>
          </item>
        </taglist>
        <p>Locks are released when the outermost transaction ends.
          </p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires locks otherwise it just ignores the
          request.</p>
      </desc>
    </func>
    <func>
      <name>match_object(Pattern) ->transaction abort | RecList </name>
      <fsummary>Match <c>Pattern</c>for records.   </fsummary>
      <desc>
        <p>Invokes <c>mnesia:match_object(Tab, Pattern, read)</c> where
          <c>Tab</c> is <c>element(1, Pattern)</c>.</p>
      </desc>
    </func>
    <func>
      <name>match_object(Tab, Pattern, LockKind) ->transaction abort | RecList </name>
      <fsummary>Match <c>Pattern</c>for records. </fsummary>
      <desc>
        <p>This function takes a pattern with 'don't care' variables
          denoted as a '_' parameter.  This function returns a list of
          records which matched the pattern.  Since the second element
          of a record in a table is considered to be the key for the
          record, the performance of this function depends on whether
          this key is bound or not. 
          </p>
        <p>For example, the call <c>mnesia:match_object(person, {person, '_', 36, '_', '_'}, read)</c> returns a list of all person records with an 
          age field of thirty-six (36).
          </p>
        <p>The function <c>mnesia:match_object/3</c>
          automatically uses indices if these exist. However, no
          heuristics are performed in order to select the best
          index.
          </p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires a lock of type <c>LockKind</c> on the
          entire table or a single record. Currently, the lock type
          <c>read</c> is supported.</p>
      </desc>
    </func>
    <func>
      <name>move_table_copy(Tab, From, To) -> {aborted, Reason} | {atomic, ok}</name>
      <fsummary>Move the copy of table <c>Tab</c>from node<c>From</c>to node <c>To</c>.</fsummary>
      <desc>
        <p>Moves the copy of table <c>Tab</c> from node
          <c>From</c> to node <c>To</c>.
          </p>
        <p>The storage type is preserved. For example, a RAM table
          moved from one node remains a RAM on the new node.  It is
          still possible for other transactions to read and write in
          the table while it is being moved.
          </p>
        <p>This function cannot be used on <c>local_content</c> tables.</p>
      </desc>
    </func>
    <func>
      <name>next(Tab, Key) -> Key | transaction abort </name>
      <fsummary>Return the next key in a table. </fsummary>
      <desc>
        <p>This function makes it possible to traverse a table
          and perform operations on all records in the table. When
          the end of the table is reached, the special key
          <c>'$end_of_table'</c> is returned. Otherwise, the function
          returns a key which can be used to read the actual record.</p>
      </desc>
    </func>
    <func>
      <name>prev(Tab, Key) -> Key | transaction abort </name>
      <fsummary>Return the previous key in a table. </fsummary>
      <desc>
        <p>This function works exactly like
          <c>mnesia:next/2</c> but returns the previous object in
          Erlang term  order for the ordered_set table type. For
          all other table types, <c>mnesia:next/2</c> and 
          <c>mnesia:prev/2</c> are synonyms.</p>
      </desc>
    </func>
    <func>
      <name>read({Tab, Key}) -> transaction abort | RecordList </name>
      <fsummary>Read records(s) with a given key. </fsummary>
      <desc>
        <p>Invokes <c>mnesia:read(Tab, Key, read)</c>.</p>
      </desc>
    </func>
    <func>
      <name>read(Tab, Key) -> transaction abort | RecordList </name>
      <fsummary>Read records(s) with a given key. </fsummary>
      <desc>
        <p>Invokes <c>mnesia:read(Tab, Key, read)</c>.</p>
      </desc>
    </func>
    <func>
      <name>read(Tab, Key, LockKind) -> transaction abort | RecordList </name>
      <fsummary>Read records(s) with a given key. </fsummary>
      <desc>
        <p>This function reads all records from table <c>Tab</c> with
          key <c>Key</c>. This function has the same semantics
          regardless of the location of <c>Tab</c>. If the table is
          of type <c>bag</c>, the <c>mnesia:read(Tab, Key)</c> can
          return an arbitrarily long list. If the table is of type
          <c>set</c>, the list is either of length 1, or <c>[]</c>.
          </p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires a lock of type
          <c>LockKind</c>. Currently, the lock types <c>read</c>,
          <c>write</c> and <c>sticky_write</c> are supported.
          </p>
        <p>If the user wants to update the record it is more efficient to 
          use  <c>write/sticky_write</c> as the LockKind. If majority checking
	  is active on the table, it will be checked as soon as a write lock is
	  attempted. This can be used to quickly abort if the majority condition
	  isn't met.
          </p>
      </desc>
    </func>
    <func>
      <name>read_lock_table(Tab) -> ok | transaction abort</name>
      <fsummary>Set a read lock on an entire table.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:lock({table, Tab}, read)</c>.</p>
      </desc>
    </func>
    <func>
      <name>report_event(Event) -> ok</name>
      <fsummary>Report a user event to Mnesia's event handler.</fsummary>
      <desc>
        <p>When tracing a system of Mnesia applications it is useful
          to be able to interleave Mnesia's own events with
          application related events that give information about the
          application context. 
          </p>
        <p>Whenever the application begins a
          new and demanding Mnesia task, or if it is entering a new
          interesting phase in its execution, it may be a good idea to
          use <c>mnesia:report_event/1</c>. The <c>Event</c> may be
          any term and generates a <c>{mnesia_user, Event}</c> event
          for any processes that  subscribe to Mnesia system
          events.</p>
      </desc>
    </func>
    <func>
      <name>restore(Opaque, Args) -> {atomic, RestoredTabs} |{aborted, Reason}</name>
      <fsummary>Online restore of backup.</fsummary>
      <desc>
        <p>With this function, tables may be restored online from a
          backup without restarting Mnesia.  <c>Opaque</c> is forwarded
          to the backup module.  <c>Args</c> is a list of the following
          tuples:
          </p>
        <list type="bulleted">
          <item>
            <p><c>{module,BackupMod}</c> The backup module
              <c>BackupMod</c> will be used to access the backup
              media. If omitted, the default backup module will be
              used. 
              </p>
          </item>
          <item><c>{skip_tables, TabList}</c> Where <c>TabList</c>
           is a list of tables which should not be read from the
           backup.
          </item>
          <item><c>{clear_tables, TabList}</c> Where
          <c>TabList</c> is a list of tables which should be
           cleared, before the records from the backup are inserted,
           ie. all records in the tables are deleted before the
           tables are restored.  Schema information about the tables
           is not cleared or read from backup.
          </item>
          <item><c>{keep_tables, TabList}</c> Where <c>TabList</c>
           is a list of tables which should be not be cleared, before
           the records from the backup are inserted, i.e. the records
           in the backup will be added to the records in the table.
           Schema information about the tables is not cleared or read
           from backup.
          </item>
          <item><c>{recreate_tables, TabList}</c> Where
          <c>TabList</c> is a list of tables which should be
           re-created, before the records from the backup are
           inserted. The tables are first deleted and then created with
           the schema information from the backup. All the nodes in the
           backup needs to be up and running.
          </item>
          <item><c>{default_op, Operation}</c> Where <c>Operation</c> is
           one of the following operations <c>skip_tables</c>,
          <c>clear_tables</c>, <c>keep_tables</c> or
          <c>recreate_tables</c>. The default operation specifies
           which operation should be used on tables from the backup
           which are not specified in any of the lists above.  If
           omitted, the operation <c>clear_tables</c> will be used.
          </item>
        </list>
        <p>The affected tables are write locked during the
          restoration, but regardless of the lock conflicts caused by
          this, the applications can continue to do their work while
          the restoration is being performed. The restoration is
          performed as one single transaction. 
          </p>
        <p>If the database is
          huge, it may not be possible to restore it online. In such 
          cases, the old database must be restored by installing a
          fallback and then restart.</p>
      </desc>
    </func>
    <func>
      <name>s_delete({Tab, Key}) -> ok | transaction abort </name>
      <fsummary>Set sticky lock and delete records.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:delete(Tab, Key, sticky_write)</c></p>
      </desc>
    </func>
    <func>
      <name>s_delete_object(Record) -> ok | transaction abort </name>
      <fsummary>Set sticky lock and delete record.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:delete_object(Tab, Record, sticky_write)</c> where <c>Tab</c> is <c>element(1, Record)</c>.</p>
      </desc>
    </func>
    <func>
      <name>s_write(Record) -> ok | transaction abort </name>
      <fsummary>Write <c>Record</c>and sets stick lock.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:write(Tab, Record, sticky_write)</c>
          where <c>Tab</c> is <c>element(1, Record)</c>.</p>
      </desc>
    </func>
    <func>
      <name>schema() -> ok </name>
      <fsummary>Print information about all table definitions on the tty. </fsummary>
      <desc>
        <p>Prints information about all table definitions on the tty.</p>
      </desc>
    </func>
    <func>
      <name>schema(Tab) -> ok </name>
      <fsummary>Print information about one table definition on the tty.</fsummary>
      <desc>
        <p>Prints information about one table definition on the tty.</p>
      </desc>
    </func>
    <func>
      <name>select(Tab, MatchSpec [, Lock]) ->  transaction abort | [Object] </name>
      <fsummary>Match the objects in <c>Tab</c>against <c>MatchSpec</c>.</fsummary>
      <desc>
        <p>Matches the objects in the table <c>Tab</c> using a
          match_spec as described in the ERTS Users Guide. Optionally a lock
          <c>read</c> or <c>write</c> can be given as the third
          argument, default is <c>read</c>.  The return value depends
          on the <c>MatchSpec</c>.</p>
        <p><em>Note:</em> for best performance <c>select</c> should
          be used before any modifying operations are done on that table
          in the same transaction, i.e. don't use <c>write</c> or <c>delete</c>
          before a <c>select</c>.</p>
        <p>In its simplest forms the match_spec's look like this:</p>
        <list type="bulleted">
          <item>MatchSpec = [MatchFunction]</item>
          <item>MatchFunction = {MatchHead, [Guard], [Result]}</item>
          <item>MatchHead = tuple() | record()</item>
          <item>Guard =  {"Guardtest name", ...}</item>
          <item>Result = "Term construct"</item>
        </list>
        <p>See the ERTS Users Guide and <c>ets</c> documentation for a
          complete description of the select.</p>
        <p>For example to find the names of all male persons with an age over 30 in table
          Tab do:</p>
        <code type="none">
MatchHead = #person{name='$1', sex=male, age='$2', _='_'},
Guard = {'>', '$2', 30},
Result = '$1',
mnesia:select(Tab,[{MatchHead, [Guard], [Result]}]),
        </code>
      </desc>
    </func>
    <func>
      <name>select(Tab, MatchSpec, NObjects, Lock) ->  transaction abort | {[Object],Cont} | '$end_of_table'</name>
      <fsummary>Match the objects in <c>Tab</c>against <c>MatchSpec</c>.</fsummary>
      <desc>
        <p>Matches the objects in the table <c>Tab</c> using a
          match_spec as described in ERTS users guide, and returns
          a chunk of terms and a continuation, the wanted number 
          of returned terms is specified by the <c>NObjects</c> argument.
          The lock argument can be <c>read</c> or <c>write</c>.
          The continuation should be used as argument to <c>mnesia:select/1</c>,
          if more or all answers are needed.</p>
        <p><em>Note:</em> for best performance <c>select</c> should
          be used before any modifying operations are done on that
          table in the same transaction, i.e. don't use
          <c>mnesia:write</c> or <c>mnesia:delete</c> before a
          <c>mnesia:select</c>. For efficiency the <c>NObjects</c> is
          a recommendation only and the result may contain anything
          from an empty list to all available results.  </p>
      </desc>
    </func>
    <func>
      <name>select(Cont) ->  transaction abort | {[Object],Cont} | '$end_of_table'</name>
      <fsummary>Continues selecting objects.   </fsummary>
      <desc>
        <p>Selects more objects with the match specification initiated
          by <c>mnesia:select/4</c>.
          </p>
        <p><em>Note:</em> Any modifying operations, i.e. <c>mnesia:write</c>
          or <c>mnesia:delete</c>, that are done between the <c>mnesia:select/4</c>
          and <c>mnesia:select/1</c> calls will not be visible in the result.</p>
      </desc>
    </func>
    <func>
      <name>set_debug_level(Level) -> OldLevel</name>
      <fsummary>Change the internal debug level of Mnesia</fsummary>
      <desc>
        <p>Changes the internal debug level of Mnesia. See the
          chapter about configuration parameters for details.</p>
      </desc>
    </func>
    <func>
      <name>set_master_nodes(MasterNodes) -> ok | {error, Reason} </name>
      <fsummary>Set the master nodes for all tables</fsummary>
      <desc>
        <p>For each table Mnesia will determine its replica nodes
          (<c>TabNodes</c>) and invoke <c>mnesia:set_master_nodes(Tab, TabMasterNodes)</c> where <c>TabMasterNodes</c> is the
          intersection of <c>MasterNodes</c> and <c>TabNodes</c>. See
          <c>mnesia:set_master_nodes/2</c> about the semantics.</p>
      </desc>
    </func>
    <func>
      <name>set_master_nodes(Tab, MasterNodes) -> ok | {error, Reason} </name>
      <fsummary>Set the master nodes for a table</fsummary>
      <desc>
        <p>If the application detects that there has been a
          communication failure (in a potentially partitioned network) which
          may have caused an inconsistent database, it may use the
          function <c>mnesia:set_master_nodes(Tab, MasterNodes)</c> to
          define from which nodes  each table will be loaded.
          At startup Mnesia's normal table load algorithm will be
          bypassed and the table will be loaded from one of the master
          nodes defined for the table, regardless of when and if Mnesia
          was terminated on other nodes. The <c>MasterNodes</c> may only
          contain nodes where the table has a replica and if the
          <c>MasterNodes</c> list is empty, the master node recovery
          mechanism for the particular table will be reset and the
          normal load mechanism will be used at next restart.
          </p>
        <p>The master node setting is always local and it may be
          changed regardless of whether Mnesia is started or not.
          </p>
        <p>The database may also become inconsistent if the
          <c>max_wait_for_decision</c> configuration parameter is used
          or if <c>mnesia:force_load_table/1</c> is used.</p>
      </desc>
    </func>
    <func>
      <name>snmp_close_table(Tab) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Remove the possibility for SNMP to manipulate the table.</fsummary>
      <desc>
        <p>Removes the possibility for SNMP to manipulate the
          table.</p>
      </desc>
    </func>
    <func>
      <name>snmp_get_mnesia_key(Tab, RowIndex) -> {ok, Key} | undefined</name>
      <fsummary>Get the corresponding Mnesia key from an SNMP index.</fsummary>
      <type>
        <v>Tab ::= atom()</v>
        <v>RowIndex ::= [integer()]</v>
        <v>Key ::= key() | {key(), key(), ...}</v>
        <v>key() ::= integer() | string() | [integer()]</v>
      </type>
      <desc>
        <p>Transforms an SNMP index to the corresponding Mnesia key.
          If the SNMP table has multiple keys, the key is a tuple of
          the key columns.</p>
      </desc>
    </func>
    <func>
      <name>snmp_get_next_index(Tab, RowIndex) -> {ok, NextIndex} | endOfTable</name>
      <fsummary>Get the index of the next lexicographical row.</fsummary>
      <type>
        <v>Tab ::= atom()</v>
        <v>RowIndex ::= [integer()]</v>
        <v>NextIndex ::= [integer()]</v>
      </type>
      <desc>
        <p>The <c>RowIndex</c> may specify a non-existing row.
          Specifically, it might be the empty list. Returns the index
          of the next lexicographical row. If <c>RowIndex</c> is the
          empty list, this function will return the index of the first row
          in the table.</p>
      </desc>
    </func>
    <func>
      <name>snmp_get_row(Tab, RowIndex) -> {ok, Row} | undefined</name>
      <fsummary>Retrieve a row indexed by an SNMP index.</fsummary>
      <type>
        <v>Tab ::= atom()</v>
        <v>RowIndex ::= [integer()]</v>
        <v>Row ::= record(Tab)</v>
      </type>
      <desc>
        <p>Makes it possible to read a row by its SNMP index. This
          index is specified as an SNMP OBJECT IDENTIFIER, a list of
          integers.</p>
      </desc>
    </func>
    <func>
      <name>snmp_open_table(Tab, SnmpStruct) -> {aborted, R} | {atomic, ok}</name>
      <fsummary>Organize a Mnesia table  as an SNMP table.</fsummary>
      <type>
        <v>Tab ::= atom()</v>
        <v>SnmpStruct ::= [{key, type()}]</v>
        <v>type() ::= type_spec() | {type_spec(), type_spec(), ...}</v>
        <v>type_spec() ::= fix_string | string | integer</v>
      </type>
      <desc>
        <p>It is possible to establish a direct one to one mapping
          between Mnesia tables and SNMP tables. Many
          telecommunication applications are controlled and monitored
          by the SNMP protocol. This connection between Mnesia and
          SNMP makes it simple and convenient to achieve this.
          </p>
        <p>The <c>SnmpStruct</c> argument is a list of SNMP
          information. Currently, the only information needed is
          information about the key types in the table.  It is not
          possible to handle multiple keys in Mnesia, but many SNMP
          tables have multiple keys. Therefore, the following
          convention is used: if a table has multiple keys, these must
          always be stored as a tuple of the keys.  Information about
          the key types is specified as a tuple of atoms describing
          the types. The only significant type is
          <c>fix_string</c>. This means that a string has fixed
          size. For example:
          </p>
        <code type="none">
mnesia:snmp_open_table(person, [{key, string}])
        </code>
        <p>causes the <c>person</c> table to be ordered as an SNMP
          table.
          </p>
        <p>Consider the following schema for a table of company
          employees. Each employee is identified by department number
          and name. The other table column stores the telephone number:
          </p>
        <code type="none">
mnesia:create_table(employee,
    [{snmp, [{key, {integer, string}}]},
     {attributes, record_info(fields, employees)}]),
        </code>
        <p>The corresponding SNMP table would have three columns;
          <c>department</c>, <c>name</c> and <c>telno</c>.
          </p>
        <p>It is possible to have table columns that are not visible
          through the SNMP protocol. These columns must be the last
          columns of the table. In the previous example, the SNMP
          table could have columns <c>department</c> and <c>name</c>
          only. The application could then use the <c>telno</c> column
          internally, but it would not be visible to the SNMP
          managers.
          </p>
        <p>In a table monitored by SNMP, all elements must be
          integers, strings, or lists of integers.
          </p>
        <p>When a table is SNMP ordered, modifications are more
          expensive than usual, O(logN).  And more memory is used.
          </p>
        <p><em>Note:</em>Only the lexicographical SNMP ordering is
          implemented in Mnesia, not the actual SNMP monitoring.</p>
      </desc>
    </func>
    <func>
      <name>start() -> ok | {error, Reason} </name>
      <fsummary>Start a local Mnesia system.</fsummary>
      <desc>
        <p>The start-up procedure for a set of Mnesia nodes is a
          fairly complicated operation. A Mnesia system consists of a set
          of nodes, with Mnesia  started locally on all
          participating nodes. Normally, each node has a directory where
          all the Mnesia files are written. This directory will be
          referred to as the Mnesia directory. Mnesia may also be
          started on disc-less nodes. See <c>mnesia:create_schema/1</c>
          and the Mnesia User's Guide for more information about disc-less
          nodes.
          </p>
        <p>The set of nodes which makes up a Mnesia system is kept in
          a schema and it is possible to add and remove Mnesia nodes
          from the schema. The initial schema is normally created on
          disc with the function <c>mnesia:create_schema/1</c>. On
          disc-less nodes, a tiny default schema is generated each time
          Mnesia is started. During the start-up procedure, Mnesia
          will exchange schema information between the nodes in order
          to verify that the table definitions are compatible.
          </p>
        <p>Each schema has a unique cookie which may be regarded as a
          unique schema identifier. The cookie must be the same on all
          nodes where Mnesia is supposed to run. See the Mnesia
          User's Guide for more information about these details.
          </p>
        <p>The schema file, as well as all other files which Mnesia
          needs, are kept in the Mnesia directory. The command line
          option <c>-mnesia dir Dir</c> can be used to specify the
          location of this directory to the Mnesia system. If no such
          command line option is found, the name of the directory
          defaults to <c>Mnesia.Node</c>.
          </p>
        <p><c>application:start(mnesia)</c> may also be used.</p>
      </desc>
    </func>
    <func>
      <name>stop() -> stopped </name>
      <fsummary>Stop Mnesia locally.</fsummary>
      <desc>
        <p>Stops Mnesia locally on the current node.
          </p>
        <p><c>application:stop(mnesia)</c> may also be used.</p>
      </desc>
    </func>
    <func>
      <name>subscribe(EventCategory)</name>
      <fsummary>Subscribe to events of type <c>EventCategory</c>.</fsummary>
      <desc>
        <p>Ensures that a copy of all events of type
          <c>EventCategory</c> are sent to the caller.  The event
          types available are described in the Mnesia User's Guide.</p>
      </desc>
    </func>
    <func>
      <name>sync_dirty(Fun, [, Args]) -> ResultOfFun | exit(Reason) </name>
      <fsummary>Call the Fun in a context which is not protected by a transaction.</fsummary>
      <desc>
        <p>Call the <c>Fun</c> in a context which is not protected
          by a transaction. The Mnesia function calls performed in the
          <c>Fun</c> are mapped to the corresponding dirty functions.
          It is performed in almost the same context as
          <c>mnesia:async_dirty/1,2</c>. The difference is that the
          operations are performed synchronously. The caller waits for
          the updates to be performed on all active replicas before
          the <c>Fun</c> returns. See <c>mnesia:activity/4</c> and the
          Mnesia User's Guide for more details.</p>
      </desc>
    </func>
    <func>
      <name>sync_transaction(Fun, [[, Args], Retries]) -> {aborted, Reason} | {atomic, ResultOfFun} </name>
      <fsummary>Synchronously execute a transaction.</fsummary>
      <desc>
        <p>This function waits until data have been committed and
          logged to disk (if disk is used) on every involved node before
          it returns, otherwise it behaves as 
          <c>mnesia:transaction/[1,2,3]</c>.</p>
        <p>This functionality can be used to avoid that one process may overload 
          a database on another node.</p>
      </desc>
    </func>
    <func>
      <name>system_info(InfoKey) -> Info | exit({aborted, Reason})</name>
      <fsummary>Return information about the Mnesia system</fsummary>
      <desc>
        <p>Returns information about the Mnesia system, such as
          transaction statistics, db_nodes, and configuration parameters.
          Valid keys are:</p>
        <list type="bulleted">
          <item>
            <p><c>all</c>. This argument returns a list of all
              local system information. Each element is a
              <c>{InfoKey, InfoVal}</c> tuples.<em>Note:</em> New <c>InfoKey</c>'s may
              be added and old undocumented <c>InfoKey</c>'s may be removed without 
              notice.</p>
          </item>
          <item>
            <p><c>access_module</c>. This argument returns the name of 
              the module which is configured to be the activity access
              callback module.
              </p>
          </item>
          <item>
            <p><c>auto_repair</c>. This argument returns
              <c>true</c> or <c>false</c> to indicate if Mnesia is
              configured to invoke the auto repair facility on corrupted
              disc files. 
              </p>
          </item>
          <item>
            <p><c>backup_module</c>. This argument returns the name of 
              the module which is configured to be the backup
              callback module.
              </p>
          </item>
          <item>
            <p><c>checkpoints</c>. This argument
              returns a list of the names of the
              checkpoints currently active on this node.
              </p>
          </item>
          <item>
            <p><c>event_module</c>. This argument returns the name of 
              the module which is the event handler callback module.
              </p>
          </item>
          <item>
            <p><c>db_nodes</c>. This argument returns
              the nodes which make up the persistent database. Disc
              less nodes will only be included in the list of nodes if
              they explicitly has been added to the schema, e.g. with
              <c>mnesia:add_table_copy/3</c>. The function can be
              invoked even if Mnesia is not yet running. 
              </p>
          </item>
          <item>
            <p><c>debug</c>. This argument returns the current
              debug level of Mnesia.  
              </p>
          </item>
          <item>
            <p><c>directory</c>. This argument returns the name of
              the Mnesia directory. It can be invoked even if Mnesia is
              not yet running.
              </p>
          </item>
          <item>
            <p><c>dump_log_load_regulation</c>. This argument
              returns a boolean which tells whether Mnesia is
              configured to load regulate the dumper process or not.
              This feature is temporary and will disappear in future
              releases.
              </p>
          </item>
          <item>
            <p><c>dump_log_time_threshold</c>. This argument
              returns the time threshold for transaction log dumps in
              milliseconds. 
              </p>
          </item>
          <item>
            <p><c>dump_log_update_in_place</c>. This argument
              returns a boolean which tells whether Mnesia is
              configured to perform the updates in the dets files
              directly or if the updates should be performed in a copy
              of the dets files.
              </p>
          </item>
          <item>
            <p><c>dump_log_write_threshold</c>. This argument
              returns the write threshold for transaction log dumps as
              the  number of writes to the transaction log.
              </p>
          </item>
          <item>
            <p><c>extra_db_nodes</c>. This argument returns a list
              of extra db_nodes to be contacted at start-up.
              </p>
          </item>
          <item>
            <p><c>fallback_activated</c>. This argument returns
              true if a fallback is activated, otherwise false. 
              </p>
          </item>
          <item>
            <p><c>held_locks</c>. This argument returns a list of
              all locks held by the local Mnesia lock manager.
              </p>
          </item>
          <item>
            <p><c>is_running</c>. This argument returns <c>yes</c>
              or <c>no</c> to indicate if Mnesia is running. It may
              also return <c>starting</c> or <c>stopping</c>.  Can be
              invoked even if Mnesia is not yet running.
              </p>
          </item>
          <item>
            <p><c>local_tables</c>. This argument returns a list
              of all tables which are configured to reside locally.
              </p>
          </item>
          <item>
            <p><c>lock_queue</c>. This argument returns a list of
              all transactions that are queued for execution by the
              local lock manager.
              </p>
          </item>
          <item>
            <p><c>log_version</c>. This argument returns the
              version number of the Mnesia transaction log format.
              </p>
          </item>
          <item>
            <p><c>master_node_tables</c>. This argument returns a
              list of all tables with at least one master node.
              </p>
          </item>
          <item>
            <p><c>protocol_version</c>. This argument
              returns the version number
              of the Mnesia inter-process communication protocol.
              </p>
          </item>
          <item>
            <p><c>running_db_nodes</c>. This argument returns a
              list of nodes where Mnesia currently is running. This
              function can be invoked even if Mnesia is not yet
              running, but it will then have slightly different
              semantics. If Mnesia is down on the local node, the
              function will return those other <c>db_nodes</c> and
              <c>extra_db_nodes</c> that for the moment are up and
              running. If Mnesia is started, the function will return
              those nodes that Mnesia on the local node is fully
              connected to. Only those nodes that Mnesia has exchanged
              schema information with are included as
              <c>running_db_nodes</c>. After the merge of schemas, the
              local Mnesia system is fully operable and applications
              may perform access of remote replicas. Before the schema
              merge Mnesia will only operate locally. Sometimes there
              may be more nodes included in the
              <c>running_db_nodes</c> list than all <c>db_nodes</c>
              and <c>extra_db_nodes</c> together.
              </p>
          </item>
          <item>
            <p><c>schema_location</c>. This argument returns the
              initial schema location.
              </p>
          </item>
          <item>
            <p><c>subscribers</c>. This argument returns a list of
              local processes currently subscribing to system events.
              </p>
          </item>
          <item>
            <p><c>tables</c>. This argument returns a list of all
              locally known tables.
              </p>
          </item>
          <item>
            <p><c>transactions</c>. This argument returns a list
              of all currently active local transactions.
              </p>
          </item>
          <item>
            <p><c>transaction_failures</c>. This argument returns
              a number which indicates how many transactions have
              failed since Mnesia was started.
              </p>
          </item>
          <item>
            <p><c>transaction_commits</c>. This argument returns a
              number which indicates how many transactions have
              terminated successfully since Mnesia was started.
              </p>
          </item>
          <item>
            <p><c>transaction_restarts</c>. This argument returns
              a number which indicates how many transactions have been
              restarted since Mnesia was started.
              </p>
          </item>
          <item>
            <p><c>transaction_log_writes</c>. This argument
              returns a number which indicates the number of write
              operation that have been performed to the transaction
              log since start-up.
              </p>
          </item>
          <item>
            <p><c>use_dir</c>. This argument returns a boolean
              which indicates whether the Mnesia directory is used or
              not. Can be invoked even if Mnesia is not yet running.  
              </p>
          </item>
          <item>
            <p><c>version</c>. This argument returns the current
              version number of Mnesia.
              </p>
          </item>
        </list>
      </desc>
    </func>
    <func>
      <name>table(Tab [,[Option]]) -> QueryHandle </name>
      <fsummary>Return a QLC query handle.</fsummary>
      <desc>
        <p>          <marker id="qlc_table"></marker>
Returns a QLC (Query List Comprehension) query handle, see
          <seealso marker="stdlib:qlc">qlc(3)</seealso>.The module <c>qlc</c> implements a query language, it
          can use mnesia tables as sources of data. Calling
          <c>mnesia:table/1,2</c> is the means to make the <c>mnesia</c>
          table <c>Tab</c> usable to QLC.</p>
        <p>The list of Options may contain mnesia options or QLC
          options, the following options are recognized by Mnesia:
          <c>{traverse, SelectMethod},{lock, Lock},{n_objects,Number}</c>, any other option is forwarded
          to QLC. The <c>lock</c> option may be <c>read</c> or
          <c>write</c>, default is <c>read</c>.  The option
          <c>n_objects</c> specifies (roughly) the number of objects
          returned from mnesia to QLC. Queries to remote tables may
          need a larger chunks to reduce network overhead, default
          <c>100</c> objects at a time are returned.  The option
          <c>traverse</c> determines the method to traverse the whole
          table (if needed), the default method is <c>select</c>:</p>
        <list type="bulleted">
          <item>
            <p><c>select</c>. The table is traversed by calling
              <c>mnesia:select/4</c> and <c>mnesia:select/1</c>. The
              match specification (the second argument of <c>select/3</c>) 
              is assembled by QLC: simple filters are
              translated into equivalent match specifications while
              more complicated filters have to be applied to all
              objects returned by <c>select/3</c> given a match
              specification that matches all objects.</p>
          </item>
          <item>
            <p><c>{select, MatchSpec}</c>. As for <c>select</c>
              the table is traversed by calling <c>mnesia:select/3</c> and
              <c>mnesia:select/1</c>. The difference is that the match
              specification is explicitly given. This is how to state
              match specifications that cannot easily be expressed
              within the syntax provided by QLC.</p>
          </item>
        </list>
      </desc>
    </func>
    <func>
      <name>table_info(Tab, InfoKey) -> Info | exit({aborted, Reason})</name>
      <fsummary>Return local information about table.</fsummary>
      <desc>
        <p>The <c>table_info/2</c> function takes two arguments.
          The first is the name of a Mnesia table, the second is one of
          the following keys:
          </p>
        <list type="bulleted">
          <item>
            <p><c>all</c>. This argument returns a list of all
              local table information. Each element is a <c>{InfoKey, ItemVal}</c> tuples. <em>Note:</em> New <c>InfoItem</c>'s may be
              added and old undocumented <c>InfoItem</c>'s may be removed without 
              notice.</p>
          </item>
          <item>
            <p><c>access_mode</c>. This argument returns the
              access mode of the table. The access mode may either be
              read_only or read_write.
              </p>
          </item>
          <item>
            <p><c>arity</c>. This argument returns the arity of
              records in the table as specified in the schema. 
              </p>
          </item>
          <item>
            <p><c>attributes</c>. This argument returns the table
              attribute names which are specified in the schema. 
              </p>
          </item>
          <item>
            <p><c>checkpoints</c>. This argument returns the names
              of the currently active checkpoints which involves this
              table on this node.
              </p>
          </item>
          <item>
            <p><c>cookie</c>. This argument returns a table cookie
              which is a unique system generated identifier for the
              table. The cookie is used internally to ensure that two
              different table definitions using the same table name
              cannot accidentally be intermixed. The cookie is
              generated when the table is initially created.
              </p>
          </item>
          <item>
            <p><c>disc_copies</c>. This argument returns the nodes
              where a disc_copy of the table resides according to the
              schema. 
              </p>
          </item>
          <item>
            <p><c>disc_only_copies </c>. This argument returns the
              nodes where a disc_only_copy of the table resides
              according to the schema. 
              </p>
          </item>
          <item>
            <p><c>index</c>. This argument returns the list of
              index position integers for the table. 
              </p>
          </item>
          <item>
            <p><c>load_node</c>. This argument returns the name of
              the node that Mnesia loaded the table from. The
              structure of the returned value is unspecified but may
              be useful for debugging purposes.
              </p>
          </item>
          <item>
            <p><c>load_order</c>. This argument returns the load
              order priority of the table. It is an integer and
              defaults to <c>0</c> (zero).
              </p>
          </item>
          <item>
            <p><c>load_reason</c>. This argument returns the
              reason of why Mnesia decided to load the table. The
              structure of the returned value is unspecified but may
              be useful for debugging purposes.
              </p>
          </item>
          <item>
            <p><c>local_content</c>. This argument returns
              <c>true</c> or <c>false</c> to indicate whether the
              table is configured to have locally unique content on
              each node. 
              </p>
          </item>
          <item>
            <p><c>master_nodes</c>. This argument returns the
              master nodes of a table.
              </p>
          </item>
          <item>
            <p><c>memory</c>. This argument returns the number of
              words allocated to the table on this node. 
              </p>
          </item>
          <item>
            <p><c>ram_copies</c>. This argument returns the nodes
              where a ram_copy of the table resides according to the
              schema. 
              </p>
          </item>
          <item>
            <p><c>record_name</c>. This argument returns the
              record name, common for all records in the table
              </p>
          </item>
          <item>
            <p><c>size</c>. This argument returns the number of
              records inserted in the table. 
              </p>
          </item>
          <item>
            <p><c>snmp</c>. This argument returns the SNMP struct.
              <c>[]</c>meaning that the table currently has no SNMP
              properties.
              </p>
          </item>
          <item>
            <p><c>storage_type</c>.This argument returns the local
              storage type of the table. It can be <c>disc_copies</c>,
              <c>ram_copies</c>, <c>disc_only_copies</c>, or the atom
              <c>unknown</c>. <c>unknown</c> is returned for all
              tables which only reside remotely.
              </p>
          </item>
          <item>
            <p><c>subscribers</c>. This argument returns a list
              of local processes currently subscribing to local table
              events which involve this table on this node.
              </p>
          </item>
          <item>
            <p><c>type</c>. This argument returns the table type,
              which is either <c>bag</c>, <c>set</c> or <c>ordered_set</c>..
              </p>
          </item>
          <item>
            <p><c>user_properties</c>. This argument returns the
              user associated table properties of the table. It is a
              list of the stored property records.
              </p>
          </item>
          <item>
            <p><c>version</c>. This argument returns the current
              version of the table definition. The table version is
              incremented when the table definition is changed. The
              table definition may be incremented directly when the
              table definition has been changed in a schema
              transaction, or when a committed table definition is
              merged with table definitions from other nodes during
              start-up.
              </p>
          </item>
          <item>
            <p><c>where_to_read</c>.This argument returns the node
              where the table can be read. If the value <c>nowhere</c>
              is returned, the table is not loaded, or it resides at a
              remote node which is not running.             
              </p>
          </item>
          <item>
            <p><c>where_to_write</c>. This argument returns a list
              of the nodes that currently hold an active replica of
              the table. 
              </p>
          </item>
          <item>
            <p><c>wild_pattern</c>. This argument returns a
              structure which can be given to the various match
              functions for a certain table. A record tuple is where all
              record fields have the value <c>'_'</c>.
              </p>
          </item>
        </list>
      </desc>
    </func>
    <func>
      <name>transaction(Fun [[, Args], Retries]) -> {aborted, Reason} | {atomic, ResultOfFun}</name>
      <fsummary>Execute a transaction.</fsummary>
      <desc>
        <p>This function executes the functional object <c>Fun</c>
          with arguments <c>Args</c> as a transaction.
          </p>
        <p>The code which executes inside the transaction
          can consist of a series of table manipulation functions.
          If something goes wrong inside the transaction as a result of a
          user error or a certain table not being available, the
          entire transaction is aborted and the function 
          <c>transaction/1</c> returns the tuple 
          <c>{aborted, Reason}</c>.
          </p>
        <p>If all is well, <c>{atomic, ResultOfFun}</c> is returned where
          <c>ResultOfFun</c> is the value of the last expression in
          <c>Fun</c>.
          </p>
        <p>A function which adds a family to the database can be
          written as follows if we have a structure <c>{family, Father, Mother, ChildrenList}</c>:
          </p>
        <code type="none">
add_family({family, F, M, Children}) ->
    ChildOids = lists:map(fun oid/1, Children),
    Trans = fun() ->      
        mnesia:write(F#person{children = ChildOids}, 
        mnesia:write(M#person{children = ChildOids},
        Write = fun(Child) -> mnesia:write(Child) end,
        lists:foreach(Write, Children)
    end,
    mnesia:transaction(Trans).

oid(Rec) -> {element(1, Rec), element(2, Rec)}.
        </code>
        <p>This code adds a set of people to the database. Running this code
          within one transaction will ensure that either the whole
          family is added to the database, or the  whole transaction
          aborts. For example, if the last child is badly formatted,
          or the executing process terminates due to an
          <c>'EXIT'</c> signal while executing the family code, the
          transaction aborts. Accordingly, the situation where half a
          family is added can never occur.
          </p>
        <p>It is also useful to update the database within a transaction
          if several processes concurrently update the same records.
          For example, the function <c>raise(Name, Amount)</c>, which 
          adds <c>Amount</c> to the salary field of a person, should
          be implemented as follows:
          </p>
        <code type="none">
raise(Name, Amount) ->
    mnesia:transaction(fun() ->
        case mnesia:wread({person, Name}) of
            [P] ->
                Salary = Amount + P#person.salary,
                P2 = P#person{salary = Salary},
                mnesia:write(P2);
            _ ->
                mnesia:abort("No such person")
        end
    end).
        </code>
        <p>When this function executes within a transaction, 
          several processes running on different nodes can concurrently
          execute the <c>raise/2</c> function without interfering 
          with each other. 
          </p>
        <p>Since Mnesia detects deadlocks, a transaction can be
          restarted any number of times.  This function will attempt a restart as specified in
          <c>Retries</c>. <c>Retries</c> must
          be an integer greater than 0 or the atom <c>infinity</c>. Default is
          <c>infinity</c>.</p>
      </desc>
    </func>
    <func>
      <name>transform_table(Tab, Fun, NewAttributeList, NewRecordName) ->  {aborted, R} | {atomic, ok} </name>
      <fsummary>Change format on all records in table. <c>Tab</c></fsummary>
      <desc>
        <p>This function applies the argument <c>Fun</c> to all
          records in the table. <c>Fun</c> is a function which takes a
          record of the old type and returns a transformed record of the
          new type. The <c>Fun</c> argument can also be the atom
          <c>ignore</c>, it indicates that only the meta data about the table will
          be updated. Usage of <c>ignore</c> is not recommended but included
          as a possibility for the user do to his own transform.
          <c>NewAttributeList</c> and <c>NewRecordName</c>
          specifies the attributes and the new record type of converted
          table. Table name will always remain unchanged, if the
          record_name is changed only the mnesia functions which
          uses table identifiers will work, e.g. <c>mnesia:write/3</c>
          will work but <c>mnesia:write/1</c> will not.</p>
      </desc>
    </func>
    <func>
      <name>transform_table(Tab, Fun, NewAttributeList) ->  {aborted, R} | {atomic, ok} </name>
      <fsummary>Change format on all records in table. <c>Tab</c></fsummary>
      <desc>
        <p>Invokes <c>mnesia:transform_table(Tab, Fun, NewAttributeList, RecName)</c>
          where <c>RecName</c> is <c>mnesia:table_info(Tab, record_name)</c>.</p>
      </desc>
    </func>
    <func>
      <name>traverse_backup(Source, [SourceMod,] Target, [TargetMod,] Fun, Acc) -> {ok, LastAcc} | {error, Reason}</name>
      <fsummary>Traversal of a backup.</fsummary>
      <desc>
        <p>With this function it is possible to iterate over a backup,
          either for the purpose of transforming it into a new backup,
          or just reading it. The arguments are explained briefly
          below. See the Mnesia User's Guide for additional
          details.
          </p>
        <list type="bulleted">
          <item><c>SourceMod</c> and <c>TargetMod</c> are the names of
           the modules which actually access the backup
           media.
          </item>
          <item><c>Source</c> and <c>Target</c> are opaque data used
           exclusively by the modules <c>SourceMod</c> and
          <c>TargetMod</c> for the purpose of initializing the
           backup media. 
          </item>
          <item><c>Acc</c> is an initial accumulator value.
          </item>
          <item><c>Fun(BackupItems, Acc)</c> is applied to each item in
           the backup. The Fun must return a tuple
          <c>{BackupItems,NewAcc}</c>, where <c>BackupItems</c> is
           a list of valid backup items, and <c>NewAcc</c> is a new
           accumulator value. The returned backup items are written
           in the target backup. 
          </item>
          <item><c>LastAcc</c> is the last accumulator value. This is
           the last <c>NewAcc</c> value that was returned by <c>Fun</c>.
          </item>
        </list>
      </desc>
    </func>
    <func>
      <name>uninstall_fallback() -> ok | {error,Reason}</name>
      <fsummary>Uninstall a fallback.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:uninstall_fallback([{scope, global}])</c>.</p>
      </desc>
    </func>
    <func>
      <name>uninstall_fallback(Args) -> ok | {error,Reason}</name>
      <fsummary>Uninstall a fallback.</fsummary>
      <desc>
        <p>This function is used to de-install a fallback before it
          has been used to restore the database. This is normally a
          distributed operation that is either performed on all
          nodes with disc resident schema or none.  Uninstallation of
          fallbacks requires Erlang to be up and running on all
          involved nodes, but it does not matter if Mnesia is running
          or not. Which nodes that are considered as disc-resident
          nodes is determined from the schema info in the local
          fallback.
          </p>
        <p><c>Args</c> is a list of the following tuples: 
          </p>
        <list type="bulleted">
          <item>
            <p><c>{module, BackupMod}</c>. 
              See <c>mnesia:install_fallback/2</c> about the
              semantics.</p>
          </item>
          <item>
            <p><c>{scope, Scope}</c>
              See <c>mnesia:install_fallback/2</c> about the
              semantics.</p>
          </item>
          <item>
            <p><c>{mnesia_dir, AlternateDir}</c> 
              See <c>mnesia:install_fallback/2</c> about the
              semantics.</p>
          </item>
        </list>
      </desc>
    </func>
    <func>
      <name>unsubscribe(EventCategory)</name>
      <fsummary>Subscribe to events of type <c>EventCategory</c>.</fsummary>
      <desc>
        <p>Stops sending events of type
          <c>EventCategory</c> to the caller.</p>
      </desc>
    </func>
    <func>
      <name>wait_for_tables(TabList,Timeout) -> ok | {timeout, BadTabList} | {error, Reason} </name>
      <fsummary>Wait for tables to be accessible.</fsummary>
      <desc>
        <p>Some applications need to wait for certain tables to
          be accessible in order to do useful work.
          <c>mnesia:wait_for_tables/2</c> hangs until all tables in the
          <c>TabList</c> are accessible, or until <c>timeout</c> is
          reached.</p>
      </desc>
    </func>
    <func>
      <name>wread({Tab, Key}) -> transaction abort | RecordList </name>
      <fsummary>Read records with given key.</fsummary>
      <desc>
        <p>Invoke <c>mnesia:read(Tab, Key, write)</c>.</p>
      </desc>
    </func>
    <func>
      <name>write(Record) -> transaction abort | ok </name>
      <fsummary>Writes a record into the database.</fsummary>
      <desc>
        <p>Invoke <c>mnesia:write(Tab, Record, write)</c> where
          <c>Tab</c> is <c>element(1, Record)</c>.</p>
      </desc>
    </func>
    <func>
      <name>write(Tab, Record, LockKind) -> transaction abort | ok </name>
      <fsummary>Write a record into the database.</fsummary>
      <desc>
        <p>Writes the record <c>Record</c> to the table <c>Tab</c>.
          </p>
        <p>The function returns <c>ok</c>, or aborts if an error
          occurs. For example, the transaction aborts if no
          <c>person</c> table exists.
          </p>
        <p>The semantics of this function is context sensitive. See
          <c>mnesia:activity/4</c> for more information. In transaction
          context it acquires a lock of type <c>LockKind</c>. The
          following lock types are supported: <c>write</c> and
          <c>sticky_write</c>.</p>
      </desc>
    </func>
    <func>
      <name>write_lock_table(Tab) -> ok | transaction abort</name>
      <fsummary>Set write lock on an entire table.</fsummary>
      <desc>
        <p>Invokes <c>mnesia:lock({table, Tab}, write)</c>.</p>
      </desc>
    </func>
  </funcs>

  <section>
    <title>Configuration Parameters</title>
    <p>Mnesia reads the following application configuration
      parameters:</p>
    <list type="bulleted">
      <item>
        <p><c>-mnesia access_module Module</c>. The 
          name of the Mnesia activity access callback module. The default is
          <c>mnesia</c>.
          </p>
      </item>
      <item>
        <p><c>-mnesia auto_repair true | false</c>. This flag controls
          whether Mnesia will try to automatically repair
          files that have not been properly closed. The default is 
          <c>true</c>.
          </p>
      </item>
      <item>
        <p><c>-mnesia backup_module Module</c>. The 
          name of the Mnesia backup callback module. The default is
          <c>mnesia_backup</c>.
          </p>
      </item>
      <item>
        <p><c>-mnesia debug Level</c>
          Controls the debug level of Mnesia.
          Possible values are:</p>
        <taglist>
          <tag><c>none</c></tag>
          <item>
            <p>No trace outputs at all. This is the default setting.
              </p>
          </item>
          <tag><c>verbose</c></tag>
          <item>
            <p>Activates tracing of important debug events. These
              debug events generate <c>{mnesia_info, Format, Args}</c>
              system events. Processes may subscribe to these events with
              <c>mnesia:subscribe/1</c>. The events are always sent to Mnesia's
              event handler. 
              </p>
          </item>
          <tag><c>debug</c></tag>
          <item>
            <p>Activates all events at the verbose level plus full
              trace of all debug events. These debug events generate
              <c>{mnesia_info, Format, Args}</c> system events. Processes may
              subscribe to these events with <c>mnesia:subscribe/1</c>. The
              events are always sent to the Mnesia event handler. On this
              debug level, the Mnesia event handler starts subscribing to
              updates in the schema table. 
              </p>
          </item>
          <tag><c>trace</c></tag>
          <item>
            <p>Activates all events at the level debug. On this
              debug level, the Mnesia event handler starts subscribing to
              updates on all Mnesia tables. This level is only intended
              for debugging  small toy systems since many large
              events may be generated.
              </p>
          </item>
          <tag><c>false</c></tag>
          <item>
            <p>An alias for none.
              </p>
          </item>
          <tag><c>true</c></tag>
          <item>
            <p>An alias for debug.
              </p>
          </item>
        </taglist>
      </item>
      <item>
        <p><c>-mnesia core_dir Directory</c>. The name of the
          directory where Mnesia core files is stored or
          false. Setting it implies that also ram only nodes, will
          generate a core file if a crash occurs. </p>
      </item>
      <item>
        <p><c>-mnesia dc_dump_limit Number</c>. 
          Controls how often <c>disc_copies</c> tables are dumped from memory.
          Tables are dumped when 
          <c>filesize(Log) > (filesize(Tab)/Dc_dump_limit)</c>.
          Lower values reduces cpu overhead but increases disk space and
          startup times. The default is 4.</p>
      </item>
      <item>
        <p><c>-mnesia dir Directory</c>. The name of the directory
          where all Mnesia data is stored. The name of the directory must
          be unique for the current node. Two nodes may, under no
          circumstances, share the same Mnesia directory. The results are
          totally unpredictable.</p>
      </item>
      <item>
        <p><c>-mnesia dump_log_load_regulation true | false</c>.
          Controls if the log dumps should be performed as fast as
          possible or if the dumper should do its own load
          regulation. This feature is temporary and will disappear in a
          future release. The default is <c>false</c>.
          </p>
      </item>
      <item>
        <p><c>-mnesia dump_log_update_in_place true | false</c>.
          Controls if log dumps are performed on a copy of
          the original data file, or if  the log dump is 
          performed on the original data file. The default is <c>true</c></p>
      </item>
      <item>
        <p><c>-mnesia dump_log_write_threshold Max</c>, where
          <c>Max</c> is an integer which specifies the maximum number of writes
          allowed to the transaction log before a new dump of the log
          is performed. It defaults to 100 log writes.
          </p>
      </item>
      <item>
        <p><c>-mnesia dump_log_time_threshold Max</c>,
          where <c>Max</c> is an integer which
          specifies the dump log interval in milliseconds. It defaults
          to 3 minutes. If a dump has not been performed within
          <c>dump_log_time_threshold</c> milliseconds, then a new dump is
          performed regardless of how many writes have been
          performed. 
          </p>
      </item>
      <item>
        <p><c>-mnesia event_module Module</c>. The 
          name of the Mnesia event handler callback module. The default is
          <c>mnesia_event</c>.
          </p>
      </item>
      <item>
        <p><c>-mnesia extra_db_nodes Nodes</c> specifies a list of
          nodes, in addition to the ones found in the schema, with which
          Mnesia should also establish contact. The default value
          is the empty list <c>[]</c>. 
          </p>
      </item>
      <item>
        <p><c>-mnesia fallback_error_function {UserModule, UserFunc}</c>
          specifies a user supplied callback function
          which will be called if a fallback is installed and mnesia 
          goes down on another node. Mnesia will call the function
          with one argument the name of the dying node, e.g.
          <c>UserModule:UserFunc(DyingNode)</c>.
          Mnesia should be restarted or else
          the database could be inconsistent.
          The default behaviour is to terminate mnesia.
          </p>
      </item>
      <item>
        <p><c>-mnesia max_wait_for_decision Timeout</c>. Specifies
          how long Mnesia will wait for other nodes to share their
          knowledge regarding the outcome of an unclear transaction.  By
          default the <c>Timeout</c> is set to the atom
          <c>infinity</c>, which implies that if Mnesia upon startup
          encounters a "heavyweight transaction" whose outcome is
          unclear, the local Mnesia will wait until Mnesia is started
          on some (in worst cases all) of the other nodes that were
          involved in the interrupted transaction. This is a very rare
          situation, but when/if it happens, Mnesia does not guess if
          the transaction on the other nodes was committed or aborted.
          Mnesia will wait until it knows the outcome and then act
          accordingly.
          </p>
        <p>If <c>Timeout</c> is set to an integer value in
          milliseconds, Mnesia will force "heavyweight transactions"
          to be finished, even if the outcome of the transaction for
          the moment is unclear. After <c>Timeout</c> milliseconds,
          Mnesia  will commit/abort the transaction and continue with
          the startup. This may lead to a situation where the
          transaction is committed on some nodes and aborted on other
          nodes. If the transaction was a schema transaction, the
          inconsistency may be fatal. 
          </p>
      </item>
      <item>
        <p><c>-mnesia no_table_loaders NUMBER</c> specifies the number of
          parallel table loaders during start. More loaders can be good if the
          network latency is high or if many tables contains few records.
          The default value is <c>2</c>.
          </p>
      </item>
      <item>
        <p><c>-mnesia send_compressed Level</c> specifies the level of
          compression to be used when copying a table from the local node to
          another one. The default level is 0.
          </p>
        <p><c>Level</c> must be an integer in the interval [0, 9], with 0
          representing no compression and 9 representing maximum compression.
          Before setting it to a non-zero value, make sure the remote nodes
          understand this configuration.
          </p>
      </item>
      <item>
        <p><c>-mnesia schema_location Loc</c> controls where
          Mnesia will look for its schema. The parameter
          <c>Loc</c> may be one of the following atoms: </p>
        <taglist>
          <tag><c>disc</c></tag>
          <item>
            <p>Mandatory disc. The schema is assumed to be located
              in the Mnesia directory. If the schema cannot be found,
              Mnesia refuses to start. This is the old behavior.
              </p>
          </item>
          <tag><c>ram</c></tag>
          <item>
            <p>Mandatory RAM. The schema resides in RAM
              only. At start-up, a tiny new schema is generated. This
              default schema just contains the definition of the schema
              table and  only resides on the local node. Since no other
              nodes are found in the default schema, the configuration
              parameter  <c>extra_db_nodes</c> must be used in
              order to let the 
              node share its table definitions with other nodes. (The
              <c>extra_db_nodes</c> parameter may also be used on disc based nodes.)
              </p>
          </item>
          <tag><c>opt_disc</c></tag>
          <item>
            <p>Optional disc. The schema may reside either on disc
              or in RAM. If the schema is found on disc, Mnesia starts as a
              disc based node and the storage type of the schema table is
              <c>disc_copies</c>. If no schema is found on disc, Mnesia starts
              as a disc-less node and the storage type of the schema table is
              <c>ram_copies</c>. The default value for the application parameter
              is <c>opt_disc</c>.  
              </p>
          </item>
        </taglist>
      </item>
    </list>
    <p>First the SASL application parameters are checked, then
      the command line flags are checked, and finally, the default
      value is chosen.
      </p>
  </section>

  <section>
    <title>See Also</title>
    <p>mnesia_registry(3), mnesia_session(3), qlc(3),
      dets(3), ets(3), disk_log(3), application(3) 
      </p>
  </section>
  
</erlref>