-
Notifications
You must be signed in to change notification settings - Fork 6
/
BFb0015267
1235 lines (1105 loc) · 112 KB
/
BFb0015267
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
<!DOCTYPE HTML>
<html lang="en-gb" class="no-js">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1"/>
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=2.5,user-scalable=yes">
<meta name="citation_publisher" content="Springer, Berlin, Heidelberg"/>
<meta name="citation_title" content="Database transaction models"/>
<meta name="citation_doi" content="10.1007/BFb0015267"/>
<meta name="citation_language" content="en"/>
<meta name="citation_abstract_html_url" content="https://link.springer.com/chapter/10.1007/BFb0015267"/>
<meta name="citation_fulltext_html_url" content="https://link.springer.com/chapter/10.1007/BFb0015267"/>
<meta name="citation_pdf_url" content="https://link.springer.com/content/pdf/10.1007%2FBFb0015267.pdf"/>
<meta name="citation_springer_api_url" content="http://api.springer.com/metadata/pam?q=doi:10.1007/BFb0015267&api_key="/>
<meta name="citation_firstpage" content="560"/>
<meta name="citation_lastpage" content="574"/>
<meta name="citation_author" content="Gottfried Vossen"/>
<meta name="citation_author_institution" content="Universität Münster"/>
<meta name="dc.identifier" content="10.1007/BFb0015267"/>
<meta name="format-detection" content="telephone=no"/>
<meta name="meta:description" content="The transaction concept provides a central paradigm for correctly synchronizing concurrent activities and for achieving reliability in database systems. In transaction modeling and processing, theory "/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:title" content="Database transaction models"/>
<meta name="twitter:description" content="The transaction concept provides a central paradigm for correctly synchronizing concurrent activities and for achieving reliability in database systems. In transaction modeling and processing, theory "/>
<meta name="twitter:image" content="https://static-content.springer.com/cover/book/978-3-540-49435-5.jpg"/>
<meta name="twitter:image:alt" content="Content cover image"/>
<meta name="twitter:site" content="SpringerLink"/>
<meta name="citation_inbook_title" content="Computer Science Today"/>
<meta name="citation_publication_date" content="1995"/>
<meta property="og:title" content="Database transaction models"/>
<meta property="og:description" content="The transaction concept provides a central paradigm for correctly synchronizing concurrent activities and for achieving reliability in database systems. In transaction modeling and processing, theory "/>
<meta property="og:type" content="Paper"/>
<meta property="og:url" content="https://link.springer.com/chapter/10.1007/BFb0015267"/>
<meta property="og:image" content="https://static-content.springer.com/cover/book/978-3-540-49435-5.jpg"/>
<meta property="og:site_name" content="SpringerLink"/>
<title>Database transaction models | SpringerLink</title>
<link rel="canonical" href="https://link.springer.com/chapter/10.1007/BFb0015267"/>
<link rel="shortcut icon" href="/springerlink-static/274007506/images/favicon/favicon.ico" />
<link rel="icon" sizes="16x16 32x32 48x48" href="/springerlink-static/274007506/images/favicon/favicon.ico">
<link rel="icon" sizes="16x16" type="image/png" href="/springerlink-static/274007506/images/favicon/favicon-16x16.png">
<link rel="icon" sizes="32x32" type="image/png" href="/springerlink-static/274007506/images/favicon/favicon-32x32.png">
<link rel="icon" sizes="48x48" type="image/png" href="/springerlink-static/274007506/images/favicon/favicon-48x48.png">
<link rel="apple-touch-icon" href="/springerlink-static/274007506/images/favicon/[email protected]">
<link rel="apple-touch-icon" sizes="72x72" href="/springerlink-static/274007506/images/favicon/ic_launcher_hdpi.png" />
<link rel="apple-touch-icon" sizes="76x76" href="/springerlink-static/274007506/images/favicon/app-icon-ipad.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/springerlink-static/274007506/images/favicon/app-icon-114x114.png" />
<link rel="apple-touch-icon" sizes="120x120" href="/springerlink-static/274007506/images/favicon/[email protected]" />
<link rel="apple-touch-icon" sizes="144x144" href="/springerlink-static/274007506/images/favicon/ic_launcher_xxhdpi.png" />
<link rel="apple-touch-icon" sizes="152x152" href="/springerlink-static/274007506/images/favicon/[email protected]" />
<link rel="apple-touch-icon" sizes="180x180" href="/springerlink-static/274007506/images/favicon/[email protected]" />
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="/springerlink-static/274007506/images/favicon/ic_launcher_xxhdpi.png">
<link rel="dns-prefetch" href="//fonts.gstatic.com" />
<link rel="dns-prefetch" href="//fonts.googleapis.com" />
<link rel="dns-prefetch" href="//google-analytics.com" />
<link rel="dns-prefetch" href="//www.google-analytics.com" />
<link rel="dns-prefetch" href="//www.googletagservices.com" />
<link rel="dns-prefetch" href="//www.googletagmanager.com" />
<link rel="dns-prefetch" href="//static-content.springer.com" />
<link rel="stylesheet" href="/springerlink-static/274007506/css/basic.css" media="screen">
<link rel="stylesheet" href="/springerlink-static/274007506/css/styles.css" class="js-ctm" media="only screen and (-webkit-min-device-pixel-ratio:0) and (min-color-index:0), (-ms-high-contrast: none), only all and (min--moz-device-pixel-ratio:0) and (min-resolution: 3e1dpcm)">
<link rel="stylesheet" href="/springerlink-static/274007506/css/print.css" media="print">
<script id="webtrekk-properties">
var webtrekkProperties = {
trackDomain : "springergmbh01.webtrekk.net",
trackId : "935649882378213",
bpJson: {1:"2000161090;3000189246;3000590661;3991445888",2:"EPFL Bibliothèque Secteur documentation électronique;SWI Journal Cons;SWI Materials Consortium Konsortium der Schweizer;c/o ETH-Bibliothek Pascalia Boutsiouci"}
};
</script>
<script type="text/javascript" async src="/springerlink-static/274007506/js/webtrekk_v4.min.js"></script>
<script>
var dataLayer = [{
'GA Key':'UA-26408784-1',
'Event Category':'Chapter',
'Open Access':'N',
'Labs':'Y',
'DOI':'10.1007\/BFb0015267',
'VG Wort Identifier':'pw-vgzm.415900-10.1007-BFb0015267',
'HasAccess':'N',
'Full HTML':'N',
'Has Body':'N',
'Static Hash':'274007506',
'Has Preview':'Y',
'user':{'license': {'businessPartnerID': ['2000161090', '3000189246', '3000590661', '3991445888'], 'businessPartnerIDString': '2000161090|3000189246|3000590661|3991445888'}},
'content':{'type': 'chapter', 'book': {'seriesTitle': 'Lecture Notes in Computer Science', 'bookProductType': 'Contributed volume', 'eIsbn': '978-3-540-49435-5', 'seriesId': '558', 'title': 'Computer Science Today', 'doi': '10.1007/BFb0015232'}, 'chapter': {'doi': '10.1007/BFb0015267'}, 'category': {'pmc': {'primarySubject': 'Computer Science', 'primarySubjectCode': 'I', 'secondarySubjects': {'1': 'Theory of Computation', '2': 'Computers and Education'}, 'secondarySubjectCodes': {'1': 'I16005', '2': 'I24032'}}}},
'Access Type':'noaccess',
'Page':'chapter',
'Bpids':'2000161090, 3000189246, 3000590661, 3991445888',
'Bpnames':'EPFL Biblioth\u00E8que Secteur documentation \u00E9lectronique, SWI Journal Cons, SWI Materials Consortium Konsortium der Schweizer, c\/o ETH-Bibliothek Pascalia Boutsiouci',
'SubjectCodes':'SCI, SCI16005, SCI24032',
'Webtrekk parent prefix':'book',
'Webtrekk leaf prefix':'chapter',
'Webtrekk toc prefix':'book',
'Country':'CH',
}];
</script>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?cache-busting=' + new Date().getTime() + '&id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-WCF9Z9');</script>
</head>
<body>
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-WCF9Z9"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<nav class="skip-to">
<a class="skip-to__link skip-to__link--article" href="#main-content">Skip to main content</a>
</nav>
<div class="page-wrapper">
<noscript>
<div class="nojs-banner u-interface">
<p>This service is more advanced with JavaScript available, learn more at <a
href="http://activatejavascript.org" target="_blank" rel="noopener noreferrer">http://activatejavascript.org</a>
</p>
</div>
</noscript>
<div id="leaderboard" class="leaderboard u-hide" data-component="SpringerLink.GoogleAds" data-namespace="leaderboard"></div>
<header id="header" class="header u-interface" role="banner">
<div class="header__content">
<div class="header__menu-container">
<a id="logo" class="site-logo" href="/" title="Go to homepage">
<div class="u-screenreader-only">SpringerLink</div>
<svg class="site-logo__springer" width="148" height="30" role="img" aria-label="SpringerLink Logo">
<image width="148" height="30" alt="SpringerLink Logo" src="/springerlink-static/274007506/images/png/springerlink.png" xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="/springerlink-static/274007506/images/svg/springerlink.svg"></image>
</svg>
</a>
<nav id="search-container" class="u-inline-block">
<div class="search">
<div class="search__content">
<form class="u-form-single-input" action="/search" method="get" role="search">
<input aria-label="Search" name="query" type="text" autocomplete="off" value="" placeholder="Search">
<input class="u-hide-text" type="submit" value="Submit" title="Submit">
<svg class="u-vertical-align-absolute" width="13" height="13" viewBox="222 151 13 13" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="M227 159C228.7 159 230 157.7 230 156 230 154.3 228.7 153 227 153 225.3 153 224 154.3 224 156 224 157.7 225.3 159 227 159L227 159 227 159 227 159ZM230 160.1L231.1 159 233.9 161.7C234.2 162.1 234.2 162.6 233.9 162.9 233.6 163.2 233.1 163.2 232.7 162.9L230 160.1 230 160.1 230 160.1 230 160.1ZM227 161L227 161C224.2 161 222 158.8 222 156 222 153.2 224.2 151 227 151 229.8 151 232 153.2 232 156 232 158.8 229.8 161 227 161L227 161 227 161 227 161 227 161Z" stroke="none" fill-rule="evenodd"/>
</svg>
</form>
</div>
</div>
</nav>
<nav class="nav-container u-interface">
<div class="global-nav__wrapper">
<div class="search-button">
<a class="search-button__label" href="#search-container">
<span class="search-button__title">Search</span><svg width="12" height="12" viewBox="222 151 12 12" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="M227 159C228.7 159 230 157.7 230 156 230 154.3 228.7 153 227 153 225.3 153 224 154.3 224 156 224 157.7 225.3 159 227 159L227 159 227 159 227 159ZM230 160.1L231.1 159 233.9 161.7C234.2 162.1 234.2 162.6 233.9 162.9 233.6 163.2 233.1 163.2 232.7 162.9L230 160.1 230 160.1 230 160.1 230 160.1ZM227 161L227 161C224.2 161 222 158.8 222 156 222 153.2 224.2 151 227 151 229.8 151 232 153.2 232 156 232 158.8 229.8 161 227 161L227 161 227 161 227 161 227 161Z" stroke="none" fill-rule="evenodd"></path>
</svg>
</a>
</div>
<ul class="global-nav" data-component="SpringerLink.Menu" data-title="Navigation menu" data-text="Menu">
<li>
<a href="/">
<span class="u-overflow-ellipsis">Home</span>
</a>
</li>
<li>
<a href="/contactus">
<span class="u-overflow-ellipsis">Contact Us</span>
</a>
</li>
<li class="global-nav__logged-out">
<a class="test-login-link" href="//link.springer.com/signup-login?previousUrl=https%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267%3Fno-access%3Dtrue">
<span class="u-overflow-ellipsis">Log in</span>
</a>
</li>
</ul>
</div>
</nav>
</div>
</div>
</header>
<div class="banner">
<div class="banner__content u-interface">
<p class="banner__message">
<span>You're seeing our new chapter page and we'd like your opinion, </span>
<span class="banner__feedback">
<a class="test-feedback-banner" target="_blank" rel="noopener noreferrer" title="Send us your comments on our new design" href="https://docs.google.com/forms/d/e/1FAIpQLScj5fWXHTH0k8sRCxdN30VnAgQH7ptY6SqtY9-pBZZ9qiZiVA/viewform?entry_1725729680=10.1007%2FBFb0015267">send feedback</a>
</span>
</p>
</div>
</div>
<main id="main-content" class="main-wrapper">
<div class="main-container uptodate-recommendations-off">
<aside class="main-sidebar-left">
<div class="main-sidebar-left__content">
<div class="test-cover cover-image" itemscope>
<a class="test-cover-link" href="/book/10.1007/BFb0015232" title="Computer Science Today">
<img class="test-cover-image" src="https://static-content.springer.com/cover/book/978-3-540-49435-5.jpg" alt="Computer Science Today" itemprop="image"/>
</a>
</div>
</div>
</aside>
<div class="main-body" data-role="NavigationContainer">
<article class="main-body__content">
<div xmlns="http://www.w3.org/1999/xhtml" class="FulltextWrapper"><div class="ArticleHeader main-context"><div id="enumeration" class="enumeration"><p class="test-LocationInConferenceProceeding"><span class="BookTitle"><a href="/book/10.1007/BFb0015232" class="gtm-book-link">Computer Science Today</a></span><span class="page-numbers-info">
pp 560-574</span><span class="u-inline-block u-ml-4"> |
<a class="gtm-cite-link" href="#citeas">Cite as</a></span></p></div><div class="MainTitleSection"><h1 class="ChapterTitle" lang="en">Database transaction models</h1></div><div class="authors u-clearfix" data-component="SpringerLink.Authors"><ul class="u-interface u-inline-list authors__title" data-role="AuthorsNavigation"><li><span>Authors</span></li><li><a href="#authorsandaffiliations" class="gtm-tab-authorsandaffiliations">Authors and affiliations</a></li></ul><div class="authors__list" data-role="AuthorsList"><ul class="test-contributor-names"><li itemscope="" itemtype="http://schema.org/Person" class="u-mb-2 u-pt-4 u-pb-4"><span itemprop="name" class="authors__name">Gottfried Vossen</span></li></ul></div></div><div class="main-context__container" data-component="SpringerLink.ChapterMetrics"><div class="main-context__column"><span><span class="test-render-category">Chapter</span></span><div class="article-dates" data-component="SpringerLink.ArticleDates"><div class="article-dates__entry"><span class="article-dates__label">First Online: </span><span class="article-dates__first-online"><time datetime="2005-06-09">09 June 2005</time></span></div><div class="article-dates__history"></div></div></div></div><span id="test-SeriesTitle" class="vol-info">
Part of the
<a class="gtm-book-series-link" href="/bookseries/558">Lecture Notes in Computer Science</a>
book series (LNCS, volume 1000)</span></div><section class="Abstract" id="Abs1" tabindex="-1" lang="en"><h2 class="Heading">Abstract</h2><p class="Para">The transaction concept provides a central paradigm for correctly synchronizing concurrent activities and for achieving reliability in database systems. In transaction modeling and processing, theory and practice influence each other a lot, and over the years the transaction concept has undergone a considerable evolution from a pure implementation vehicle to a powerful abstraction concept. This survey deals with conceptual issues in designing transaction <em class="EmphasisTypeItalic ">models</em>, and with approaches to specify correctness of concurrent transaction executions (schedules). As will be described, there is a vastly uniform methodology for putting these aspects to work, which is illustrated by examples ranging from simple reads and writes to semantically rich operations. In addition, the survey covers novel transaction models, whose goal is to adequately support a variety of requirements arising in modern database applications.</p></section><div class="article-actions--inline" id="article-actions--inline" data-component="article-actions--inline"></div><section id="Sample" class="pdf-preview"><h2 class="Heading">Preview</h2><object id="test-pdf-preview" class="pdf-preview__embed pdf-preview__embed--height" data="//page-one.live.cf.public.springer.com/pdf/preview/10.1007/BFb0015267" type="application/pdf" width="100%" data-component="SpringerLink.PdfPreview"><p class="u-interface" data-fallback-text="true">Unable to display preview. <a href="//page-one.live.cf.public.springer.com/pdf/preview/10.1007/BFb0015267" target="_blank" rel="noopener noreferrer">Download preview PDF.</a></p></object><p class="pdf-preview__info u-interface">Unable to display preview. <a href="//page-one.live.cf.public.springer.com/pdf/preview/10.1007/BFb0015267" target="_blank" rel="noopener noreferrer">Download preview PDF.</a></p></section><section class="Section1 RenderAsSection1" id="Bib35" tabindex="-1"><h3 class="Heading">References</h3><div class="content"><ol class="BibliographyWrapper"><li class="Citation"><div class="CitationNumber">1.</div><div class="CitationContent" id="CR1">Abiteboul, S., Vianu, V.: Equivalence and optimization of relational transactions. <em class="EmphasisTypeItalic ">J. ACM</em> 35 (1988) 70–120.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/42267.42271"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Equivalence%20and%20optimization%20of%20relational%20transactions&author=S..%20Abiteboul&author=V..%20Vianu&journal=J.%20ACM&volume=35&pages=70-120&publication_year=1988"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">2.</div><div class="CitationContent" id="CR2">Agrawal, D., El Abbadi, A.: Locks with constrained sharing. In: <em class="EmphasisTypeItalic ">Proc. 9th Annual ACM Symp. on Principles of Database Systems</em>, 1990, pp. 85–93.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="https://scholar.google.com/scholar?q=Agrawal%2C%20D.%2C%20El%20Abbadi%2C%20A.%3A%20Locks%20with%20constrained%20sharing.%20In%3A%20Proc.%209th%20Annual%20ACM%20Symp.%20on%20Principles%20of%20Database%20Systems%2C%201990%2C%20pp.%2085%E2%80%9393."><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">3.</div><div class="CitationContent" id="CR3">Agrawal, D., El Abbadi, A., Lang, A.E.:The performance of protocols based on locks with ordered sharing. <em class="EmphasisTypeItalic ">IEEE Trans. Knowledge and Data Engineering</em> 6 (1994) 805–818.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1109/69.317708"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=The%20performance%20of%20protocols%20based%20on%20locks%20with%20ordered%20sharing&author=D..%20Agrawal&author=A..%20Abbadi&author=A.E..%20Lang&journal=IEEE%20Trans.%20Knowledge%20and%20Data%20Engineering&volume=6&pages=805-818&publication_year=1994"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">4.</div><div class="CitationContent" id="CR4">Agrawal, D., El Abbadi, A., Singh, A.K.: Consistency and orderability: semantics-based correctness criteria for databases. <em class="EmphasisTypeItalic ">ACM Trans. Database Systems</em> 18 (1993) 460–486.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/155271.155276"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Consistency%20and%20orderability%3A%20semantics-based%20correctness%20criteria%20for%20databases&author=D..%20Agrawal&author=A..%20Abbadi&author=A.K..%20Singh&journal=ACM%20Trans.%20Database%20Systems&volume=18&pages=460-486&publication_year=1993"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">5.</div><div class="CitationContent" id="CR5">Alonso, G., Vingralek, R., Agrawal, D., Breitbart, Y., El Abbadi, A., Schek H.-J., Weikum, G.: Unifying concurrency control and recovery of transactions. <em class="EmphasisTypeItalic ">Information Systems</em> 19 (1994) 101–115.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0306-4379(94)90029-9"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Unifying%20concurrency%20control%20and%20recovery%20of%20transactions&author=G..%20Alonso&author=R..%20Vingralek&author=D..%20Agrawal&author=Y..%20Breitbart&author=A..%20Abbadi&author=H.-J..%20Schek&author=G..%20Weikum&journal=Information%20Systems&volume=19&pages=101-115&publication_year=1994"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">6.</div><div class="CitationContent" id="CR6">Beeri, C., Bernstein, P.A., Goodman, N.: A model for concurrency in nested transaction systems. <em class="EmphasisTypeItalic ">J. ACM</em> 36 (1989) 230–269.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/62044.62046"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=A%20model%20for%20concurrency%20in%20nested%20transaction%20systems&author=C..%20Beeri&author=P.A..%20Bernstein&author=N..%20Goodman&journal=J.%20ACM&volume=36&pages=230-269&publication_year=1989"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">7.</div><div class="CitationContent" id="CR7">Bernstein, P.A., Goodman, N.: Multiversion concurrency control — theory and algorithms. <em class="EmphasisTypeItalic ">ACM Trans. Database Systems</em> 8 (1983) 465–483.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/319996.319998"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Multiversion%20concurrency%20control%20%E2%80%94%20theory%20and%20algorithms&author=P.A..%20Bernstein&author=N..%20Goodman&journal=ACM%20Trans.%20Database%20Systems&volume=8&pages=465-483&publication_year=1983"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">8.</div><div class="CitationContent" id="CR8">Bernstein, P.A., Goodman, N.: Serializability theory for replicated databases. <em class="EmphasisTypeItalic ">J. Computer and System Sciences</em> 31 (1985) 355–374.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0022-0000(85)90058-3"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Serializability%20theory%20for%20replicated%20databases&author=P.A..%20Bernstein&author=N..%20Goodman&journal=J.%20Computer%20and%20System%20Sciences&volume=31&pages=355-374&publication_year=1985"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">9.</div><div class="CitationContent" id="CR9">Bernstein, P.A., Hadzilacos, V., Goodman, N.: <em class="EmphasisTypeItalic ">Concurrency Control and Recovery in Database Systems</em>. Addison-Wesley Publishing Comp., Reading, MA, 1987.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Concurrency%20Control%20and%20Recovery%20in%20Database%20Systems&author=P.A..%20Bernstein&author=V..%20Hadzilacos&author=N..%20Goodman&publication_year=1987"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">10.</div><div class="CitationContent" id="CR10">Biliris, A., Dar, S., Gehani, N., Jagadish, H.V., Ramamritham, K.: ASSET: A system for supporting extended transactions. In: <em class="EmphasisTypeItalic ">Proc. ACM SIGMOD Int. Conf. on Management of Data</em>, 1994, pp. 44–54.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="https://scholar.google.com/scholar?q=Biliris%2C%20A.%2C%20Dar%2C%20S.%2C%20Gehani%2C%20N.%2C%20Jagadish%2C%20H.V.%2C%20Ramamritham%2C%20K.%3A%20ASSET%3A%20A%20system%20for%20supporting%20extended%20transactions.%20In%3A%20Proc.%20ACM%20SIGMOD%20Int.%20Conf.%20on%20Management%20of%20Data%2C%201994%2C%20pp.%2044%E2%80%9354."><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">11.</div><div class="CitationContent" id="CR11">Breitbart, Y., Garcia-Molina, H., Silberschatz, A.: Overview of multidatabase transaction management. <em class="EmphasisTypeItalic ">The VLDB Journal</em> 1 (1992) 181–239.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1007/BF01231700"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Overview%20of%20multidatabase%20transaction%20management&author=Y..%20Breitbart&author=H..%20Garcia-Molina&author=A..%20Silberschatz&journal=The%20VLDB%20Journal&volume=1&pages=181-239&publication_year=1992"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">12.</div><div class="CitationContent" id="CR12">Breitbart, Y., Georgakopoulos, D., Rusinkiewicz, M., Silberschatz, A.: On rigorous transaction scheduling. <em class="EmphasisTypeItalic ">IEEE Trans. Software Engineering</em> 17 (1991) 954–960.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1109/32.92915"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=On%20rigorous%20transaction%20scheduling&author=Y..%20Breitbart&author=D..%20Georgakopoulos&author=M..%20Rusinkiewicz&author=A..%20Silberschatz&journal=IEEE%20Trans.%20Software%20Engineering&volume=17&pages=954-960&publication_year=1991"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">13.</div><div class="CitationContent" id="CR13">Cellary, W., Gelenbe, E., Morzy, T.: <em class="EmphasisTypeItalic ">Concurrency Control in Distributed Database Systems</em>. North-Holland, Amsterdam, 1988.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Concurrency%20Control%20in%20Distributed%20Database%20Systems&author=W..%20Cellary&author=E..%20Gelenbe&author=T..%20Morzy&publication_year=1988"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">14.</div><div class="CitationContent" id="CR14">Chrysanthis, P.K., Ramamritham, K.: Synthesis of extended transaction models using ACTA. <em class="EmphasisTypeItalic ">ACM Trans. Database Systems</em> 19 (1994) 450–491.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/185827.185843"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Synthesis%20of%20extended%20transaction%20models%20using%20ACTA&author=P.K..%20Chrysanthis&author=K..%20Ramamritham&journal=ACM%20Trans.%20Database%20Systems&volume=19&pages=450-491&publication_year=1994"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">15.</div><div class="CitationContent" id="CR15">Elmagarmid, A.K.: <em class="EmphasisTypeItalic ">Database Transaction Models for Advanced Applications</em>. Morgan Kaufmann, San Francisco, CA, 1992.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Database%20Transaction%20Models%20for%20Advanced%20Applications&author=A.K..%20Elmagarmid&publication_year=1992"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">16.</div><div class="CitationContent" id="CR16">Eswaran, K.P., Gray, J.N., Lorie, R.A., Traiger, I.L.: The notions of consistency and predicate locks in a database system. <em class="EmphasisTypeItalic ">Comm. ACM</em> 19 (1976) 624–633.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/360363.360369"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=The%20notions%20of%20consistency%20and%20predicate%20locks%20in%20a%20database%20system&author=K.P..%20Eswaran&author=J.N..%20Gray&author=R.A..%20Lorie&author=I.L..%20Traiger&journal=Comm.%20ACM&volume=19&pages=624-633&publication_year=1976"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">17.</div><div class="CitationContent" id="CR17">Georgakopoulos, D., Hornick, M., Krychniak, P., Manola, F.: Specification and management of extended transactions in a programmable transaction environment. In: <em class="EmphasisTypeItalic ">Proc. 10th IEEE Int. Conf. on Data Engineering</em>, 1994, pp. 462–473.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="https://scholar.google.com/scholar?q=Georgakopoulos%2C%20D.%2C%20Hornick%2C%20M.%2C%20Krychniak%2C%20P.%2C%20Manola%2C%20F.%3A%20Specification%20and%20management%20of%20extended%20transactions%20in%20a%20programmable%20transaction%20environment.%20In%3A%20Proc.%2010th%20IEEE%20Int.%20Conf.%20on%20Data%20Engineering%2C%201994%2C%20pp.%20462%E2%80%93473."><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">18.</div><div class="CitationContent" id="CR18">Gray, J.: Notes on data base operating systems. In R. Bayer, R.M. Graham, and G. Seegmüller (Eds.): <em class="EmphasisTypeItalic ">Operating Systems — An Advanced Course</em>. Lecture Notes in Computer Science, Vol. 60, Springer-Verlag, Berlin, 1978, pp. 393–481.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Notes%20on%20data%20base%20operating%20systems&author=J..%20Gray&pages=393-481&publication_year=1978"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">19.</div><div class="CitationContent" id="CR19">Gray, J., Reuter, A.: <em class="EmphasisTypeItalic ">Transaction Processing: Concepts and Techniques</em>. Morgan Kaufmann, San Francisco, CA, 1993.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Transaction%20Processing%3A%20Concepts%20and%20Techniques&author=J..%20Gray&author=A..%20Reuter&publication_year=1993"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">20.</div><div class="CitationContent" id="CR20">Hadzilacos, T., Hadzilacos, V.: Transaction synchronization in object bases. <em class="EmphasisTypeItalic ">J. Computer and System Sciences</em> 43 (1991) 2–24.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0022-0000(91)90030-9"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Transaction%20synchronization%20in%20object%20bases&author=T..%20Hadzilacos&author=V..%20Hadzilacos&journal=J.%20Computer%20and%20System%20Sciences&volume=43&pages=2-24&publication_year=1991"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">21.</div><div class="CitationContent" id="CR21">Hadzilacos, T., Papadimitriou, C.H.: Algorithmic aspects of multiversion concurrency control. <em class="EmphasisTypeItalic ">J. Computer and System Sciences</em> 33 (1986) 297–310.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0022-0000(86)90022-X"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Algorithmic%20aspects%20of%20multiversion%20concurrency%20control&author=T..%20Hadzilacos&author=C.H..%20Papadimitriou&journal=J.%20Computer%20and%20System%20Sciences&volume=33&pages=297-310&publication_year=1986"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">22.</div><div class="CitationContent" id="CR22">Hadzilacos, V.: A theory of reliability in database systems. <em class="EmphasisTypeItalic ">J. ACM</em> 35 (1988) 121–145.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/42267.42272"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=A%20theory%20of%20reliability%20in%20database%20systems&author=V..%20Hadzilacos&journal=J.%20ACM&volume=35&pages=121-145&publication_year=1988"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">23.</div><div class="CitationContent" id="CR23">Korth, H.F., Speegle, G.: Formal aspects of concurrency control in long-duration transaction systems using the NT/PV model. <em class="EmphasisTypeItalic ">ACM Trans. Database Systems</em> 19 (1994) 492–535.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/185827.185854"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Formal%20aspects%20of%20concurrency%20control%20in%20long-duration%20transaction%20systems%20using%20the%20NT%2FPV%20model&author=H.F..%20Korth&author=G..%20Speegle&journal=ACM%20Trans.%20Database%20Systems&volume=19&pages=492-535&publication_year=1994"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">24.</div><div class="CitationContent" id="CR24">Lausen, G.: Formal aspects of optimistic concurrency control in a multiple version database system. <em class="EmphasisTypeItalic ">Information Systems</em> 8 (1983) 291–301.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0306-4379(83)90015-7"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Formal%20aspects%20of%20optimistic%20concurrency%20control%20in%20a%20multiple%20version%20database%20system&author=G..%20Lausen&journal=Information%20Systems&volume=8&pages=291-301&publication_year=1983"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">25.</div><div class="CitationContent" id="CR25">Lynch, N., Merritt, M.: Introduction to the theory of nested transactions. <em class="EmphasisTypeItalic ">Theoretical Computer Science</em> 62 (1988) 123–185.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0304-3975(86)90014-9"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Introduction%20to%20the%20theory%20of%20nested%20transactions&author=N..%20Lynch&author=M..%20Merritt&journal=Theoretical%20Computer%20Science&volume=62&pages=123-185&publication_year=1988"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">26.</div><div class="CitationContent" id="CR26">Lynch, N., Merritt, M., Weihl, W., Fekete, A.: <em class="EmphasisTypeItalic ">Atomic Transactions</em>. Morgan Kaufmann, San Francisco, CA, 1994.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Atomic%20Transactions&author=N..%20Lynch&author=M..%20Merritt&author=W..%20Weihl&author=A..%20Fekete&publication_year=1994"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">27.</div><div class="CitationContent" id="CR27">Morzy, T.: The correctness of concurrency control for multiversion database systems with limited number of versions. In: <em class="EmphasisTypeItalic ">Proc. 9th IEEE Int. Conf. on Data Engineering</em>, 1993, pp. 595–604.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="https://scholar.google.com/scholar?q=Morzy%2C%20T.%3A%20The%20correctness%20of%20concurrency%20control%20for%20multiversion%20database%20systems%20with%20limited%20number%20of%20versions.%20In%3A%20Proc.%209th%20IEEE%20Int.%20Conf.%20on%20Data%20Engineering%2C%201993%2C%20pp.%20595%E2%80%93604."><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">28.</div><div class="CitationContent" id="CR28">Moss, J.E.B.: <em class="EmphasisTypeItalic ">Nested Transactions: An Approach to Reliable Distributed Computing</em>. MIT Press, Cambridge, MA, 1985.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Nested%20Transactions%3A%20An%20Approach%20to%20Reliable%20Distributed%20Computing&author=J.E.B..%20Moss&publication_year=1985"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">29.</div><div class="CitationContent" id="CR29">Papadimitriou, C.H.: The serializability of concurrent database updates. <em class="EmphasisTypeItalic ">J. ACM</em> 26 (1979) 631–653.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/322154.322158"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=The%20serializability%20of%20concurrent%20database%20updates&author=C.H..%20Papadimitriou&journal=J.%20ACM&volume=26&pages=631-653&publication_year=1979"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">30.</div><div class="CitationContent" id="CR30">Papadimitriou, C.H.: <em class="EmphasisTypeItalic ">The Theory of Database Concurrency Control</em>. Computer Science Press, Rockville, MD, 1986.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=The%20Theory%20of%20Database%20Concurrency%20Control&author=C.H..%20Papadimitriou&publication_year=1986"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">31.</div><div class="CitationContent" id="CR31">Papadimitriou, C.H., Kanellakis, P.C.: On concurrency control by multiple versions. <em class="EmphasisTypeItalic ">ACM Trans. Database Systems</em> 9 (1984) 89–99.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/348.318588"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=On%20concurrency%20control%20by%20multiple%20versions&author=C.H..%20Papadimitriou&author=P.C..%20Kanellakis&journal=ACM%20Trans.%20Database%20Systems&volume=9&pages=89-99&publication_year=1984"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">32.</div><div class="CitationContent" id="CR32">Rastogi, R., Mehrotra, S., Breitbart, Y., Korth, H.F., Silberschatz, A.: On correctness of non-serializable executions. In: <em class="EmphasisTypeItalic ">Proc. 12th ACM SIGACT-SIGMOD-SIGART Symp. Principles of Database Systems</em>, 1993, pp. 97–108.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="https://scholar.google.com/scholar?q=Rastogi%2C%20R.%2C%20Mehrotra%2C%20S.%2C%20Breitbart%2C%20Y.%2C%20Korth%2C%20H.F.%2C%20Silberschatz%2C%20A.%3A%20On%20correctness%20of%20non-serializable%20executions.%20In%3A%20Proc.%2012th%20ACM%20SIGACT-SIGMOD-SIGART%20Symp.%20Principles%20of%20Database%20Systems%2C%201993%2C%20pp.%2097%E2%80%93108."><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">33.</div><div class="CitationContent" id="CR33">Raz, Y.: The principle of commitment ordering, or guaranteeing serializability in a heterogeneous environment of multiple autonomous resource managers using atomic commitment. In: <em class="EmphasisTypeItalic ">Proc. 18th Int. Conf. on Very Large Data Bases</em>, 1992, pp. 292–312.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="https://scholar.google.com/scholar?q=Raz%2C%20Y.%3A%20The%20principle%20of%20commitment%20ordering%2C%20or%20guaranteeing%20serializability%20in%20a%20heterogeneous%20environment%20of%20multiple%20autonomous%20resource%20managers%20using%20atomic%20commitment.%20In%3A%20Proc.%2018th%20Int.%20Conf.%20on%20Very%20Large%20Data%20Bases%2C%201992%2C%20pp.%20292%E2%80%93312."><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">34.</div><div class="CitationContent" id="CR34">Raz, Y.: Serializability by commitment ordering. <em class="EmphasisTypeItalic ">Inf. Proc. Letters</em> 51 (1994) 257–264.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0020-0190(94)90005-1"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Serializability%20by%20commitment%20ordering&author=Y..%20Raz&journal=Inf.%20Proc.%20Letters&volume=51&pages=257-264&publication_year=1994"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">35.</div><div class="CitationContent" id="CR35">Rusinkiewicz, M., Sheth, A.: Specification and execution of transactional work-flows. In W. Kim (ed.): <em class="EmphasisTypeItalic ">Modern Database Systems</em>. Addison-Wesley Publishing Comp., Reading, MA, 1995, pp. 592–620.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Specification%20and%20execution%20of%20transactional%20work-flows&author=M..%20Rusinkiewicz&author=A..%20Sheth&pages=592-620&publication_year=1995"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">36.</div><div class="CitationContent" id="CR36">Salem, K., Garcia-Molina, H., Shands, J.: Altruistic locking. <em class="EmphasisTypeItalic ">ACM Trans. Database Systems</em> 19 (1994) 117–165.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/174638.174639"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Altruistic%20locking&author=K..%20Salem&author=H..%20Garcia-Molina&author=J..%20Shands&journal=ACM%20Trans.%20Database%20Systems&volume=19&pages=117-165&publication_year=1994"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">37.</div><div class="CitationContent" id="CR37">Schek, H.J., Weikum, G., Ye, H.: (1993). Towards a unified theory of concurrency control and recovery. In: <em class="EmphasisTypeItalic ">Proc. 12th ACM SIGACT-SIGMOD-SIGART Symp. Principles of Database Systems</em>, 1993, pp. 300–311.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="https://scholar.google.com/scholar?q=Schek%2C%20H.J.%2C%20Weikum%2C%20G.%2C%20Ye%2C%20H.%3A%20%281993%29.%20Towards%20a%20unified%20theory%20of%20concurrency%20control%20and%20recovery.%20In%3A%20Proc.%2012th%20ACM%20SIGACT-SIGMOD-SIGART%20Symp.%20Principles%20of%20Database%20Systems%2C%201993%2C%20pp.%20300%E2%80%93311."><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">38.</div><div class="CitationContent" id="CR38">Schwarz, P.M., Spector, A.Z.: Synchronizing shared abstract types. <em class="EmphasisTypeItalic ">ACM Trans. Computer Systems</em> 2 (1984) 223–250.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/989.1188"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Synchronizing%20shared%20abstract%20types&author=P.M..%20Schwarz&author=A.Z..%20Spector&journal=ACM%20Trans.%20Computer%20Systems&volume=2&pages=223-250&publication_year=1984"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">39.</div><div class="CitationContent" id="CR39">Soisalon-Soininen, E., Ylönen, T.: Partial strictness in two-phase locking. In: G. Gottlob, M.Y. Vardi (Eds.), <em class="EmphasisTypeItalic ">Database Theory — ICDT '95</em>, Proc. 5th Int. Conference, Lecture Notes in Computer Science, Vol. 893, Springer-Verlag, Berlin, 1995, pp. 139–147.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Partial%20strictness%20in%20two-phase%20locking&author=E..%20Soisalon-Soininen&author=T..%20Yl%C3%B6nen&pages=139-147&publication_year=1995"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">40.</div><div class="CitationContent" id="CR40">Vianu, V., Vossen, G.: Conceptual level concurrency control for relational update transactions. <em class="EmphasisTypeItalic ">Theoretical Computer Science</em> 95 (1992) 1–42.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0304-3975(92)90065-N"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceAMSID"><a class="gtm-reference" data-reference-type="MathSciNet" target="_blank" rel="noopener noreferrer" href="http://www.ams.org/mathscinet-getitem?mr=MR1157796"><span><span>MathSciNet</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Conceptual%20level%20concurrency%20control%20for%20relational%20update%20transactions&author=V..%20Vianu&author=G..%20Vossen&journal=Theoretical%20Computer%20Science&volume=95&pages=1-42&publication_year=1992"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">41.</div><div class="CitationContent" id="CR41">Vianu, V., Vossen, G.: Static and dynamic aspects of goal-oriented concurrency control. <em class="EmphasisTypeItalic ">Annals of Mathematics and Artificial Intelligence</em> 7 (1993) 257–287.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1007/BF01556355"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Static%20and%20dynamic%20aspects%20of%20goal-oriented%20concurrency%20control&author=V..%20Vianu&author=G..%20Vossen&journal=Annals%20of%20Mathematics%20and%20Artificial%20Intelligence&volume=7&pages=257-287&publication_year=1993"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">42.</div><div class="CitationContent" id="CR42">Vingralek, R., Ye, H., Breitbart, Y., Schek, H.-J.: Unified transaction model for semantically rich operations. In: G. Gottlob, M.Y. Vardi (Eds.), <em class="EmphasisTypeItalic ">Database Theory — ICDT '95</em>, Proc. 5th Int. Conference, Lecture Notes in Computer Science, Vol. 893, Springer-Verlag, Berlin, 1995, pp. 148–161.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Unified%20transaction%20model%20for%20semantically%20rich%20operations&author=R..%20Vingralek&author=H..%20Ye&author=Y..%20Breitbart&author=H.-J..%20Schek&pages=148-161&publication_year=1995"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">43.</div><div class="CitationContent" id="CR43">Vossen, G.: Databases and database management. In: E.G. Coffman, J.K. Lenstra, A.H.G. Rinnooy Kan (Eds.): <em class="EmphasisTypeItalic ">Handbooks in Operations Research and Management Science</em>, Vol. 3: <em class="EmphasisTypeItalic ">Computing</em>. North-Holland, Amsterdam, 1992, pp. 133–193.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Databases%20and%20database%20management&author=G..%20Vossen&pages=133-193&publication_year=1992"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">44.</div><div class="CitationContent" id="CR44">Vossen, G., Groß-Hardt, M.: <em class="EmphasisTypeItalic ">Grundlagen der Transaktionsverarbeitung</em>. Addison-Wesley, Bonn, 1993.<span class="Occurrences"><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Grundlagen%20der%20Transaktionsverarbeitung&author=G..%20Vossen&author=M..%20Gro%C3%9F-Hardt&publication_year=1993"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">45.</div><div class="CitationContent" id="CR45">Weihl, W.: Local atomicity properties: modular concurrency control for abstract data types. <em class="EmphasisTypeItalic ">ACM Trans. Programming Languages and Systems</em> 11 (1989) 249–282.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/63264.63518"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Local%20atomicity%20properties%3A%20modular%20concurrency%20control%20for%20abstract%20data%20types&author=W..%20Weihl&journal=ACM%20Trans.%20Programming%20Languages%20and%20Systems&volume=11&pages=249-282&publication_year=1989"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">46.</div><div class="CitationContent" id="CR46">Weihl, W.: The impact of recovery on concurrency control. <em class="EmphasisTypeItalic ">J. Computer and System Sciences</em> 47 (1993) 157–184.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1016/0022-0000(93)90023-P"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=The%20impact%20of%20recovery%20on%20concurrency%20control&author=W..%20Weihl&journal=J.%20Computer%20and%20System%20Sciences&volume=47&pages=157-184&publication_year=1993"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">47.</div><div class="CitationContent" id="CR47">Weikum, G.: Principles and realization strategies of multilevel transaction management. <em class="EmphasisTypeItalic ">ACM Trans. Database Systems</em> 16 (1991) 132–180.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/103140.103145"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Principles%20and%20realization%20strategies%20of%20multilevel%20transaction%20management&author=G..%20Weikum&journal=ACM%20Trans.%20Database%20Systems&volume=16&pages=132-180&publication_year=1991"><span><span>Google Scholar</span></span></a></span></span></div></li><li class="Citation"><div class="CitationNumber">48.</div><div class="CitationContent" id="CR48">Yannakakis, M.: Serializability by locking. <em class="EmphasisTypeItalic ">J. ACM</em> 31 (1984) 227–244.<span class="Occurrences"><span class="Occurrence OccurrenceDOI"><a class="gtm-reference" data-reference-type="CrossRef" target="_blank" rel="noopener noreferrer" href="https://doi.org/10.1145/62.322425"><span><span>CrossRef</span></span></a></span><span class="Occurrence OccurrenceGS"><a target="_blank" rel="noopener noreferrer" class="google-scholar-link gtm-reference" data-reference-type="Google Scholar" href="http://scholar.google.com/scholar_lookup?title=Serializability%20by%20locking&author=M..%20Yannakakis&journal=J.%20ACM&volume=31&pages=227-244&publication_year=1984"><span><span>Google Scholar</span></span></a></span></span></div></li></ol></div></section><section class="Section1 RenderAsSection1"><h2 class="Heading" id="copyrightInformation">Copyright information</h2><div class="ArticleCopyright content"><div class="ChapterCopyright">© Springer-Verlag 1995</div></div></section><section id="authorsandaffiliations" class="Section1 RenderAsSection1"><h2 class="Heading">Authors and Affiliations</h2><div class="content authors-affiliations u-interface"><ul class="test-contributor-names"><li itemscope="" itemtype="http://schema.org/Person" class="u-mb-2 u-pt-4 u-pb-4"><span itemprop="name" class="authors-affiliations__name">Gottfried Vossen</span><ul class="authors-affiliations__indexes u-inline-list" data-role="AuthorsIndexes"><li data-affiliation="affiliation-1">1</li></ul></li></ul><ol class="test-affiliations"><li class="affiliation" data-test="affiliation-1" data-affiliation-highlight="affiliation-1" itemscope="" itemtype="http://schema.org/Organization"><span class="affiliation__count">1.</span><span class="affiliation__item"><span itemprop="department" class="affiliation__department">Institut für Wirtschaftsinformatik</span><span itemprop="name" class="affiliation__name">Universität Münster</span><span itemprop="city" class="affiliation__city">Münster</span><span itemprop="country" class="affiliation__country">Germany</span></span></li></ol></div></section></div>
</article>
<aside class="content-type-about" id="AboutThisContent">
<h2 class="Heading" id="aboutcontent">About this chapter</h2>
<div class="content bibliographic-information">
<div class="crossmark__adjacent">
<dl class="citation-info u-highlight-target u-mb-16" id="citeas">
<dt class="test-cite-heading">
Cite this chapter as:
</dt>
<dd id="citethis-text">Vossen G. (1995) Database transaction models. In: van Leeuwen J. (eds) Computer Science Today. Lecture Notes in Computer Science, vol 1000. Springer, Berlin, Heidelberg</dd>
</dl>
<ul class="bibliographic-information__list bibliographic-information__list--inline">
<li class="bibliographic-information__item">
<span class="bibliographic-information__title"><abbr title="Digital Object Identifier">DOI</abbr></span>
<span class="bibliographic-information__value u-overflow-wrap" id="doi-url">https://doi.org/10.1007/BFb0015267</span>
</li>
<li class="bibliographic-information__item">
<span class="bibliographic-information__title">Publisher Name</span>
<span class="bibliographic-information__value" id="publisher-name">Springer, Berlin, Heidelberg</span>
</li>
<li class="bibliographic-information__item">
<span class="bibliographic-information__title">Print ISBN</span>
<span class="bibliographic-information__value" id="print-isbn">978-3-540-60105-0</span>
</li>
<li class="bibliographic-information__item ">
<span class="bibliographic-information__title">Online ISBN</span>
<span class="bibliographic-information__value" id="electronic-isbn">978-3-540-49435-5</span>
</li>
<li class="bibliographic-information__item">
<span class="bibliographic-information__title">eBook Packages</span>
<span class="bibliographic-information__value">
<a id="ebook-package" href="http://www.springer.com/gb/librarians/marc">Springer Book Archive</a>
</span>
</li>
</ul>
<ul class="bibliographic-information__list">
<li class="bibliographic-information__item">
<a id="about-book" href="//www.springer.com/978-3-540-60105-0?wt_mc=ThirdParty.SpringerLink.3.EPR653.About_eBook" class="gtm-about-this " >About this book</a>
</li>
<li class="bibliographic-information__item">
<a id="reprintsandpermissions-link" class="u-external" target="_blank" rel="noopener noreferrer" href="https://s100.copyright.com/AppDispatchServlet?publisherName=Springer&orderBeanReset=true&orderSource=SpringerLink&author=Gottfried+Vossen&contentID=10.1007%2FBFb0015267&openAccess=false&endPage=574&publicationDate=1995&startPage=560&title=Database+transaction+models&imprint=Springer-Verlag&publication=eBook&authorAddress=Grevenerstra%C3%9Fe+91%2C+D-48159%2C+M%C3%BCnster%2C+Germany" title="Visit RightsLink for information about reusing this chapter">Reprints and Permissions</a>
</li>
</ul>
</div>
</div>
</aside>
<div class="collapsible-section uptodate-recommendations gtm-recommendations">
<h2 class="uptodate-recommendations__title collapsible-section__heading gtm-recommendations__title" id="uptodaterecommendations">Personalised recommendations</h2>
<div class="collapsible-section__content">
<div class="uptodate-recommendations__container">
<link rel="uptodate-inline" href="/springerlink-static/274007506/css/recommendations.css"/>
</div>
</div>
</div>
<div class="sticky-banner sticky-banner--buybox u-interface u-js-screenreader-only" aria-hidden="true" data-component="SpringerLink.StickyBanner" data-namespace="hasLink">
<div class="sticky-banner__container">
<div class="citations" data-component="SV.Dropdown" data-namespace="citationsSticky">
<h3 class="u-h4" data-role="button-dropdown__title">
<span>Cite</span>
<span class="hide-text-small">chapter</span>
</h3>
<ul class="citations__content" data-role="button-dropdown__content">
<li>
<a href="#citeas" class="gtm-cite-dropdown">How to cite?</a>
</li>
<li>
<a href="//citation-needed.springer.com/v2/references/10.1007/BFb0015267?format=refman&flavour=citation"
title="Download this chapter's citation as a .RIS file" class="gtm-export-citation" data-gtmlabel="RIS">
<span class="citations__extension" data-gtmlabel="RIS">
<svg class="u-vertical-align-absolute" width="12" height="14" viewBox="0 0 12 14" xmlns="http://www.w3.org/2000/svg"><path d="M7 7.269v-6.271c0-.551-.448-.998-1-.998-.556 0-1 .447-1 .998v6.271l-1.5-1.547c-.375-.387-1.01-.397-1.401-.006l.016-.016c-.397.397-.391 1.025-.001 1.416l3.178 3.178c.392.392 1.024.391 1.415 0l3.178-3.178c.392-.392.391-1.025-.001-1.416l.016.016c-.397-.397-1.018-.388-1.401.006l-1.5 1.547zm-7 5.731c0-.552.456-1 1.002-1h9.995c.554 0 1.002.444 1.002 1 0 .552-.456 1-1.002 1h-9.995c-.554 0-1.002-.444-1.002-1z" fill="#0176C3"/></svg>
.RIS
</span>
<span class="citations__types">
<span>
Papers
</span>
<span>
Reference Manager
</span>
<span>
RefWorks
</span>
<span>
Zotero
</span>
</span>
</a>
</li>
<li>
<a href="//citation-needed.springer.com/v2/references/10.1007/BFb0015267?format=endnote&flavour=citation"
title="Download this chapter's citation as a .ENW file" class="gtm-export-citation" data-gtmlabel="ENW">
<span class="citations__extension" data-gtmlabel="ENW">
<svg class="u-vertical-align-absolute" width="12" height="14" viewBox="0 0 12 14" xmlns="http://www.w3.org/2000/svg"><path d="M7 7.269v-6.271c0-.551-.448-.998-1-.998-.556 0-1 .447-1 .998v6.271l-1.5-1.547c-.375-.387-1.01-.397-1.401-.006l.016-.016c-.397.397-.391 1.025-.001 1.416l3.178 3.178c.392.392 1.024.391 1.415 0l3.178-3.178c.392-.392.391-1.025-.001-1.416l.016.016c-.397-.397-1.018-.388-1.401.006l-1.5 1.547zm-7 5.731c0-.552.456-1 1.002-1h9.995c.554 0 1.002.444 1.002 1 0 .552-.456 1-1.002 1h-9.995c-.554 0-1.002-.444-1.002-1z" fill="#0176C3"/></svg>
.ENW
</span>
<span class="citations__types">
<span>
EndNote
</span>
</span>
</a>
</li>
<li>
<a href="//citation-needed.springer.com/v2/references/10.1007/BFb0015267?format=bibtex&flavour=citation"
title="Download this chapter's citation as a .BIB file" class="gtm-export-citation" data-gtmlabel="BIB">
<span class="citations__extension" data-gtmlabel="BIB">
<svg class="u-vertical-align-absolute" width="12" height="14" viewBox="0 0 12 14" xmlns="http://www.w3.org/2000/svg"><path d="M7 7.269v-6.271c0-.551-.448-.998-1-.998-.556 0-1 .447-1 .998v6.271l-1.5-1.547c-.375-.387-1.01-.397-1.401-.006l.016-.016c-.397.397-.391 1.025-.001 1.416l3.178 3.178c.392.392 1.024.391 1.415 0l3.178-3.178c.392-.392.391-1.025-.001-1.416l.016.016c-.397-.397-1.018-.388-1.401.006l-1.5 1.547zm-7 5.731c0-.552.456-1 1.002-1h9.995c.554 0 1.002.444 1.002 1 0 .552-.456 1-1.002 1h-9.995c-.554 0-1.002-.444-1.002-1z" fill="#0176C3"/></svg>
.BIB
</span>
<span class="citations__types">
<span>
BibTeX
</span>
<span>
JabRef
</span>
<span>
Mendeley
</span>
</span>
</a>
</li>
</ul>
</div>
<div class="share-this" data-component="SV.Dropdown" data-namespace="shareThisSticky">
<h3 class="u-h4" data-role="button-dropdown__title">
<span>Share</span>
<span class="hide-text-small">chapter</span>
</h3>
<ul class="share-this__content" data-role="button-dropdown__content">
<li>
<a class="test-shareby-email-link gtm-shareby-email-link" href="mailto:?to=&subject=Read%20this%20chapter%20on%20SpringerLink&body=Database%20transaction%20models%0A%0Ahttps%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267" title="Share this chapter via email">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><g transform="translate(3 5)"><rect fill="#F9F9F9" width="18" height="14" rx="2"/><path d="M1 2.006v9.988c0 .557.446 1.006.995 1.006h14.01c.549 0 .995-.449.995-1.006v-9.988c0-.557-.446-1.006-.995-1.006h-14.01c-.549 0-.995.449-.995 1.006zm-1 0c0-1.108.893-2.006 1.995-2.006h14.01c1.102 0 1.995.897 1.995 2.006v9.988c0 1.108-.893 2.006-1.995 2.006h-14.01c-1.102 0-1.995-.897-1.995-2.006v-9.988zM9 9l7-4v-1.443l-7 4-7-4v1.443z" fill="#666"/></g></g></svg>
<span>Email</span>
</span>
</a>
</li>
<li>
<a class="test-shareby-facebook-link gtm-shareby-facebook-link" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267" target="_blank" rel="noopener noreferrer" title="Share this chapter via Facebook">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><path d="M12.717 19.091h-2.66v-6.274h-1.329v-2.162h1.329v-1.298c0-1.763.75-2.813 2.883-2.813h1.775v2.162h-1.11c-.83 0-.885.302-.885.866l-.004 1.082h2.011l-.235 2.162h-1.775v6.274z" fill="#666"/></g></svg>
<span>Facebook</span>
</span>
</a>
</li>
<li>
<a class="test-shareby-twitter-link gtm-shareby-twitter-link" href="https://twitter.com/intent/tweet?text=I%27m%20reading%20this%20on%20%23springerlink&url=https%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267" target="_blank" rel="noopener noreferrer" title="Share this chapter via Twitter">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><path d="M16.651 9.189c.485-.306.858-.792 1.033-1.371-.454.284-.957.49-1.493.601-.428-.482-1.039-.783-1.715-.783-1.298 0-2.349 1.11-2.349 2.478 0 .194.019.384.06.564-1.952-.104-3.684-1.089-4.843-2.59-.202.367-.318.793-.318 1.247 0 .859.415 1.618 1.045 2.063-.385-.013-.748-.126-1.065-.31v.03c0 1.201.809 2.203 1.886 2.43-.198.058-.405.087-.62.087-.151 0-.299-.015-.442-.044.299.984 1.166 1.702 2.195 1.721-.805.665-1.818 1.061-2.919 1.061-.19 0-.377-.011-.561-.034 1.04.703 2.275 1.113 3.602 1.113 4.323 0 6.686-3.777 6.686-7.052l-.006-.321c.459-.35.859-.786 1.173-1.283-.422.197-.875.33-1.349.39z" fill="#666"/></g></svg>
<span>Twitter</span>
</span>
</a>
</li>
<li>
<a class="test-shareby-linkedin-link gtm-shareby-linkedin-link" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267&title=Database transaction models&summary=The transaction concept provides a central paradigm for correctly synchronizing concurrent activities and for achieving reliability in database systems. In transaction modeling and processing, theory and practice influence each other a lot, and over…" target="_blank" rel="noopener noreferrer" title="Share this chapter via LinkedIn">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><path d="M6.821 10.044h2.126v7.41h-2.126v-7.41zm1.009-.927h-.015c-.77 0-1.269-.566-1.269-1.284 0-.732.514-1.287 1.299-1.287.784 0 1.267.554 1.282 1.285 0 .717-.498 1.286-1.297 1.286zm9.625 8.338h-2.411v-3.835c0-1.004-.377-1.688-1.206-1.688-.634 0-.987.462-1.151.908-.062.159-.052.382-.052.606v4.01h-2.389s.031-6.794 0-7.411h2.389v1.163c.141-.509.904-1.234 2.122-1.234 1.511 0 2.698 1.067 2.698 3.361v4.121z" fill="#666"/></g></svg>
<span>LinkedIn</span>
</span>
</a>
</li>
</ul>
</div>
<div class="sticky-banner__buybox-link sticky-banner__buybox-link--sticky">
<a href="#buy" class="gtm-buybox-anchor">
Buy options
</a>
</div>
</div>
</div>
</div>
<aside class="main-sidebar-right u-interface">
<div data-role="sticky-wrapper">
<div class="main-sidebar-right__content u-composite-layer" data-component="SpringerLink.StickySidebar">
<div class="article-actions" id="article-actions">
<h2 class="u-screenreader-only">Actions</h2>
<div id="buy">
<style type="text/css">
.buybox {
margin: 16px 0 0;
position: relative;
}
.buybox {
font-family: Source Sans Pro, Helvetica, Arial, sans-serif;
font-size: 14px;
font-size: 1.4rem;
}
.buybox {
zoom: 1;
}
.buybox:after,
.buybox:before {
content: '';
display: table;
}
.buybox:after {
clear: both;
}
/*---------------------------------*/
.buybox .buybox__header {
border: 1px solid #b3b3b3;
border-bottom: 0;
padding: 8px;
position: relative;
background-color: #f2f2f2;
}
.buybox__header .buybox__login {
font-family: Source Sans Pro, Helvetica, Arial, sans-serif;
font-size: 14px;
font-size: 1.4rem;
letter-spacing: .017em;
display: inline-block;
line-height: 1.2;
padding: 0;
}
.buybox__header .buybox__login:before {
position: absolute;
top: 50%;
-webkit-transform: perspective(1px) translateY(-50%);
transform: perspective(1px) translateY(-50%);
content: '\A';
width: 34px;
height: 34px;
left: 10px;
}
/*---------------------------------*/
.buybox .buybox__body {
padding: 0;
padding-bottom: 16px;
position: relative;
text-align: center;
background-color: #fcfcfc;
border: 1px solid #b3b3b3;
}
/******/
.buybox__body .buybox__section {
padding: 16px 12px 0 12px;
text-align: left;
}
.buybox__section .buybox__buttons {
text-align: center;
width: 100%;
}
/********** mycopy buybox specific **********/
.buybox.mycopy__buybox .buybox__body {
background-color: transparent;
}
.buybox.mycopy__buybox .buybox__section .buybox__buttons {
border-top: 0;
padding-top: 0;
}
/******/
.buybox__section:nth-child(2) .buybox__buttons {
border-top: 1px solid #b3b3b3;
padding-top: 20px;
}
.buybox__buttons .buybox__buy-button {
display: inline-block;
text-align: center;
margin-bottom: 5px;
padding: 6px 12px;
max-width: 180px
}
.buybox__buttons .buybox__price {
white-space: nowrap;
text-align: center;
font-size: larger;
padding-top: 6px;
}
.buybox__section .buybox__meta {
letter-spacing: 0;
padding-top: 12px;
}
.buybox__section .buybox__meta:only-of-type {
padding-top: 0;
position: relative;
bottom: 6px;
}
/********** mycopy buybox specific **********/
.buybox.mycopy__buybox .buybox__section .buybox__meta {
margin-top: 0;
margin-bottom: 0;
}
/******/
.buybox__meta .buybox__product-title {
display: inline;
font-weight: bold;
}
.buybox__meta .buybox__list {
line-height: 1.3;
}
.buybox__meta .buybox__list li {
position: relative;
padding-left: 1em;
list-style: none;
margin-bottom: 5px;
}
.buybox__meta .buybox__list li:before {
font-size: 1em;
content: '\2022';
float: left;
position: relative;
top: .1em;
font-family: serif;
font-weight: 600;
text-align: center;
line-height: inherit;
color: #666;
width: auto;
margin-left: -1em;
}
.buybox__meta .buybox__list li:last-child {
margin-bottom: 0;
}
/********** chapter buybox specific **********/
.buybox.chapter__buybox .buybox__section .buybox__meta {
border-top: 1px solid #d3d3d3;
padding-top: 12px;
}
.buybox.chapter__buybox .buybox__section .buybox__buy-ebook {
margin-bottom: 12px;
}
/******/
/*---------------------------------*/
.buybox .buybox__footer {
border: 1px solid #b3b3b3;
border-top: 0;
padding: 8px;
position: relative;
border-style: dashed;
line-height: 1.3;
}
/*-----------------------------------------------------------------*/
@media screen and (min-width: 460px) and (max-width: 1074px) {
.buybox__body .buybox__section {
display: inline-block;
vertical-align: top;
padding: 12px 12px;
padding-bottom: 0;
text-align: left;
width: 48%;
}
.buybox__body .buybox__section {
padding-top: 16px;
padding-left: 0;
}
.buybox__section:nth-of-type(2) .buybox__meta {
border-left: 1px solid #d3d3d3;
padding-left: 28px;
}
.buybox__section:nth-of-type(2) .buybox__buttons {
border-top: 0;
padding-top: 0;
padding-left: 16px ;
}
.buybox__buttons .buybox__buy-button {
}
/********** article buybox specific **********/
.buybox.article__buybox .buybox__section:nth-of-type(2) {
margin-top: 16px;
padding-top: 0;
}
.buybox.article__buybox .buybox__section:nth-of-type(2) .buybox__meta {
margin-top: 40px;
padding-top: 0;
padding-bottom: 45px;
}
.buybox.article__buybox .buybox__section:nth-of-type(2) .buybox__meta:only-of-type {
margin-top: 8px;
padding-top: 12px;
padding-bottom: 12px;
}
/********** mycopy buybox specific **********/
.buybox.mycopy__buybox .buybox__section:first-child {
width: 69%;
padding-left: 12px ;
}
.buybox.mycopy__buybox .buybox__section:last-child {
width: 29%;
}
/********** chapter buybox specific **********/
.buybox.chapter__buybox .buybox__body {
display: flex;
align-items: stretch;
padding-left: 12px;
padding-top: 12px;
}
.buybox.chapter__buybox .buybox__section .buybox__meta {
display: flex;
align-items: center;
height: 100%;
border-top: 0;
padding-top: 0;
}
/******/
}
/*-----------------------------------------------------------------*/
@media screen and (max-width: 459px) {
/********** mycopy buybox specific **********/
.buybox.mycopy__buybox .buybox__body {
padding-bottom: 5px;
}
.buybox.mycopy__buybox .buybox__section:last-child {
text-align: center;
width: 100%;
}
.buybox.mycopy__buybox .buybox__buttons {
display: inline-block;
width: 150px ;
}
/******/
}
/*-----------------------------------------------------------------*/
</style>
<div class="buybox chapter__buybox" data-webtrekkTrackId="196033507532344" data-webtrekkContentId="SL-chapter">
<div class="buybox__header">
<span class="buybox__login">Log in to check access</span>
</div>
<div class="buybox__body">
<div class="buybox__section">
<div class="buybox__buttons">
<form class="buybox__form" action="https://checkout.springer.com/checkout/add?wt_mc=ThirdParty.SpringerLink.3.EPR653.AbstractPage_Chapter-new" method="POST">
<input type="hidden" name="type" value="chapter"/>
<input type="hidden" name="doi" value="10.1007/BFb0015267"/>
<input type="hidden" name="isxn" value="978-3-540-49435-5"/>
<input type="hidden" name="contenttitle" value="Database transaction models"/>
<input type="hidden" name="copyrightyear" value="1995"/>
<input type="hidden" name="year" value="2005"/>
<input type="hidden" name="authors" value="Gottfried Vossen"/>
<input type="hidden" name="title" value="Computer Science Today"/>
<input type="hidden" name="mac" value="7158c8e92647ecacbc327d23b5cd9ead"/>
<input type="hidden" name="returnurl" value="https://link.springer.com/chapter/10.1007/BFb0015267?no-access=true"/>
<button
data-product-id="10.1007/BFb0015267_Database transaction models"
data-tracking-category="ppv"
data-eCommerceParam_11="chapter-page"
type="submit"
class="buybox__buy-button c-button c-button--blue"
data-gtm="buybox__buy-button">
<span class="buybox__buy" data-gtm="buybox__buy-button">Buy chapter (PDF)</span>
</button>
<div class="buybox__price" data-gtm="buybox__buy-button">
CHF 24.95
</div>
</form>
</div>
</div>
<div class="buybox__section">
<div class="buybox__meta">
<ul class="buybox__list">
<li>Instant download</li>
<li>Readable on all devices</li>
<li>Own it forever</li>
<li>Local sales tax included if applicable</li>
</ul>
</div>
</div>
</div>
<div class="buybox__footer">
<a class="js-buybox__inst-sub-link" data-gtm="buybox__inst-sub-link" href="http://www.springer.com/gp/shop/subscriptions?wt_mc=ThirdParty.SpringerLink.3.EPR653.ChapterPage_Institutional-customers">
Learn about institutional subscriptions</a>
</div>
</div>
<script>
(function () {
var forEach = function (array, callback, scope) {
for (var i = 0; i < array.length; i++) {
callback.call(scope, i, array[i]);
}
};
var trackDomain = 'springergmbh01.webtrekk.net';
var domain = 'link.springer.com';
var loadEventSent = false;
var buyboxRoot = document.getElementsByClassName('buybox')[0];
var webtrekkTrackId = buyboxRoot.getAttribute('data-webtrekkTrackId');
var webtrekkContentId = buyboxRoot.getAttribute('data-webtrekkContentId');
function SubscriptionTrack(webtrekkTrackId) {
if (!webtrekkTrackId) return;
var data = {
trackDomain: trackDomain,
trackId: webtrekkTrackId,
domain: domain,
contentId: 'springer_com.buybox',
customSessionParameter: {
2: getBusinessPartnerIds()
}
};
if (!window.webtrekkV3 && console) {
console.log('No webtrekk found.', data);
return;
}
return new webtrekkV3(data);
}
function Track(product, webtrekkTrackId, eCommerceParam_11, action) {
if (!product) return;
var data = {
trackDomain: trackDomain,
trackId: webtrekkTrackId,
domain: domain,
contentId: webtrekkContentId,
product: product.id,
productStatus: action,
productCategory: {
1: product.trackingCategory
},
customEcommerceParameter: {
9: domain,
11: eCommerceParam_11
},
customSessionParameter: {
2: getBusinessPartnerIds()
}
};
if (!window.webtrekkV3 && console) {
console.log('No webtrekk found.', data);
return;
}
return new webtrekkV3(data);
}
function trackAddToCart(trackingConfig) {
if (!trackingConfig) return;
trackingConfig.sendinfo();
}
function trackOnLoad(trackingConfig) {
if (loadEventSent) return;
loadEventSent = true;
if (!trackingConfig) return;
trackingConfig.sendinfo();
}
function trackSubscription(trackingConfig) {
if (!trackingConfig) return;
trackingConfig.sendinfo({linkId: 'inst. subscription info'});
}
function getBusinessPartnerIds() {
var businessPartnerIDs = [];
try {
var ids = window.dataLayer[0]["user"]["license"]["businessPartnerID"];
if(ids && ids.length) businessPartnerIDs = ids;
} catch(e) {}
return businessPartnerIDs.join(";");
}
var bindClickLinkHandle = function (link) {
if (!link) return;
link.addEventListener('click', function (event) {
trackSubscription(SubscriptionTrack(webtrekkTrackId));
});
};
var bindLoadButtonHandle = function (button) {
if (!button) return;
var productId = button.getAttribute('data-product-id');
var trackingCategory = button.getAttribute('data-tracking-category');
var eCommerceParam_11 = button.getAttribute('data-eCommerceParam_11');
window.addEventListener('load', function (event) {
trackOnLoad(Track({
id: productId,
trackingCategory: trackingCategory
}, webtrekkTrackId, eCommerceParam_11, 'view'));
});
};
var bindClickButtonHandle = function (button) {
if (!button) return;
var productId = button.getAttribute('data-product-id');
var trackingCategory = button.getAttribute('data-tracking-category');
var eCommerceParam_11 = button.getAttribute('data-eCommerceParam_11');
button.addEventListener('click', function (event) {
trackAddToCart(Track({
id: productId,
trackingCategory: trackingCategory
}, webtrekkTrackId, eCommerceParam_11, 'add'));
});
};
var buyButtons = document.getElementsByClassName('buybox__buy-button');
forEach(buyButtons, function (index, button) {
bindLoadButtonHandle(button);
bindClickButtonHandle(button);
});
var sublinks = document.getElementsByClassName('js-buybox__inst-sub-link');
forEach(sublinks, function (index, link) {
bindClickLinkHandle(link);
});
})();
</script>
</div>
<div class="u-js-hide u-js-show-two-col">
<div class="citations" data-component="SV.Dropdown" data-namespace="citations">
<h3 class="u-h4" data-role="button-dropdown__title">
<span>Cite</span>
<span class="hide-text-small">chapter</span>
</h3>
<ul class="citations__content" data-role="button-dropdown__content">
<li>
<a href="#citeas" class="gtm-cite-dropdown">How to cite?</a>
</li>
<li>
<a href="//citation-needed.springer.com/v2/references/10.1007/BFb0015267?format=refman&flavour=citation"
title="Download this chapter's citation as a .RIS file" class="gtm-export-citation" data-gtmlabel="RIS">
<span class="citations__extension" data-gtmlabel="RIS">
<svg class="u-vertical-align-absolute" width="12" height="14" viewBox="0 0 12 14" xmlns="http://www.w3.org/2000/svg"><path d="M7 7.269v-6.271c0-.551-.448-.998-1-.998-.556 0-1 .447-1 .998v6.271l-1.5-1.547c-.375-.387-1.01-.397-1.401-.006l.016-.016c-.397.397-.391 1.025-.001 1.416l3.178 3.178c.392.392 1.024.391 1.415 0l3.178-3.178c.392-.392.391-1.025-.001-1.416l.016.016c-.397-.397-1.018-.388-1.401.006l-1.5 1.547zm-7 5.731c0-.552.456-1 1.002-1h9.995c.554 0 1.002.444 1.002 1 0 .552-.456 1-1.002 1h-9.995c-.554 0-1.002-.444-1.002-1z" fill="#0176C3"/></svg>
.RIS
</span>
<span class="citations__types">
<span>
Papers
</span>
<span>
Reference Manager
</span>
<span>
RefWorks
</span>
<span>
Zotero
</span>
</span>
</a>
</li>
<li>
<a href="//citation-needed.springer.com/v2/references/10.1007/BFb0015267?format=endnote&flavour=citation"
title="Download this chapter's citation as a .ENW file" class="gtm-export-citation" data-gtmlabel="ENW">
<span class="citations__extension" data-gtmlabel="ENW">
<svg class="u-vertical-align-absolute" width="12" height="14" viewBox="0 0 12 14" xmlns="http://www.w3.org/2000/svg"><path d="M7 7.269v-6.271c0-.551-.448-.998-1-.998-.556 0-1 .447-1 .998v6.271l-1.5-1.547c-.375-.387-1.01-.397-1.401-.006l.016-.016c-.397.397-.391 1.025-.001 1.416l3.178 3.178c.392.392 1.024.391 1.415 0l3.178-3.178c.392-.392.391-1.025-.001-1.416l.016.016c-.397-.397-1.018-.388-1.401.006l-1.5 1.547zm-7 5.731c0-.552.456-1 1.002-1h9.995c.554 0 1.002.444 1.002 1 0 .552-.456 1-1.002 1h-9.995c-.554 0-1.002-.444-1.002-1z" fill="#0176C3"/></svg>
.ENW
</span>
<span class="citations__types">
<span>
EndNote
</span>
</span>
</a>
</li>
<li>
<a href="//citation-needed.springer.com/v2/references/10.1007/BFb0015267?format=bibtex&flavour=citation"
title="Download this chapter's citation as a .BIB file" class="gtm-export-citation" data-gtmlabel="BIB">
<span class="citations__extension" data-gtmlabel="BIB">
<svg class="u-vertical-align-absolute" width="12" height="14" viewBox="0 0 12 14" xmlns="http://www.w3.org/2000/svg"><path d="M7 7.269v-6.271c0-.551-.448-.998-1-.998-.556 0-1 .447-1 .998v6.271l-1.5-1.547c-.375-.387-1.01-.397-1.401-.006l.016-.016c-.397.397-.391 1.025-.001 1.416l3.178 3.178c.392.392 1.024.391 1.415 0l3.178-3.178c.392-.392.391-1.025-.001-1.416l.016.016c-.397-.397-1.018-.388-1.401.006l-1.5 1.547zm-7 5.731c0-.552.456-1 1.002-1h9.995c.554 0 1.002.444 1.002 1 0 .552-.456 1-1.002 1h-9.995c-.554 0-1.002-.444-1.002-1z" fill="#0176C3"/></svg>
.BIB
</span>
<span class="citations__types">
<span>
BibTeX
</span>
<span>
JabRef
</span>
<span>
Mendeley
</span>
</span>
</a>
</li>
</ul>
</div>
<div class="share-this" data-component="SV.Dropdown" data-namespace="shareThis">
<h3 class="u-h4" data-role="button-dropdown__title">
<span>Share</span>
<span class="hide-text-small">chapter</span>
</h3>
<ul class="share-this__content" data-role="button-dropdown__content">
<li>
<a class="test-shareby-email-link gtm-shareby-email-link" href="mailto:?to=&subject=Read%20this%20chapter%20on%20SpringerLink&body=Database%20transaction%20models%0A%0Ahttps%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267" title="Share this chapter via email">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><g transform="translate(3 5)"><rect fill="#F9F9F9" width="18" height="14" rx="2"/><path d="M1 2.006v9.988c0 .557.446 1.006.995 1.006h14.01c.549 0 .995-.449.995-1.006v-9.988c0-.557-.446-1.006-.995-1.006h-14.01c-.549 0-.995.449-.995 1.006zm-1 0c0-1.108.893-2.006 1.995-2.006h14.01c1.102 0 1.995.897 1.995 2.006v9.988c0 1.108-.893 2.006-1.995 2.006h-14.01c-1.102 0-1.995-.897-1.995-2.006v-9.988zM9 9l7-4v-1.443l-7 4-7-4v1.443z" fill="#666"/></g></g></svg>
<span>Email</span>
</span>
</a>
</li>
<li>
<a class="test-shareby-facebook-link gtm-shareby-facebook-link" href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267" target="_blank" rel="noopener noreferrer" title="Share this chapter via Facebook">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><path d="M12.717 19.091h-2.66v-6.274h-1.329v-2.162h1.329v-1.298c0-1.763.75-2.813 2.883-2.813h1.775v2.162h-1.11c-.83 0-.885.302-.885.866l-.004 1.082h2.011l-.235 2.162h-1.775v6.274z" fill="#666"/></g></svg>
<span>Facebook</span>
</span>
</a>
</li>
<li>
<a class="test-shareby-twitter-link gtm-shareby-twitter-link" href="https://twitter.com/intent/tweet?text=I%27m%20reading%20this%20on%20%23springerlink&url=https%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267" target="_blank" rel="noopener noreferrer" title="Share this chapter via Twitter">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><path d="M16.651 9.189c.485-.306.858-.792 1.033-1.371-.454.284-.957.49-1.493.601-.428-.482-1.039-.783-1.715-.783-1.298 0-2.349 1.11-2.349 2.478 0 .194.019.384.06.564-1.952-.104-3.684-1.089-4.843-2.59-.202.367-.318.793-.318 1.247 0 .859.415 1.618 1.045 2.063-.385-.013-.748-.126-1.065-.31v.03c0 1.201.809 2.203 1.886 2.43-.198.058-.405.087-.62.087-.151 0-.299-.015-.442-.044.299.984 1.166 1.702 2.195 1.721-.805.665-1.818 1.061-2.919 1.061-.19 0-.377-.011-.561-.034 1.04.703 2.275 1.113 3.602 1.113 4.323 0 6.686-3.777 6.686-7.052l-.006-.321c.459-.35.859-.786 1.173-1.283-.422.197-.875.33-1.349.39z" fill="#666"/></g></svg>
<span>Twitter</span>
</span>
</a>
</li>
<li>
<a class="test-shareby-linkedin-link gtm-shareby-linkedin-link" href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Flink.springer.com%2Fchapter%2F10.1007%2FBFb0015267&title=Database transaction models&summary=The transaction concept provides a central paradigm for correctly synchronizing concurrent activities and for achieving reliability in database systems. In transaction modeling and processing, theory and practice influence each other a lot, and over…" target="_blank" rel="noopener noreferrer" title="Share this chapter via LinkedIn">
<span class="share-this__types">
<svg width="24" height="24" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><g fill="none"><path fill-opacity="0" fill="#fff" d="M0 0h24v24h-24z"/><path d="M6.821 10.044h2.126v7.41h-2.126v-7.41zm1.009-.927h-.015c-.77 0-1.269-.566-1.269-1.284 0-.732.514-1.287 1.299-1.287.784 0 1.267.554 1.282 1.285 0 .717-.498 1.286-1.297 1.286zm9.625 8.338h-2.411v-3.835c0-1.004-.377-1.688-1.206-1.688-.634 0-.987.462-1.151.908-.062.159-.052.382-.052.606v4.01h-2.389s.031-6.794 0-7.411h2.389v1.163c.141-.509.904-1.234 2.122-1.234 1.511 0 2.698 1.067 2.698 3.361v4.121z" fill="#666"/></g></svg>
<span>LinkedIn</span>
</span>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="skyscraper-ad u-hide" data-component="SpringerLink.GoogleAds" data-namespace="skyscraper"></div>