-
Notifications
You must be signed in to change notification settings - Fork 0
/
sigmo.xml
16248 lines (14676 loc) · 467 KB
/
sigmo.xml
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
<?xml version='1.0' encoding='ISO-8859-1' ?>
<!--
XML-Page generated by PENELOPE.
Copyright (c) 1999 Araneus Group and University 'Roma Tre', Rome, ITALY
All rights reserved.
-->
<!DOCTYPE SigmodRecord SYSTEM "http://www.cs.washington.edu/research/projects/xmltk/xmldata/data/sigmod-record/SigmodRecord.dtd">
<SigmodRecord>
<issue>
<volume>11</volume>
<number>1</number>
<articles>
<article>
<title>Annotated Bibliography on Data Design.</title>
<initPage>45</initPage>
<endPage>77</endPage>
<authors>
<author position="00">Anthony I. Wasserman</author>
<author position="01">Karen Botnich</author>
</authors>
</article>
<article>
<title>Architecture of Future Data Base Systems.</title>
<initPage>30</initPage>
<endPage>44</endPage>
<authors>
<author position="00">Lawrence A. Rowe</author>
<author position="01">Michael Stonebraker</author>
</authors>
</article>
<article>
<title>Database Directions III Workshop Review.</title>
<initPage>8</initPage>
<endPage>8</endPage>
<authors>
<author position="00">Tom Cook</author>
</authors>
</article>
<article>
<title>Errors in 'Process Synchronization in Database Systems'.</title>
<initPage>9</initPage>
<endPage>29</endPage>
<authors>
<author position="00">Philip A. Bernstein</author>
<author position="01">Marco A. Casanova</author>
<author position="02">Nathan Goodman</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>11</volume>
<number>3</number>
<articles>
<article>
<title>Comparison and Mapping of the Relational and CODASYL Data Models - An Annotated Bibliography.</title>
<initPage>55</initPage>
<endPage>68</endPage>
<authors>
<author position="00">Gary H. Sockut</author>
</authors>
</article>
<article>
<title>Database Activity at Aberdeen University Computing Centre.</title>
<initPage>6</initPage>
<endPage>6</endPage>
<authors>
<author position="00">Stephen Knowles</author>
</authors>
</article>
<article>
<title>Record of the Workshop on Research in Office Semantics.</title>
<initPage>10</initPage>
<endPage>25</endPage>
<authors>
<author position="00">Gerald R. Barber</author>
</authors>
</article>
<article>
<title>Reply to "Errors in 'Process Synchronization in Database Systems'".</title>
<initPage>7</initPage>
<endPage>9</endPage>
<authors>
<author position="00">Gunter Schlageter</author>
</authors>
</article>
<article>
<title>Research in Knowledge Base Management Systems.</title>
<initPage>26</initPage>
<endPage>54</endPage>
<authors>
<author position="00">Gio Wiederhold</author>
<author position="01">S. Jerrold Kaplan</author>
<author position="02">Daniel Sagalowicz</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>11</volume>
<number>4</number>
<articles>
<article>
<title>Multisafe - A Data Security Architecture.</title>
<initPage>26</initPage>
<endPage>31</endPage>
<authors>
<author position="00">Robert P. Trueblood</author>
<author position="01">H. Rex Hartson</author>
</authors>
</article>
<article>
<title>Note on the Expected Size of a Join.</title>
<initPage>19</initPage>
<endPage>25</endPage>
<authors>
<author position="00">Arnon Rosenthal</author>
</authors>
</article>
<article>
<title>Notes of DDTS - An Apparatus for Experimental Research in Distributed Database Management Systems.</title>
<initPage>32</initPage>
<endPage>49</endPage>
<authors>
<author position="00">Ramez Elmasri</author>
<author position="01">Cory Devor</author>
<author position="02">Said K. Rahimi</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>12</volume>
<number>1</number>
<articles>
<article>
<title>A Note on Decompositions of Relational Databases.</title>
<initPage>33</initPage>
<endPage>37</endPage>
<authors>
<author position="00">Catriel Beeri</author>
<author position="01">Moshe Y. Vardi</author>
</authors>
</article>
<article>
<title>BUSINESS - An End-User Oriented Application Development Language.</title>
<initPage>38</initPage>
<endPage>69</endPage>
<authors>
<author position="00">Peter B. Miller</author>
<author position="01">Sergey Tetelbaum</author>
<author position="02">Kincade N. Webb</author>
</authors>
</article>
<article>
<title>Horizontal Decomposition to Improve a Non-BCNF Scheme.</title>
<initPage>26</initPage>
<endPage>32</endPage>
<authors>
<author position="00">Antonio L. Furtado</author>
</authors>
</article>
<article>
<title>Meta-Database Architecture for Relational DBMS.</title>
<initPage>18</initPage>
<endPage>25</endPage>
<authors>
<author position="00">Kn. I. Kilov</author>
<author position="01">I. A. Popova</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>12</volume>
<number>2</number>
<articles>
<article>
<title>Actual Conversion Experiences.</title>
<initPage>20</initPage>
<endPage>33</endPage>
<authors>
<author position="00">James H. Burrows</author>
</authors>
</article>
<article>
<title>Conversion Technology, An Assessment.</title>
<initPage>39</initPage>
<endPage>61</endPage>
<authors>
<author position="00">James P. Fry</author>
</authors>
</article>
<article>
<title>Data Base Directions II: The Conversion Problem - Editorial.</title>
<initPage>3</initPage>
<endPage>3</endPage>
<authors>
<author position="00">John L. Berg</author>
</authors>
</article>
<article>
<title>Establishing Management Objectives.</title>
<initPage>9</initPage>
<endPage>19</endPage>
<authors>
<author position="00">Richard L. Nolan</author>
</authors>
</article>
<article>
<title>Evolution in Computer Systems.</title>
<initPage>4</initPage>
<endPage>8</endPage>
<authors>
<author position="00">Mayford L. Roark</author>
</authors>
</article>
<article>
<title>Standards.</title>
<initPage>34</initPage>
<endPage>38</endPage>
<authors>
<author position="00">Milt Bryce</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>12</volume>
<number>3</number>
<articles>
<article>
<title>Administering a Distributed Data Base Management System.</title>
<initPage>86</initPage>
<endPage>99</endPage>
<authors>
<author position="00">Henry M. Walker</author>
</authors>
</article>
<article>
<title>Database Research Activities at the University of Wisconsin.</title>
<initPage>19</initPage>
<endPage>26</endPage>
<authors>
<author position="00">Haran Boral</author>
<author position="01">David J. DeWitt</author>
<author position="02">Randy H. Katz</author>
<author position="03">Anthony C. Klug</author>
</authors>
</article>
<article>
<title>Distributed Processing of Data Dynamics.</title>
<initPage>67</initPage>
<endPage>85</endPage>
<authors>
<author position="00">Colette Rolland</author>
<author position="01">Christian Richard</author>
</authors>
</article>
<article>
<title>Implementation of a Time Expert in a Data Base System.</title>
<initPage>51</initPage>
<endPage>60</endPage>
<authors>
<author position="00">Ricky Overmyer</author>
<author position="01">Michael Stonebraker</author>
</authors>
</article>
<article>
<title>Problems of Optimistic Concurrency Control in Distributed Database Systems.</title>
<initPage>61</initPage>
<endPage>66</endPage>
<authors>
<author position="00">Gunter Schlageter</author>
</authors>
</article>
<article>
<title>The Role of Time in Information Processing: A Survey.</title>
<initPage>27</initPage>
<endPage>50</endPage>
<authors>
<author position="00">A. Bolour</author>
<author position="01">T. L. Anderson</author>
<author position="02">L. J. Dekeyser</author>
<author position="03">Harry K. T. Wong</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>12</volume>
<number>4</number>
<articles>
<article>
<title>Final Report of the ANSI/X3/SPARC DBS-SG Relational Database Task Group.</title>
<initPage>0</initPage>
<endPage>62</endPage>
<authors>
<author position="00">Michael L. Brodie</author>
<author position="01">Joachim W. Schmidt</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>13</volume>
<number>1</number>
<articles>
<article>
<title>A Formal Definition of the relational Model.</title>
<initPage>18</initPage>
<endPage>29</endPage>
<authors>
<author position="00">C. J. Date</author>
</authors>
</article>
<article>
<title>A Precise Definition of Basic Relational Notions and of the Relational Algebra.</title>
<initPage>30</initPage>
<endPage>45</endPage>
<authors>
<author position="00">Alain Pirotte</author>
</authors>
</article>
<article>
<title>Comments on "Note on the Expected Size of a Join".</title>
<initPage>13</initPage>
<endPage>13</endPage>
<authors>
<author position="00">T. H. Merrett</author>
</authors>
</article>
<article>
<title>Horizontal Decompositions and their Impact on Query Solving.</title>
<initPage>46</initPage>
<endPage>50</endPage>
<authors>
<author position="00">P. De Bra</author>
<author position="01">Jan Paredaens</author>
</authors>
</article>
<article>
<title>New Proposal for a Common Command Language in Information Systems.</title>
<initPage>51</initPage>
<endPage>78</endPage>
<authors>
<author position="00">Yves Vander Auwera</author>
<author position="01">Luc Bernard</author>
</authors>
</article>
<article>
<title>Notes on the State of Data Base Audit.</title>
<initPage>79</initPage>
<endPage>91</endPage>
<authors>
<author position="00">Jon D. Clark</author>
<author position="01">Frederick G. Davis</author>
</authors>
</article>
<article>
<title>On Some Arguable Claims in B. Shneiderman's Evaluation of Natural Language Interaction with Database Systems.</title>
<initPage>92</initPage>
<endPage>97</endPage>
<authors>
<author position="00">Neil C. Rowe</author>
</authors>
</article>
<article>
<title>Response to N. C. Rowe's Rewiew.</title>
<initPage>98</initPage>
<endPage>98</endPage>
<authors>
<author position="00">Ben Shneiderman</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>13</volume>
<number>2</number>
<articles>
<article>
<title>An Approach to the User Interface and Semantic Integrity for a Relational DBMS.</title>
<initPage>64</initPage>
<endPage>71</endPage>
<authors>
<author position="00">Haim Kilov</author>
</authors>
</article>
<article>
<title>Comments on Optimality of B-Trees.</title>
<initPage>35</initPage>
<endPage>38</endPage>
<authors>
<author position="00">Juergen Klonk</author>
</authors>
</article>
<article>
<title>Constraints: Consistency and Integrity.</title>
<initPage>60</initPage>
<endPage>63</endPage>
<authors>
<author position="00">Mukul K. Sinha</author>
</authors>
</article>
<article>
<title>Deadlock Detection is Cheap.</title>
<initPage>19</initPage>
<endPage>34</endPage>
<authors>
<author position="00">Rakesh Agrawal</author>
<author position="01">Michael J. Carey</author>
<author position="02">David J. DeWitt</author>
</authors>
</article>
<article>
<title>Fixing Pages in Database Buffer.</title>
<initPage>52</initPage>
<endPage>59</endPage>
<authors>
<author position="00">Wolfgang Effelsberg</author>
</authors>
</article>
<article>
<title>The Optimal Selection of Secondary Indices is NP-Complete.</title>
<initPage>72</initPage>
<endPage>75</endPage>
<authors>
<author position="00">Gregory Piatetsky-Shapiro</author>
</authors>
</article>
<article>
<title>Why Sort-Merge Gives the Best Implementation of the Natural Join.</title>
<initPage>39</initPage>
<endPage>51</endPage>
<authors>
<author position="00">T. H. Merrett</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>13</volume>
<number>3</number>
<articles>
<article>
<title>Adding Database Management to Ada.</title>
<initPage>13</initPage>
<endPage>17</endPage>
<authors>
<author position="00">Patrick A. V. Hall</author>
</authors>
</article>
<article>
<title>An Informal Approach to Formal Specifications.</title>
<initPage>32</initPage>
<endPage>41</endPage>
<authors>
<author position="00">Antonio L. Furtado</author>
</authors>
</article>
<article>
<title>Comparison of Four Relational Data Model Specifications.</title>
<initPage>18</initPage>
<endPage>31</endPage>
<authors>
<author position="00">Winfried Lamersdorf</author>
</authors>
</article>
<article>
<title>How the DBA Stole Christmas, or The Case for Separately Compiled Access Modules.</title>
<initPage>11</initPage>
<endPage>12</endPage>
<authors>
<author position="00">David S. Reiner</author>
<author position="01">Arnon Rosenthal</author>
</authors>
</article>
<article>
<title>Interfacing a Query Language to a CODASYL DBMS.</title>
<initPage>46</initPage>
<endPage>64</endPage>
<authors>
<author position="00">Roger M. Tagg</author>
</authors>
</article>
<article>
<title>Research Issues in Database Specification.</title>
<initPage>42</initPage>
<endPage>45</endPage>
<authors>
<author position="00">Michael L. Brodie</author>
</authors>
</article>
<article>
<title>The Devolution of Functional Analysis.</title>
<initPage>65</initPage>
<endPage>91</endPage>
<authors>
<author position="00">Ken Meyer</author>
<author position="01">John Doughty</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>13</volume>
<number>4</number>
<articles>
<article>
<title>"I wish I were over there": Distributed Execution Protocols for Data Definition in R*.</title>
<initPage>238</initPage>
<endPage>242</endPage>
<authors>
<author position="00">Paul F. Wilms</author>
<author position="01">Bruce G. Lindsay</author>
<author position="02">Patricia G. Selinger</author>
</authors>
</article>
<article>
<title>A High Performance, Universal, Key Associative Access Method.</title>
<initPage>120</initPage>
<endPage>133</endPage>
<authors>
<author position="00">David B. Lomet</author>
</authors>
</article>
<article>
<title>A New Characterization of Independence.</title>
<initPage>92</initPage>
<endPage>96</endPage>
<authors>
<author position="00">Peter Honeyman</author>
<author position="01">Edward Sciore</author>
</authors>
</article>
<article>
<title>An Abstract Model of Database Concurrency Control Algorithms.</title>
<initPage>97</initPage>
<endPage>107</endPage>
<authors>
<author position="00">Michael J. Carey</author>
</authors>
</article>
<article>
<title>An Experimental Comparison of Locking Policies in a Testbed Database System.</title>
<initPage>108</initPage>
<endPage>119</endPage>
<authors>
<author position="00">Walter H. Kohler</author>
<author position="01">Kenneth C. Wilner</author>
<author position="02">John A. Stankovic</author>
</authors>
</article>
<article>
<title>Answering Queries in Relational Databases.</title>
<initPage>173</initPage>
<endPage>177</endPage>
<authors>
<author position="00">Alessandro D'Atri</author>
<author position="01">Marina Moscarini</author>
<author position="02">Nicolas Spyratos</author>
</authors>
</article>
<article>
<title>Database Theory: Where Has It Been? Where Is It Going? (Abstract).</title>
<initPage>2</initPage>
<endPage>2</endPage>
<authors>
<author position="00">Philip A. Bernstein</author>
</authors>
</article>
<article>
<title>Database Usability (Abstract).</title>
<initPage>1</initPage>
<endPage>1</endPage>
<authors>
<author position="00">C. J. Date</author>
</authors>
</article>
<article>
<title>DBMS and AI: Is There any Common Point of View?</title>
<initPage>134</initPage>
<endPage>134</endPage>
<authors>
<author position="00">Michael Stonebraker</author>
</authors>
</article>
<article>
<title>Designing Globally Consistent Network Schemas.</title>
<initPage>185</initPage>
<endPage>195</endPage>
<authors>
<author position="00">Sharon McCure Kuck</author>
<author position="01">Yehoshua Sagiv</author>
</authors>
</article>
<article>
<title>Distributing A Database for Parallelism.</title>
<initPage>23</initPage>
<endPage>29</endPage>
<authors>
<author position="00">Eugene Wong</author>
<author position="01">Randy H. Katz</author>
</authors>
</article>
<article>
<title>Estimating Block Transfers and Join Sizes.</title>
<initPage>40</initPage>
<endPage>54</endPage>
<authors>
<author position="00">Stavros Christodoulakis</author>
</authors>
</article>
<article>
<title>Forms Approach to Requirements Specification for Database Design.</title>
<initPage>161</initPage>
<endPage>172</endPage>
<authors>
<author position="00">Nan C. Shu</author>
<author position="01">Harry K. T. Wong</author>
<author position="02">Vincent Y. Lum</author>
</authors>
</article>
<article>
<title>Fragments of Relations.</title>
<initPage>15</initPage>
<endPage>22</endPage>
<authors>
<author position="00">David Maier</author>
<author position="01">Jeffrey D. Ullman</author>
</authors>
</article>
<article>
<title>Functional Dependencies on Cyclic Database Schemes.</title>
<initPage>79</initPage>
<endPage>91</endPage>
<authors>
<author position="00">Kent Laver</author>
<author position="01">Alberto O. Mendelzon</author>
<author position="02">Marc H. Graham</author>
</authors>
</article>
<article>
<title>Incomplete Information and Dependencies in Relational Databases.</title>
<initPage>178</initPage>
<endPage>184</endPage>
<authors>
<author position="00">Tomasz Imielinski</author>
<author position="01">Witold Lipski Jr.</author>
</authors>
</article>
<article>
<title>On Merging Partitioned Databases.</title>
<initPage>6</initPage>
<endPage>14</endPage>
<authors>
<author position="00">David D. Wright</author>
</authors>
</article>
<article>
<title>On the Design of a Query Processing Strategy in a Distributed Database Environment.</title>
<initPage>30</initPage>
<endPage>39</endPage>
<authors>
<author position="00">Clement T. Yu</author>
<author position="01">C. C. Chang</author>
</authors>
</article>
<article>
<title>Overview of an Ada Compatible Distributed Database Manager.</title>
<initPage>228</initPage>
<endPage>237</endPage>
<authors>
<author position="00">Arvola Chan</author>
<author position="01">Umeshwar Dayal</author>
<author position="02">Stephen Fox</author>
<author position="03">Nathan Goodman</author>
<author position="04">Daniel R. Ries</author>
<author position="05">Dale Skeen</author>
</authors>
</article>
<article>
<title>Practical Problems in Data Management - A Position Paper.</title>
<initPage>3</initPage>
<endPage>3</endPage>
<authors>
<author position="00">Jim Gray</author>
</authors>
</article>
<article>
<title>Query Processing Utilizing Dependencies and Horizontal Decomposition.</title>
<initPage>55</initPage>
<endPage>67</endPage>
<authors>
<author position="00">Yahiko Kambayashi</author>
<author position="01">Masatoshi Yoshikawa</author>
</authors>
</article>
<article>
<title>Range Nesting: A Fast Method to Evaluate Quantified Queries.</title>
<initPage>196</initPage>
<endPage>206</endPage>
<authors>
<author position="00">Matthias Jarke</author>
<author position="01">Jürgen Koch</author>
</authors>
</article>
<article>
<title>Relational Queries in a Domain Based DBMS.</title>
<initPage>219</initPage>
<endPage>227</endPage>
<authors>
<author position="00">Michele Missikoff</author>
<author position="01">Michel Scholl</author>
</authors>
</article>
<article>
<title>Remotely-Sensed Geophysical Databases: Experience and Implications for Generalized DBMS.</title>
<initPage>146</initPage>
<endPage>160</endPage>
<authors>
<author position="00">Guy M. Lohman</author>
<author position="01">Joseph C. Stoltzfus</author>
<author position="02">Anita N. Benson</author>
<author position="03">Michael D. Martin</author>
<author position="04">Alfonso F. Cardenas</author>
</authors>
</article>
<article>
<title>The Database Language GEM.</title>
<initPage>207</initPage>
<endPage>218</endPage>
<authors>
<author position="00">Carlo Zaniolo</author>
</authors>
</article>
<article>
<title>Time and Databases.</title>
<initPage>243</initPage>
<endPage>245</endPage>
<authors>
<author position="00">Gad Ariav</author>
<author position="01">James Clifford</author>
<author position="02">Matthias Jarke</author>
</authors>
</article>
<article>
<title>Top-Down Statistical Estimation on a Database.</title>
<initPage>135</initPage>
<endPage>145</endPage>
<authors>
<author position="00">Neil C. Rowe</author>
</authors>
</article>
<article>
<title>Views on Data Management.</title>
<initPage>4</initPage>
<endPage>5</endPage>
<authors>
<author position="00">Erich J. Neuhold</author>
</authors>
</article>
<article>
<title>Windows on the World.</title>
<initPage>68</initPage>
<endPage>78</endPage>
<authors>
<author position="00">David Maier</author>
<author position="01">David Rozenshtein</author>
<author position="02">David Scott Warren</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>14</volume>
<number>1</number>
<articles>
<article>
<title>A Straightforward Formalization of the Relational Model.</title>
<initPage>15</initPage>
<endPage>38</endPage>
<authors>
<author position="00">Timo Niemi</author>
<author position="01">Kalervo Järvelin</author>
</authors>
</article>
<article>
<title>An Informal Approach to Formal Specifications.</title>
<initPage>45</initPage>
<endPage>54</endPage>
<authors>
<author position="00">Antonio L. Furtado</author>
</authors>
</article>
<article>
<title>Book Review - Edward A. Feigenbaum and Pamela McCorduck, The Fifth Generation: Artificial Intelligence and Japan's Computer Challenge to the World.</title>
<initPage>64</initPage>
<endPage>65</endPage>
<authors>
<author position="00">Neil C. Rowe</author>
</authors>
</article>
<article>
<title>Distributing a database for Parallel Processing is NP-hard.</title>
<initPage>55</initPage>
<endPage>60</endPage>
<authors>
<author position="00">H. C. Du</author>
</authors>
</article>
<article>
<title>Implementation of Data Abstraction in the Relational Database System Ingres.</title>
<initPage>1</initPage>
<endPage>14</endPage>
<authors>
<author position="00">James Ong</author>
<author position="01">Dennis Fogg</author>
<author position="02">Michael Stonebraker</author>
</authors>
</article>
<article>
<title>Practical Hardware for Linear Execution of relational database Operations.</title>
<initPage>39</initPage>
<endPage>44</endPage>
<authors>
<author position="00">T. H. Merrett</author>
</authors>
</article>
<article>
<title>Some Comments on "Deadlock Detection is Cheap" in SIGMOD Record Jan 83.</title>
<initPage>61</initPage>
<endPage>63</endPage>
<authors>
<author position="00">W. N. Chin</author>
</authors>
</article>
</articles>
</issue>
<issue>
<volume>14</volume>
<number>2</number>
<articles>
<article>
<title>A Methodology for Database System Performance Evaluation.</title>
<initPage>176</initPage>
<endPage>185</endPage>
<authors>
<author position="00">Haran Boral</author>
<author position="01">David J. DeWitt</author>
</authors>
</article>
<article>
<title>A Multikey Hashing Scheme Using Predicate Trees.</title>
<initPage>107</initPage>
<endPage>114</endPage>
<authors>
<author position="00">Patrick Valduriez</author>
<author position="01">Yann Viémont</author>
</authors>
</article>
<article>
<title>Accurate Estimation of the Number of Tuples Satisfying a Condition.</title>
<initPage>256</initPage>
<endPage>276</endPage>
<authors>
<author position="00">Gregory Piatetsky-Shapiro</author>
<author position="01">Charles Connell</author>
</authors>
</article>
<article>
<title>An Active Mail System.</title>
<initPage>215</initPage>
<endPage>222</endPage>
<authors>
<author position="00">John Hogg</author>
<author position="01">Stelios Gamvroulas</author>
</authors>
</article>
<article>
<title>An Empirical Comparison of B-Trees, Compact B-Trees and Multiway Trees.</title>
<initPage>33</initPage>
<endPage>46</endPage>
<authors>
<author position="00">David M. Arnow</author>
<author position="01">Aaron M. Tenenbaum</author>
</authors>
</article>
<article>
<title>An Implementation of GEM - Supporting a Semantic Data Model on a Relational Back-End.</title>
<initPage>286</initPage>
<endPage>295</endPage>
<authors>