-
Notifications
You must be signed in to change notification settings - Fork 4
/
1.html
996 lines (928 loc) · 70 KB
/
1.html
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Datenbanken - Kapitel 1 - Grundlagen</title>
<link rel="stylesheet" href="reveal.js/dist/reset.css">
<link rel="stylesheet" href="reveal.js/dist/reveal.css">
<link rel="stylesheet" href="src/slides.css">
<link rel="stylesheet" href="src/sql.css">
<link rel="stylesheet" href="src/layout.css">
<link rel="stylesheet" href="lib/joint.min.css" />
<link rel="stylesheet" href="src/erd.css" />
<link rel="stylesheet" href="src/poll.css" />
<!-- Theme used for syntax highlighting of code -->
<script>
if(window.location.search.match( /print-pdf/gi )) {
document.getElementsByTagName("head")[0].innerHTML += '<link rel="stylesheet" href="src/routeros.css">';
} else {
document.getElementsByTagName("head")[0].innerHTML += '<link rel="stylesheet" href="src/rainbow.css">';
}
</script>
<!--<script defer src="lib/fontawesome.all.min.js"/>-->
<link href="lib/fontawesome.all.min.css" rel="stylesheet">
<style> .reveal i.fa { font-family:FontAwesome; font-style: normal; } </style>
</head>
<body>
<div class="reveal">
<div id="header"></div>
<div id="footer"></div>
<div class="slides">
<section>
<h4 style="text-align:center"><b><span data-metadata="speaker_name"></span></b><br>
<a data-metadata="speaker_email" data-metadata-type="mailto"></a></h4>
<h1>Datenbanken</h1>
<h3>Kapitel 1: Grundlagen</h3>
<h4 style="text-align:center"> </h4>
<img src="img/oth.png" height="60px" style="position: absolute; left:0px; border:0; bottom:-160px; box-shadow:none">
<img src="img/ccby.png" height="60px" style="position: absolute; right:0px; border:0; bottom:-160px;">
</section>
<section data-hide-from="2V">
<h2>Vorlesung</h2>
<div style="position: absolute; top: 120px; right:50px; font-size:230px"><i class="fas fa-university green"><!--<i class="fab fa-youtube green">--></i></div>
<h4>Vorlesung (ab <span data-metadata="lecture_startdate"></span>)</h4>
<ul data-metadata="lecture_times">
<li></li>
</ul>
</section>
<section data-hide-from="!2V">
<h2>Vorlesung</h2>
<div style="position: absolute; top: 120px; right:50px; font-size:230px"><i class="fas fa-university green"><!--<i class="fab fa-youtube green">--></i></div>
<h4>Vorlesung (ab 2021-03-18)</h4>
<ul>
<li>Do, 13:45 Uhr (über YouTube Live)</li>
</ul>
</section>
<section data-hide-from="2V">
<h2>Übung</h2>
<h4>Übungblätter (ab <span data-metadata="first_exercise_sheet_date"></span>)</h4>
<ul>
<li>Jede Woche ein Übungsblatt; insgesamt 12 Stück</li>
<li>Aufgabe 1 (gibt i.d.R. 10 Punkte): Abgabe im ELO</li>
<li>Weitere Aufgaben zur Besprechung in Übung</li>
</ul>
<br>
<h4>Übung (ab <span data-metadata="exercise_startdate"></span>)</h4>
<ul data-metadata="exercise_times">
<li></li>
</ul>
<aside class="notes">Achtung: Es ist nicht möglich, Punkte für die Übung zu bekommen, wenn im ELO die Deadline abgelaufen ist oder die Abgabe nicht vollständig eingereicht wurde.</aside>
</section>
<section data-hide-from="!2V">
<h2>Übung</h2>
<h4>Übungblätter (ab 2021-03-25)</h4>
<ul>
<li>Jede Woche ein Übungsblatt; insgesamt 12 Stück</li>
<li>Aufgabe 1 (gibt i.d.R. 10 Punkte):<br>Abgabe im ELO</li>
<!--<li>Weitere Aufgaben zur Besprechung in Übung</li>-->
</ul>
<br>
<h4>Übung (ab 2021-04-07,08,09)</h4>
<ul>
<li>Besprechung von Aufgabe 2 etc. in 2er-Gruppen </li>
<li>5-Minuten-Slots über Zoom</li>
<li>anschließend: Beispiellösung auf YouTube</li>
</ul>
<aside class="notes">Es ist nicht möglich, Punkte für die Übung zu bekommen, wenn im ELO die Deadline abgelaufen ist oder die Abgabe nicht vollständig eingereicht wurde.</aside>
</section>
<section>
<h2>Klausur</h2>
<h4>Klausur</h4>
<ul>
<li><b>Zulassungsvorraussetzung:<br>mind. 100 Punkte in der Übung</b></li>
<li>Schriftliche Klausur</li>
<li>90 Minuten Zeit</li>
<li>Hilfsmittel: Handschriftlich<br>doppelseitig beschriebenes DIN-A4-Blatt</li>
</ul>
<div style="position: absolute; top: 100px; right:50px; font-size:230px"><i class="fas fa-edit green"></i><div>
<aside class="notes">Wenn Sie mal ein Übungsblatt vergessen abzugeben, machen Sie sich keine Sorgen. Es gibt genügend Möglichkeiten, Bonuspunkte zu sammeln (Bonusaufgaben auf den Blättern, Quizzes, ...).<br>
Als Hilfsmittel für die Klausur ist ein handschriftlich doppelseitig beschriebenes Blatt zugelassen. Nicht zwei einseitige Blätter, nicht kopiert, nicht ausgedruckt, keine Tablet-Zeichnung. Sondern: Ein (1) handschriftlich (mit Stiften) doppelseitig (Vorder- und Rückseite) beschriebenes DIN-A4-Blatt.</aside>
</section>
<section>
<h2>Literatur</h2>
<div class="trackinfo"><i class="fas fa-headphones"></i> 1</div>
<ul style="font-size:26pt">
<li><em>J. Schildgen</em> <br>Sprachkurs SQL - Das Datenbanken-Hörbuch</li>
<li><em>A. Kemper, A. Eickler</em><br>Datenbanksysteme - Eine Einführung</li>
<li><em>A. Heuer, K.-U. Sattler, G. Saake</em><br>Datenbanken: Konzepte und Sprachen</li>
<li><em>C. J. Date</em><br>An Introduction to Database Systems</li>
</ul>
<div style="position: absolute; top: 125px; right:0px; font-size:250px"><a href="https://www.sprachkurs-sql.de" target="_blank"><img src="img/1/sprachkurs_sql.png" style="width:225px;border:0;"></a><div>
<aside class="notes">
Der Aufbau dieser Vorlesung sowie die verwendeten Beispiele orientieren sich größtenteils am Sprachkurs SQL, dem Datenbanken-Hörbuch. Ein Kopfhörer-Symbol rechts oben auf Folien verweist auf die jeweiligen Kapitel (Tracks) im Hörbuch.
</aside>
</section>
<section>
<h2>Aufbau der Vorlesung</h2>
<ol>
<li>Datenbanken-Grundlagen</li>
<li>Logischer DB-Entwurf: ER-Modellierung</li>
</ol>
<br>
<div class="stretch erd">
[[
{ _e: "Person", pos: [150, 100],
attributes: [
{ _a:"PersNr", options:["primary"], pos: [89, 13] },
{ _a:"Name", pos: [245, 13] }
]
},
{ _e: "Termin", pos: [530, 100],
attributes: [
{ _a:"Datum", pos: [475, 25], options:["primary"] },
{ _a:"Uhrzeit", pos: [634, 25], options:["primary"] },
{ _a:"Raum", pos: [722, 106], options:["primary"] },
{ _a:"Dauer", pos: [650, 189]},
{ _a:"Bezeichnung", pos: [475, 189]}
]
}
],
[
{ _r: "nimmt teil",
_e: ["Person", "Termin"],
card: ["N", "M"]
}
]]
</div>
</section>
<section>
<h2>Aufbau der Vorlesung</h2>
<ol>
<li>Datenbanken-Grundlagen</li>
<li>Logischer DB-Entwurf: ER-Modellierung</li>
<li>Das Relationenmodell</li>
</ol>
<b class="fragment" data-fragment-index="0">termine</b>
<table style="font-size:0.7em" class="fragment" data-fragment-index="0">
<thead>
<tr><th><u>Datum</u></th><th><u>Uhrzeit</u></th><th><u>Raum</u></th><th>Dauer</th><th>Bezeichnung</th></tr>
<tr><td>2020-10-14</td><td>14:15</td><td>17-123</td><td>90</td><td>Dings-Meeting</td></tr>
<tr><td>2020-10-15</td><td>10:15</td><td>17-222</td><td>60</td><td>Treffen mit Jürgen</td></tr>
<tr><td>2020-10-21</td><td>14:15</td><td>17-222</td><td>60</td><td>Treffen mit Frau Becker</td></tr>
<tr><td>2020-10-21</td><td>16:00</td><td>Cafeteria</td><td>45</td><td>Kaffee trinken</td></tr>
</table>
</section>
<section>
<h2>Aufbau der Vorlesung</h2>
<ol>
<li>Datenbanken-Grundlagen</li>
<li>Logischer DB-Entwurf: ER-Modellierung</li>
<li>Das Relationenmodell</li>
<li data-hide-from="2V">Relationale Algebra</li>
</ol>
<p class="fragment">\[\pi_{Uhrzeit,~Bezeichnung}\sigma_{Datum = '2020-10-14'}(Termine) \]</p>
</section>
<section>
<h2>Aufbau der Vorlesung</h2>
<ol>
<li>Datenbanken-Grundlagen</li>
<li>Logischer DB-Entwurf: ER-Modellierung</li>
<li>Das Relationenmodell</li>
<li data-hide-from="2V">Relationale Algebra</li>
<li>SQL</li>
</ol>
<br>
<pre class="fragment"><code class="hlsql" data-trim contenteditable>
SELECT uhrzeit, bezeichnung FROM termine
WHERE datum = '2020-10-14'
</code></pre>
</section>
<section>
<h2>Aufbau der Vorlesung</h2>
<ol>
<li>Datenbanken-Grundlagen</li>
<li>Logischer DB-Entwurf: ER-Modellierung</li>
<li>Das Relationenmodell</li>
<li>Relationale Algebra</li>
<li>SQL</li>
<li>Entwicklung von DB-Anwendungen</li>
<li data-hide-from="2V">Indexstrukturen</li>
<li>Transaktionen</li>
</ol>
</section>
<section>
<h2>Informationssysteme</h2>
<h4>Ein computergestütztes Programmsystem, <br>welches Informationen...</h4>
<ul>
<li>erfasst,</li>
<li>dauerhaft speichert,</li>
<li>verarbeitet,</li>
<li>verändert,</li>
<li>analysiert,</li>
<li>bereitstellt,</li>
<li>anzeigt.</li>
</ul>
<div style="position: absolute; top: 220px; right:50px; font-size:250px"><i class="fas fa-desktop green"></i><div>
</section>
<section>
<h2>Anwendungsklasse: OLTP</h2>
<h4>OLTP (OnLine Transaction Processing)</h4>
<p>Abwicklung von Transaktionen auf den operationalen Daten</p>
<pre class="fragment"><code class="nohighlight">Gib mir alle Details zu Buch 2817;
Berechne die Durchschnittsbewertung von Buch 2817;
Kunde 123456 bestellt Buch 2817;</code></pre>
<aside class="notes">Statements und Transaktionen in OLTP-Anwendungen sind meist kurz und simpel, jedoch können sehr vieler solcher Transaktionen parallel laufen. Die operativen Daten haben eine hohe Änderungshäufigkeit.</aside>
</section>
<section>
<h2>Anwendungsklasse: OLAP</h2>
<h4>OLAP (OnLine Analytical Processing)</h4>
<p>Analyse von Datenbeständen;<br>meist in einem Data-Warehouse</p>
<pre class="fragment" style="width:525px; left: -180px"><code class="nohighlight">Finde diejenigen Bücher, die in den
letzten 3 Monaten die höchsten Umsätze
generierten;</code></pre>
<aside class="notes">Das Data-Warehouse ist getrennt von den operativen Daten. In regelmäßigen Zeitabständen (z. B. einmal nachts) werden die Änderungen im operationalen DBS in das Data-Warehouse geladen. Dort können komplexe Datenanalysen durchgeführt werden.</aside>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 763px; top: 321px;" data-block-id="0ffd60d8ef7c0655a2207bf39ace9269">
<div class="sl-block-content" data-line-x1="181" data-line-y1="247" data-line-x2="180" data-line-y2="142" data-line-color="#000000" data-line-start-type="arrow" data-line-end-type="none" style="z-index: 12;" data-line-width="8px" data-fragment-index="0"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="105" viewBox="180 142 1 105">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="181" y1="235" x2="180" y2="142"></line>
<line stroke="#000000" stroke-width="8" x1="181" y1="235" x2="180" y2="142"></line>
<polygon fill="#000000" transform="translate(181,235) rotate(-0.546)" points="0,12 12,-12 -12,-12"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 59px; left: 642px; top: 443px;" data-block-id="5eb402c85d0bf51f357b1ab04c0b5c46">
<div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgba(66, 169, 170, 0.99)" data-shape-stretch="true" style="z-index: 13;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 59">
<rect width="245" height="59" rx="0" ry="0" class="shape-element" fill="rgba(66, 169, 170, 0.99)"></rect>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 642px; top: 420px;" data-block-id="8d92f1556e87a3d9012d543fdee4648d">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="rgba(66, 169, 170, 0.99)" data-shape-stretch="true" style="z-index: 15;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-8-1569441259701">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-8-1569441259701)" class="shape-element" fill="rgba(66, 169, 170, 0.99)" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 642px; top: 480px;" data-block-id="9ee594f2fd24ec216af987d3437654f5">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="rgba(66, 169, 170, 0.99)" data-shape-stretch="true" style="z-index: 10;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-9-1569441259706">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-9-1569441259706)" class="shape-element" fill="rgba(66, 169, 170, 0.99)" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 642px; top: 443px;" data-block-id="ec78cd31f59bdcdc404c72b0dde9d906">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 17;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 886px; top: 443px;" data-block-id="9ecea33e0c1cf76e5e5eca1d2e4c00dd">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 19;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 244px; left: 735px; top: 463px;" data-block-id="094fb404adcde088c09cacc310cc8557">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 22;">
<p>DW</p>
</div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 59px; left: 642px; top: 239px;" data-block-id="e98c758c658a2d4d5783a48e5ea1349f">
<div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 24;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 59">
<rect width="245" height="59" rx="0" ry="0" class="shape-element" fill="#5473b9"></rect>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 642px; top: 216px;" data-block-id="851c1924a61c3a68fbb0f0e37b4446b6">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 25;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-11-1569441277383">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-11-1569441277383)" class="shape-element" fill="#5473b9" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 642px; top: 276px;" data-block-id="b23cf59b5dc4fbb19fb81ba69d9c7044">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 23;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-12-1569441277388">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-12-1569441277388)" class="shape-element" fill="#5473b9" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 642px; top: 239px;" data-block-id="1878b4a64c9b7b2cecf2004b71973a41">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 26;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 886px; top: 239px;" data-block-id="d20b212beb288a0733a58b2c31093af0">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 27;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 244px; left: 735px; top: 259px;" data-block-id="c915b5aefb0e1a4336939d88588a5541">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 28;">
<p>DB</p>
</div>
</div>
</section>
<section>
<h2>Data Mining</h2>
<p>Anwendung statistischer Methoden, um in großen Datenmengen</p>
<ul>
<li>Querverweise / Beziehungen</li>
<li>Trends</li>
<li>Muster</li>
<li>(Un-)Regelmäßigkeiten</li>
</ul>
<p>zu erkennen.</p>
<div style="position: absolute; top: 230px; right:50px; font-size:250px"><i class="fas fa-search green"></i><div>
<aside class="notes">Ziel des Data-Minings ist es, aus vorhandenen Datenbeständen Wissen zu gewinnen. Eine Spezialisierung ist beispielsweise Text Mining, welches aus Verfahren zur Analyse meist unstrukturierter Texte besteht.</aside>
</section>
<section>
<h2>Transaktionskonzept</h2>
<ul>
<li>DBMS unterstützt Mehrbenutzerbetrieb</li>
<li>TA = Folge mehrerer DB-Operationen als eine Einheit</li>
<li>TAs laufen parallel</li>
<li>Fehlerhafte TAs werden vollständig zurückgesetzt</li>
</ul>
<div data-badge="Transaktion" data-badge-position="tr"><pre><code class="java" contenteditable>konto1.kontostand -= 100;
konto2.kontostand += 100;
commit;</code></pre></div>
<div class="poll fragment" style="bottom:-180px">
<h1>Was bedeutet Commit?</h1>
<ul>
<li>Abbruch der TA</li>
<li data-poll="correct">Erfolgreiches Abschließen der TA</li>
<li>Pausieren der TA</li>
<li>Fortsetzen der TA</li>
</ul>
<h2>https://fraage.de</h2>
</div>
<aside class="notes">Die hier dargestellte Transaktion (TA) besteht aus zwei Schreiboperationen auf zwei Konten. Die Commit-Operation schließt die Transaktion ab. Tritt beispielsweise bei der Ausführung des zweiten Befehls ein Fehler auf (Konto existiert nicht, Limit erreicht, Hardwarefehler,...), wird auch der Rest der TA, also der erste Befehl, nicht ausgeführt. Mittels eines Rollbacks statt dem Commit kann die Transaktion manuell abgebrochen und zurückgesetzt werden.</aside>
</section>
<section>
<div class="poll fragment" style="bottom:-180px; z-index: 9999;">
<h1>Was bedeutet Atomarität?</h1>
<ul>
<li>Eine Transaktion besteht immer nur aus einer Operation</li>
<li>Eine Transaktion darf nie parallel mit anderen laufen</li>
<li>Mehrere Transaktionen hintereinander bilden eine Einheit</li>
<li data-poll="correct">Eine Transaktion wird ganz oder gar nicht ausgeführt</li>
</ul>
<h2>https://fraage.de</h2>
</div>
<h2>ACID-Transaktionen</h2>
<ul>
<li>Atomarität</li>
<li>Konsistenz</li>
<li>Isolation</li>
<li>Dauerhaftigkeit</li>
</ul>
<div data-badge="Transaktion" data-badge-position="tr"><pre><code class="java" contenteditable>konto1.kontostand -= 100;
konto2.kontostand += 100;
commit;</code></pre></div>
<div style="position: absolute; top: 80px; right:50px; font-size:220px"><i class="fas fa-random green"></i><div>
<aside class="notes">
Das hier dargestellte ACID-Paradigma beschreibt die Eigenschaften von Transaktionen in Datenbanken. Transaktionen sind eine Sammlung von Aktionen, die stets als Gesamtheit - atomar - ausgeführt werden. Des Weiteren überführen Transaktionen die Datenbank von einem Konsistenten Zustand in einen konsistenten Zustand. Parallel laufende Transaktionen beeinflussen sich nicht. Und Änderungen an der Datenbank, die mit einem Commit bestätigt werden, bleiben dauerhaft in ihr gespeichert.
</aside>
</section>
<section><h2>Geht's auch ohne Datenbank?</h2>
<div class="trackinfo"><i class="fas fa-headphones"></i> 2-4</div>
<ul style="list-style-type:none;">
<li>Speicherung von Daten in Dateien</li>
<li>(-) Komplexe Anwendungsentwicklung</li>
<li>(-) Ineffizient (langsam)</li>
<li>(-) Keine Anfragesprache</li>
<li>(-) Kein ACID</li>
<li>(-) Redundanz</li>
</ul>
<div style="position: absolute; top: 230px; right:50px; font-size:220px"><i class="fas fa-file-csv green"></i><div>
<aside class="notes">
Verwenden Anwendungen statt einer DB simple Dateien, ist die Entwicklung von Einfüge-, Änderungs- und Suchfunktionen sehr aufwändig. Da sich nicht um ACID gekümmert wird, können Inkonsistenzen entstehen, Änderungen verlorengehen und vieles mehr. In Datenbanken gilt das Prinzip der Redundanzfreiheit. Jede Info wird nur einmal gespeichert. In Dateien ist oft der Fall, dass ein und der selbe Fakt an vielen Stellen zu finden ist.
</aside>
</section>
<section>
<h2>DB, DBMS, DBS</h2>
<div class="trackinfo"><i class="fas fa-headphones"></i> 5</div>
<p class="fragment" data-fragment-index="1"><b>Datenbank (DB)</b><br>Sammlung von Daten</p>
<p class="fragment" data-fragment-index="2"><b>Datenbankmanagementsystem</b><br>Standardsoftware zur Definition,<br> Verwaltung, Verarbeitung<br> und Auswertung von DB-Daten</p>
<p class="fragment" data-fragment-index="3"><b>Datenbanksystem</b><br>DBS = DB + DBMS</p>
<div class="sl-block fragment" data-fragment-index="3" data-block-type="shape" data-block-id="fa2aba99c300ad7466f060c3e6ebd9d0" style="min-width: 4px; min-height: 4px; width: 320px; height: 377px; left: 604px; top: 183px;">
<div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="rgba(0, 0, 0, 0)" data-shape-stretch="true" style="z-index: 11;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 320 377">
<defs>
<clipPath id="shape-mask-7-1569275673252">
<rect width="320" height="377" rx="0" ry="0"></rect>
</clipPath>
</defs>
<rect width="320" height="377" rx="0" ry="0" clip-path="url(#shape-mask-7-1569275673252)" class="shape-element" fill="#ffcb63" stroke="#000000" stroke-width="10"></rect>
</svg></div>
</div>
<div class="sl-block fragment" data-fragment-index="2" data-block-type="text" data-block-id="a0143290484a9a0f0bc8be7f756e140f" style="height: auto; min-width: 30px; min-height: 30px; width: 246px; left: 641px; top: 280px;">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 13; background-color: #ff6363; border-style: solid; border-width: 5px; border-color: rgb(34, 34, 34); " data-fragment-index="0">
<p style="text-align:center">DBMS</p>
</div>
</div>
<div class="sl-block fragment" data-fragment-index="2" data-block-type="line" data-block-id="d9360602f0aea0a3af95301bbee5f026" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 763px; top: 321px;">
<div class="sl-block-content" data-line-x1="181" data-line-y1="247" data-line-x2="180" data-line-y2="142" data-line-color="#000000" data-line-start-type="arrow" data-line-end-type="none" style="z-index: 14;" data-line-width="8px" data-fragment-index="0"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="105" viewBox="180 142 1 105">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="181" y1="235" x2="180" y2="142"></line>
<line stroke="#000000" stroke-width="8" x1="181" y1="235" x2="180" y2="162"></line>
<polygon fill="#000000" transform="translate(181,235) rotate(-0.546)" points="0,12 12,-12 -12,-12"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" data-block-id="2121ed019183690fcbf4d59ebf307854" style="min-width: 4px; min-height: 4px; width: 245px; height: 59px; left: 642px; top: 443px;">
<div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 15;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 59">
<rect width="245" height="59" rx="0" ry="0" class="shape-element" fill="#5473b9"></rect>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 642px; top: 420px;" data-block-id="6fbcffef94ac35b1a289820d4da4a3c7">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 16;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-5-1569275407016">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-5-1569275407016)" class="shape-element" fill="#5473b9" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 642px; top: 480px;" data-block-id="5ea1aa800f8cffe0cfcd668051167951">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 12;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-6-1569275422813">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-6-1569275422813)" class="shape-element" fill="#5473b9" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 642px; top: 443px;" data-block-id="dfef938d157782f2c4686c5b0fee9f03">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 17;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 886px; top: 443px;" data-block-id="a9efdff789a6eab3c8fc93c68b0c09ce">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 18;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 244px; left: 735px; top: 463px;" data-block-id="2bed39f7aedffa34bb60d0b46eb05faf">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 19;">
<p>DB</p>
</div>
</div>
<div class="sl-block fragment" data-fragment-index="3" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 244px; left: 728px; top: 210px;" data-block-id="19ccaed596bd3b146cdd2d264c24ccd4">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 20;">
<p>DBS</p>
</div>
</div>
<div class="poll fragment" style="bottom:-50px; z-index: 9999;">
<h1>PostgreSQL ist ...?</h1>
<ul>
<li>... eine Datenbank</li>
<li data-poll="correct">... ein Datenbankmanagementsystem</li>
<li>... ein Datenbanksystem</li>
</ul>
<h2>https://fraage.de</h2>
</div>
</section>
<section>
<h2>Anfragesprachen</h2>
<p>Benutzer und Anwendungen sprechen mit dem DBMS in einer Anfragesprache (Query Language).</p>
<h4>Data Definition Language (DDL)</h4>
<p>zur Definition des DB-Schemas</p>
<h4>Data Manipulation Language (DML)</h4>
<p>für den lesenden und schreibenden Zugriff auf die Daten</p>
</section>
<section><h2>Anfrageausführung</h2>
<div class="trackinfo"><i class="fas fa-headphones"></i> 6</div>
<pre data-badge="SQL-Query" data-badge-position="tr"><code class="hlsql" data-trim contenteditable>
SELECT uhrzeit, bezeichnung FROM termine
WHERE datum = '2020-10-14'
</code></pre>
<ol>
<li class="fragment">Benutzer schickt die Anfrage an das DBMS</li>
<li class="fragment">DBMS generiert Anfrageplan</li>
<li class="fragment">DBMS optimiert den Plan</li>
<li class="fragment">DBMS führt den Anfrageplan aus
<ul>
<li>Daten aus DB lesen</li>
<li>Operationen durchführen (Join, Index-Scan, ...)</li>
</ul></li>
<li class="fragment">Ergebnis wird zurück an den Benutzer geschickt</li>
</ul>
<div style="position: absolute; top: 250px; right:50px; font-size:200px"><i class="fas fa-comments green"></i><div>
</section>
<section>
<h2>Metadaten und Daten</h2>
<b data-fragment-index="0">termine</b>
<table style="font-size:0.7em" data-fragment-index="0">
<thead>
<tr><th><u>Datum</u></th><th><u>Uhrzeit</u></th><th><u>Raum</u></th><th>Dauer</th><th data-badge="Metadaten" data-badge-position="tr">Bezeichnung</th></tr>
<tr><td>2020-10-14</td><td>14:15</td><td>17-123</td><td>90</td><td>Dings-Meeting</td></tr>
<tr><td>2020-10-15</td><td>10:15</td><td>17-222</td><td>60</td><td data-badge="Daten" data-badge-position="tr">Treffen mit Jürgen</td></tr>
</table>
<p>Metadaten (Datenbankschema):</p>
<ul>
<li>Festlegung der Struktur der zu speicherenden Daten</li>
<li>weitgehend zeitinvariant; gespeichert im DB-Katalog</li>
</ul>
<p>Daten (Ausprägungen):</p>
<ul>
<li>veränderlich</li>
</ul>
</section>
<section>
<h2>Datenmodellierung</h2>
<h4>Konzeptionelles Datenmodell</h4>
<ul>
<li>Unabhängig vom eingesetzten DBMS</li>
<li>ER-Diagramme, UML, ...</li>
</ul>
<div>
<div class="stretch erd">
[[
{ _e: "Person", pos: [150, 100],
attributes: [
{ _a:"PersNr", options:["primary"], pos: [89, 13] },
{ _a:"Name", pos: [245, 13] }
]
},
{ _e: "Termin", pos: [530, 100],
attributes: [
{ _a:"Datum", pos: [475, 25], options:["primary"] },
{ _a:"Uhrzeit", pos: [634, 25], options:["primary"] },
{ _a:"Raum", pos: [722, 106], options:["primary"] },
{ _a:"Dauer", pos: [650, 189]},
{ _a:"Bezeichnung", pos: [475, 189]}
]
}
],
[
{ _r: "nimmt teil",
_e: ["Person", "Termin"],
card: ["N", "M"]
}
]]
</div></div>
</section>
<section>
<h2>Datenmodellierung</h2>
<h4>Logisches Datenmodell</h4>
<ul>
<li>Prominentestes Datenmodell: Das Relationenmodell</li>
<li>Andere: objekt-relational, hierarchisch, netzwerkartig, objektorientiert (→ NoSQL)</li>
</ul>
<pre><code class="hlsql dont_execute_sql" data-trim contenteditable>CREATE TABLE termine (
datum DATE, uhrzeit CHAR(5), raum VARCHAR(15), dauer INT,
bezeichnung VARCHAR(200), PRIMARY KEY(datum, uhrzeit, raum));
</code></pre>
<h4>Physisches Datenmodell</h4>
<ul>
<li>Interne Speicherung und Organisation der Daten</li>
</ul>
<div class="poll fragment" style="bottom:-50px; z-index: 9999;">
<h1>Worum geht's hier gerade überhaupt?</h1>
<ul>
<li>um Daten</li>
<li data-poll="correct">um Metadaten</li>
<li>Das wüsst' ich auch mal gern</li>
</ul>
<h2>https://fraage.de</h2>
</div>
</section>
<section>
<h3>Evolution der Datenmodelle</h3>
<div class="sl-block" data-block-type="line" data-block-id="a3e50c00975c9f6e5dde5f672a687a04" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 80px; top: 560px;">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="720" data-line-y2="200" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 13;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="720" height="1" viewBox="0 200 720 1">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="200" x2="716" y2="200"></line>
<line stroke="#000000" stroke-width="2" x1="0" y1="200" x2="716" y2="200"></line>
<polygon fill="#000000" transform="translate(716,200) rotate(90)" points="0,-4 4,4 -4,4"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="4a88991a110fc83e2bb8db0a31664d24" style="height: auto; min-width: 30px; min-height: 30px; width: 692px; left: 80px; top: 539px;">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14;">
<p><span style="font-size:0.46em">1960 </span><span> </span><span style="font-size:0.46em"> 1970 </span><span> </span><span style="font-size:0.46em"> 1980 </span><span> </span><span style="font-size:0.46em"> 1990 </span><span> </span><span style="font-size:0.46em"> 2000 </span><span> </span><span style="font-size:0.46em"> 2010 2020</span></p>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="8395c9e11c4a7e68086aec3d8a72d78f" style="height: auto; min-width: 30px; min-height: 30px; width: 153px; left: 133px; top: 420px;">
<div class="sl-block-content yellow" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 15; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center; color: black;">Hierarchical</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 133px; left: 199px; top: 460px;" data-block-id="845889d91fb01886ba0dbedc18fcf02a">
<div class="sl-block-content orange" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 16; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center; color: black;">Network</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 601px; left: 199px; top: 380px;" data-block-id="33570c396d9c494a03af12cbdbed502b">
<div class="sl-block-content green" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 17; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center">Relational</p>
</div>
</div>
<div class="sl-block" data-block-type="line" data-block-id="18d204517a07e2612afcb4cc3d4ef87e" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 273px; top: 197px;">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="0" data-line-y2="-163" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 12;" data-line-style="dashed"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="363" viewBox="0 -163 1 363">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="200" x2="0" y2="-163"></line>
<line stroke="#000000" stroke-width="2" stroke-dasharray="5.95 5.95" x1="0" y1="200" x2="0" y2="-163"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="74c9330a4663c7c4b74451618232090c" style="height: auto; min-width: 30px; min-height: 30px; width: 99px; left: 254px; top: 162px;">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 18; font-size: 60%;">
<p>SQL</p>
</div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 239px; top: 129px;" data-block-id="87a2ba430d3ff0a0fa36bf92ebe5dfbc">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="0" data-line-y2="-233" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 11;" data-line-style="dashed"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="433" viewBox="0 -233 1 433">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="200" x2="0" y2="-233"></line>
<line stroke="#000000" stroke-width="2" stroke-dasharray="5.930555555555556 5.930555555555556" x1="0" y1="200" x2="0" y2="-233"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 164px; left: 195px; top: 100px;" data-block-id="08c307526521e2e03d3bb3f3ad3e7623">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 19; font-size: 60%;">
<p>CODASYL</p>
</div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 319px; top: 257px;" data-block-id="82d2ebbb39c649406e6d4307100392a9">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="1" data-line-y2="-105" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 10;" data-line-style="dashed"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="305" viewBox="0 -105 1 305">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="200" x2="1" y2="-105"></line>
<line stroke="#000000" stroke-width="2" stroke-dasharray="5.980032786797133 5.980032786797133" x1="0" y1="200" x2="1" y2="-105"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 151px; left: 281px; top: 225px;" data-block-id="e04d2d4a822c6c90e05ffd89f504aaab">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 20; font-size: 60%;">
<p>ER Model</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 202px; left: 411px; top: 490px;" data-block-id="27d3de1366471fab80dcdc8ed5e7fe79">
<div class="sl-block-content blue" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 21; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center">Object-Oriented</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 360px; left: 440px; top: 335px;" data-block-id="d371797a7da717d6eeeb7b60375f77e9">
<div class="sl-block-content green" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 22; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center">Object-Relational</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 288px; left: 512px; top: 289px;" data-block-id="afb33d670a9488c637fcc38f2789b542">
<div class="sl-block-content yellow" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 23; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center; color: black;">Semi-Structured</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 240px; left: 560px; top: 242px;" data-block-id="ef7f4bf50c7e32e143bb0bfadb11bbfb">
<div class="sl-block-content yellow" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 24; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center; color: black;">XML</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 147px; left: 653px; top: 195px;" data-block-id="558b3194b57f795f113873ffd06fc5cd">
<div class="sl-block-content red" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 25; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center">NoSQL</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 123px; left: 677px; top: 149px;" data-block-id="ea54672547a03f5437213ef129aa0c90">
<div class="sl-block-content red" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 27; border-style: solid; border-width: 1px; font-size: 60%;" dir="ui">
<p style="text-align:center">Multi-Model</p>
</div>
</div>
</section>
<section data-hide-from="2V">
<h2>Datenabstraktion</h2>
<h4>Externe Ebene (Sichten / Views)</h4>
<p style="margin-left: 50px">Sicht auf eine Teilmenge des<br>logischen Schemas für eine<br>bestimmte Benutzergruppe</p>
<h4>Logische Ebene</h4>
<p style="margin-left: 50px">DB-Gesamt-Schema</p>
<h4>Physische Ebene</h4>
<p style="margin-left: 50px">Internes Schema / Speicherung der Daten</p>
<div id="svg_data_abstraction">
<div class="sl-block" data-block-type="text" data-block-id="f950b0fdfdb807f255affb1a7b9083e0" style="height: auto; min-width: 30px; min-height: 30px; width: 113px; left: 720px; top: 171px;">
<div class="sl-block-content yellow" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 10; border-style: solid; border-width: 1px;">
<p style="text-align: center; color: black;">Sicht</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 113px; left: 847px; top: 171px;" data-block-id="0784202251b42d7e07e357b78f9b8366">
<div class="sl-block-content yellow" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 11; border-style: solid; border-width: 1px;">
<p style="text-align: center; color: black;">Sicht</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 113px; left: 593px; top: 171px;" data-block-id="e9cc541a3e41d442b19ca7c018ea9df7">
<div class="sl-block-content yellow" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 12; border-style: solid; border-width: 1px;">
<p style="text-align: center; color: black;">Sicht</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 240px; left: 657px; top: 321px;" data-block-id="dd81c5662240a66c3473d3fcda17e1ea">
<div class="sl-block-content green" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 13; border-style: solid; border-width: 1px;">
<p style="text-align: center">log. Schema</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 240px; left: 657px; top: 449px;" data-block-id="fd7cb8aab0729402c95ce463dbdde65a">
<div class="sl-block-content orange" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 14; border-style: solid; border-width: 1px;">
<p style="text-align: center; color: black;">int. Schema</p>
</div>
</div>
<div class="sl-block" data-block-type="line" data-block-id="97ebbb519a4283ff5083d5f69defcf07" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 777px; top: 372px;">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="0" data-line-y2="113" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 15;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="87" viewBox="0 113 1 87">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="190" x2="0" y2="117"></line>
<line stroke="#000000" stroke-width="2" x1="0" y1="190" x2="0" y2="117"></line>
<polygon fill="#000000" transform="translate(0,117) rotate(0)" points="0,-4 4,4 -4,4"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 657px; top: 222px;" data-block-id="f476360cc7585a7a646a5bfb96f8ebb6">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="-119" data-line-y2="101" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 16;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="119" height="99" viewBox="-119 101 119 99">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="200" x2="-116" y2="104"></line>
<line stroke="#000000" stroke-width="2" x1="0" y1="200" x2="-116" y2="104"></line>
<polygon fill="#000000" transform="translate(-116,104) rotate(-50.242)" points="0,-4 4,4 -4,4"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 776px; top: 222px;" data-block-id="f7a3327b02cacd25d26952306df608a9">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="1" data-line-y2="101" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 17;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="99" viewBox="0 101 1 99">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="200" x2="1" y2="105"></line>
<line stroke="#000000" stroke-width="2" x1="0" y1="200" x2="1" y2="105"></line>
<polygon fill="#000000" transform="translate(1,105) rotate(0.579)" points="0,-4 4,4 -4,4"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 777px; top: 222px;" data-block-id="0770aeffdb19bbad6e1b058c7b08b2aa">
<div class="sl-block-content" data-line-x1="0" data-line-y1="200" data-line-x2="124" data-line-y2="101" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 19;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="124" height="99" viewBox="0 101 124 99">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="0" y1="200" x2="121" y2="103"></line>
<line stroke="#000000" stroke-width="2" x1="0" y1="200" x2="121" y2="103"></line>
<polygon fill="#000000" transform="translate(121,103) rotate(51.397)" points="0,-4 4,4 -4,4"></polygon>
</svg></div>
</div>
</div>
</section>
<section data-hide-from="2V">
<h2>Datenabstraktion (Bsp.)</h2>
<h4>Externe Ebene (View für Webshop-Anwendung)</h4>
<table style="font-size:0.7em" data-fragment-index="0">
<thead>
<tr><th><u>Produktnr</u></th><th>Bezeichnung</th><th>Preis</th><th>Bewertung</th></tr>
<tr><td>17</td><td>Schokoriegel</td><td>0.89</td><td>4.5</td></tr>
<tr><td>29</td><td>Spülmaschinentabs</td><td>3.99</td><td>2.0</td></tr>
</table>
<h4>Logische Ebene</h4>
<div class="columns stretch">
<div style="margin-top:0px;">
<table style="font-size:0.7em" data-fragment-index="0">
<thead>
<tr><th><u>Produktnr</u></th><th>Bezeichnung</th><th>Preis</th></tr>
<tr><td>17</td><td>Schokoriegel</td><td>0.89</td></tr>
<tr><td>29</td><td>Spülmaschinentabs</td><td>3.99</td></tr>
</table>
</div>
<div style="margin-top:0px;">
<table style="font-size:0.7em" data-fragment-index="0">
<thead>
<tr><th><u>Kundennr</u></th><th><u>Produktnr</u></th><th>Bew</th></tr>
<tr><td>5</td><td>17</td><td>4</td></tr>
<tr><td>8</td><td>17</td><td>5</td></tr>
<tr><td>5</td><td>29</td><td>2</td></tr>
</table>
</div>
</div>
<p><b>Physische Ebene: </b>0010110000000100101111010101...</p>
</section>
<section data-hide-from="2V">
<h2>Datenunabhängigkeit</h2>
<h4>Logische Datenunabhängigkeit</h4>
<p style="font-size: 75%">Änderungen am logischen Schema<br>(z. B. Spaltenumbenennung) erfordern<br>lediglich eine Anpassung der externen<br>Sichten. Anwendungen bleiben unberührt.</p>
<h4>Physische Datenunabhängigkeit</h4>
<p style="font-size: 75%">Änderungen an internen Speicher- oder<br>Zugriffsstrukturen haben keine Auswirkungen<br>auf das logische oder externe Schema.</p>
<div data-clone="svg_data_abstraction"></div>
<aside class="notes">Wird in dem Beispiel auf der vorherigen Folie auf logischer Ebene die Spalte Bezeichnung in Produktbezeichnung umbenannt, kann die entsprechende Sicht auf externer Ebene einfach angepasst werden und alle bisherigen Anwendungen, die über die Sicht auf die Daten zugreifen, funktionieren auch weiterhin noch.</aside>
</section>
<section data-hide-from="2V">
<h2>Architektur von DBMS</h2>
<p>Vereinfachtes Modell: 3-Schichten-Modell</p>
<h4>Datensystem</h4>
<p style="font-size: 75%; margin-left: 25px">Übersetzung und Optimierung von Anfragen</p>
<h4>Zugriffssystem</h4>
<p style="font-size: 75%; margin-left: 25px">Verwaltung von Datensätzen und Indexen</p>
<h4>Speichersystem</h4>
<p style="font-size: 75%; margin-left: 25px">Blockverwaltung und Caching</p>
<div id="3-layer-dbms-model">
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 59px; left: 702px; top: 563px;" data-block-id="a9f123bce86af85081d17d7f45f0a07d">
<div class="sl-block-content" data-shape-type="rect" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 11;"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 59">
<rect width="245" height="59" rx="0" ry="0" class="shape-element" fill="#5473b9"></rect>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 702px; top: 540px;" data-block-id="23b66a914065e12b6df1b365d3e4f086">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 12;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-1-1569671435240">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-1-1569671435240)" class="shape-element" fill="#5473b9" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="shape" style="min-width: 4px; min-height: 4px; width: 245px; height: 45px; left: 702px; top: 600px;" data-block-id="38782545b5f15b91031575f2b092941c">
<div class="sl-block-content" data-shape-type="circle" data-shape-fill-color="#5473b9" data-shape-stretch="true" style="z-index: 10;" data-shape-stroke-color="#000000" data-shape-stroke-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%" preserveAspectRatio="none" viewBox="0 0 245 45">
<defs>
<clipPath id="shape-mask-2-1569671435244">
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5"></ellipse>
</clipPath>
</defs>
<ellipse rx="122.5" ry="22.5" cx="122.5" cy="22.5" clip-path="url(#shape-mask-2-1569671435244)" class="shape-element" fill="#5473b9" stroke="#000000" stroke-width="10"></ellipse>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 702px; top: 563px;" data-block-id="34ce3546a9010cb5ded5b45cd8c73cd5">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 13;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 946px; top: 563px;" data-block-id="96fe4673d2ecfe1864921590fd3bcd0d">
<div class="sl-block-content" data-line-x1="-30" data-line-y1="217" data-line-x2="-30" data-line-y2="158" data-line-color="#000000" data-line-start-type="none" data-line-end-type="none" style="z-index: 14;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="59" viewBox="-30 158 1 59">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
<line stroke="#000000" stroke-width="5" x1="-29.5" y1="217.5" x2="-29.5" y2="158.5"></line>
</svg></div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 244px; left: 702px; top: 583px;" data-block-id="cf12a0fd874d93cfb4680bffaedc1a19">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 15;">
<p style="text-align: center">DB</p>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="6806b8c0d7c7444efa2b45a82c2baa79" style="height: auto; min-width: 30px; min-height: 30px; width: 275px; left: 685px; top: 400px;">
<div class="sl-block-content red" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 16; border-style: solid; border-width: 1px;">
<p style="text-align: center">Speichersystem</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 275px; left: 685px; top: 310px;" data-block-id="26da37b520305112b581fd305e3ced49">
<div class="sl-block-content yellow" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 17; border-style: solid; border-width: 1px;">
<p style="text-align: center; color: black; ">Zugriffssystem</p>
</div>
</div>
<div class="sl-block" data-block-type="text" style="height: auto; min-width: 30px; min-height: 30px; width: 275px; left: 685px; top: 219px;" data-block-id="0fe57be31b31308d443ad0ead846733c">
<div class="sl-block-content green" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 18; border-style: solid; border-width: 1px;">
<p style="text-align: center">Datensystem</p>
</div>
</div>
<div class="sl-block" data-block-type="text" data-block-id="8531c69bebfd04f9648edb8f2b278a2f" style="height: auto; min-width: 30px; min-height: 30px; width: 123px; left: 780px; top: 125px;">
<div class="sl-block-content" data-placeholder-tag="p" data-placeholder-text="Text" style="z-index: 19; text-align: left;">
<p><span style="font-size:0.7em">Anfrage</span></p>
</div>
</div>
<div class="sl-block" data-block-type="line" data-block-id="94a9aed748caac1e9d30e25b32dbbb09" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 823px; top: 452px;">
<div class="sl-block-content" data-line-x1="443" data-line-y1="191" data-line-x2="443" data-line-y2="290" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 20;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="99" viewBox="443 191 1 99">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="443.5" y1="191.5" x2="443.5" y2="273.5"></line>
<line stroke="#000000" stroke-width="5" x1="443.5" y1="191.5" x2="443.5" y2="273.5"></line>
<polygon fill="#000000" transform="translate(443,273) rotate(180)" points="0,-7.5 7.5,7.5 -7.5,7.5"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 822px; top: 362px;" data-block-id="d97b87edf90dbb965649039a58d9ab0a">
<div class="sl-block-content" data-line-x1="443" data-line-y1="240" data-line-x2="443" data-line-y2="290" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 21;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="50" viewBox="443 240 1 50">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="443.5" y1="240.5" x2="443.5" y2="273.5"></line>
<line stroke="#000000" stroke-width="5" x1="443.5" y1="240.5" x2="443.5" y2="273.5"></line>
<polygon fill="#000000" transform="translate(443,273) rotate(180)" points="0,-7.5 7.5,7.5 -7.5,7.5"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 821px; top: 272px;" data-block-id="b87cf3cb30c39fe2eae4bfff06fc22e4">
<div class="sl-block-content" data-line-x1="443" data-line-y1="240" data-line-x2="443" data-line-y2="290" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 22;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="50" viewBox="443 240 1 50">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="443.5" y1="240.5" x2="443.5" y2="273.5"></line>
<line stroke="#000000" stroke-width="5" x1="443.5" y1="240.5" x2="443.5" y2="273.5"></line>
<polygon fill="#000000" transform="translate(443,273) rotate(180)" points="0,-7.5 7.5,7.5 -7.5,7.5"></polygon>
</svg></div>
</div>
<div class="sl-block" data-block-type="line" style="width: auto; height: auto; min-width: 1px; min-height: 1px; left: 820px; top: 169px;" data-block-id="7c38f09faa285c7f807fe404b8f8d485">
<div class="sl-block-content" data-line-x1="443" data-line-y1="240" data-line-x2="443" data-line-y2="290" data-line-color="#000000" data-line-start-type="none" data-line-end-type="arrow" style="z-index: 24;" data-line-width="5px"><svg xmlns="http://www.w3.org/2000/svg" version="1.1" preserveAspectRatio="xMidYMid" width="1" height="50" viewBox="443 240 1 50">
<line stroke="rgba(0,0,0,0)" stroke-width="15" x1="443.5" y1="240.5" x2="443.5" y2="283.5"></line>
<line stroke="#000000" stroke-width="5" x1="443.5" y1="240.5" x2="443.5" y2="283.5"></line>
<polygon fill="#000000" transform="translate(443,283) rotate(180)" points="0,-7.5 7.5,7.5 -7.5,7.5"></polygon>
</svg></div>
</div>
</div>
</section>
<section>
<h2>Kapitelzusammenfassung</h2>
<ul>
<li>OLTP / OLAP</li>
<li>ACID-Transaktionen</li>
<li>DB + DBMS = DBS</li>
<li>DDL / DML</li>
<li>Metadaten / Daten</li>
<li>Konzept. / Log. / Phys. Datenmodell</li>
<li data-hide-from="2V">Ext. / Log. / Phy. Datenebene</li>
<li data-hide-from="2V">Datensystem / Speichersystem / Zugriffssystem</li>
</ul>
</section>
</div>
</div>
<script src="reveal.js/dist/reveal.js"></script>
<script src="reveal.js/plugin/markdown/markdown.js"></script>
<script src="reveal.js/plugin/highlight/highlight.js"></script>
<script src="reveal.js/plugin/zoom/zoom.js"></script>
<script src="reveal.js/plugin/math/math.js"></script>
<script src="reveal.js/plugin/notes/notes.js"></script>
<script src="reveal.js/plugin/search/search.js"></script>
<script src="lib/jquery.js"></script>
<script src="lib/lodash.js"></script>
<script src="lib/backbone.js"></script>
<script src="lib/joint.min.js"></script>
<script src="lib/deflate.js"></script>
<script src="src/init_reveal.js"></script>
<script>
if(window.location.search.match( /print-pdf/gi )) {
document.getElementById('header').style="display:none";
document.getElementById('footer').style="display:none";
}
</script>
</body>
</html>