-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyllabus.html
executable file
·253 lines (202 loc) · 13.9 KB
/
syllabus.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="">
<meta name="author" content="">
<link href="img/favicon-database.ico" rel="shortcut icon" type="image/x-icon" />
<title>CAS CS591 A1 - Syllabus - Data Systems Architectures @ Boston University</title>
<!-- Bootstrap Core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Theme CSS -->
<link href="css/clean-blog.min.css" rel="stylesheet">
<!-- Custom CSS -->
<link href="css/main.css" rel="stylesheet">
<!-- Custom Fonts -->
<link href="vendor/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href='https://fonts.googleapis.com/css?family=Lora:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-default navbar-custom navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header page-scroll">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
Menu <i class="fa fa-bars"></i>
</button>
<a class="navbar-brand" href="index.html">CS 591 A1</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="project.html">Project</a>
</li>
<li>
<a href="syllabus.html">Syllabus</a>
</li>
<li>
<a href="https://piazza.com/bu/spring2019/cs591a1" target="_blank">Forum</a>
</li>
<li>
<a href="http://www.bu.edu/cs/" target="_blank">CS @ BU</a>
</li>
<!-- <li>
<a href="contact.html">Contact</a>
</li>
-->
</ul>
</div>
<!-- /.navbar-collapse -->
</div>
<!-- /.container -->
</nav>
<!-- Page Header -->
<!-- Set your background image for this header on the line below. -->
<header class="intro-header" style="background-image: url('img/about-bg.jpg')">
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="page-heading">
<h1>Syllabus</h1>
<hr class="small">
<span class="subheading">What is this class about?</span>
</div>
</div>
</div>
</div>
</header>
<!-- Keeping it as a template for future notes -->
<!-- <div class="row">
<div class="col-lg-8 col-lg-offset-2">
<div class="alert alert-danger" role="alert">
<p><strong>Note: </strong> The material of the website is currently updated. Please visit periodically to monitor updates as the beginning of the semester approaches.
</p>
</div>
</div>
</div>
-->
<!-- Main Content -->
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-8 col-md-offset-2 text-center">
<h1>CS 591 A1 Syllabus</h1>
<p>Fundamental concepts of database management systems. Topics include: data models (relational, object-oriented, and others); the SQL query language; implementation techniques of database management systems (storage and index structures, concurrency control, recovery, and query processing); management of unstructured and semistructured data; and scientific data collections.</p>
<h1>Why should I take this class?</h1>
<p style="margin-bottom: 10px;"> Our every day activities, our business and government management activities, and scientific discovery today are heavily based on generating, storing, managing, and accessing massive amounts of data.</p>
<p class="no-margin"> We live in a <em>data-driven world</em>.</p>
<p style="margin-top: 10px;">Database systems provide the necessary infrastructure to manage huge data collections. This class serves as a comprehensive introduction in the key concepts of the architecture of modern database systems. We will discuss both traditional approaches used modern trends that shape the data management industry today. The primary focus of the course will be on the core concepts of the <em>internals</em> of database systems, covering query processing, storage and memory management, query optimization, transactional processing, recovery, as well as SQL and data modeling. We will also discuss the history of database systems and their evolution over the years. </p>
<h1>Textbooks</h1>
<p> In this class we will use big parts of the seminal textbook <a href="http://pages.cs.wisc.edu/~dbbook/" target="_blank"> <strong>Database Management Systems</strong>, by <em>Raghu Ramakrishnan and Johannes Gehrke</em></a>, and recent research papers that cover recent trends in data management. </p>
<h2>Additional Reading Material</h2>
<p>
<ul>
<li class="links_in_li"> <a target="_blank" href="http://mvdirona.com/jrh/perspectives/content/binary/ArchitectureOfDatabaseSystem.pdf" target="_blank">Architecture of a Database System</a>, by J. Hellerstein, M. Stonebraker and J. Hamilton </li>
<li class="links_in_li"> <a target="_blank" href="http://db.csail.mit.edu/pubs/abadi-column-stores.pdf" target="_blank">The Design and Implementation of Modern Column-store Database Systems</a>, by D. Abadi, P. Boncz, S. Harizopoulos, S. Idreos, S. Madden </li>
<li class="links_in_li"><a href="http://citeseerx.ist.psu.edu/viewdoc/download;jsessionid=96143358AC36DB099F26DC24634BA73D?doi=10.1.1.219.7269&rep=rep1&type=pdf" target="_blank">Modern B-Tree Techniques</a>, by Goetz Graefe, <em>Foundations and Trends in Databases, 2011</em> </li>
</ul>
</p>
<h1>Notes</h1>
<p>
In every class two students will be assigned to take notes, in order to maintain a document with collaborative notes (allowing later all students to enrich this document further). Collaborative notes is part of your class participation grade, and it is going to be helpful in reciting the material and also seeing how other classmates perceive it. You can find on the top right of the website the link to the collaborative notes.
</p>
<h1>Prerequisites</h1>
<p>Comp15. Programming skills. Systems skills.
<!-- <h1>Course Requirements & Expectations</h1> -->
<!-- <h1>Assignments</h1> -->
<h1>Grading</h1>
<p>
Class Participation: 5%<br>
Homeworks: 15%<br>
Project 0: 5%<br>
Project: 30%<br>
Midterm 1: 20%<br>
Midterm 2: 25%<br>
</p>
<p>
SQL Hands-On Test (bonus): 5%<br>
Homework 4 (bonus): 2%<br>
</p>
<a name="late"></a>
<h1>Late policy</h1>
<p>Students needing additional time may submit assignments late, up to four (4) days after the assignment due date with increasing penalty. Students who submit work with delay one (1) day will receive a penalty of 5%, two (2) days 10%, and up to four (4) days 25%.
</p>
<p>A <strong>homework assignment</strong> can no longer be submitted after four days. </p>
<p>A <strong>project submission</strong> will still be accepted beyond the four days period <strong>after communication with the instructor</strong>, at the penalty of 25%. </p>
<h1>Additional Resources</h1>
<p>Tufts University values the diversity of our students, staff, and faculty; recognizing the important contribution each student makes to our unique community. Tufts is committed to providing equal access and support to all qualified students through the provision of reasonable accommodations so that each student may fully participate in the Tufts experience. If you have a disability that requires reasonable accommodations, please contact the Student Accessibility Services office at <a href="mailto:[email protected]">[email protected]</a> or 617-627-4539 to make an appointment with an SAS representative to determine appropriate accommodations. Please be aware that accommodations cannot be enacted retroactively, making timeliness a critical aspect for their provision.
</p>
<h1>Ethics</h1>
<p> Discussion among students for assignments and for the project is both encouraged and expected, however, the details of each submission (assignment or project) should be original, showing the unique thinking of each student (or group of students accordingly).</p>
<p>While computers enable easy copying and collaboration both with other students and materials from the Internet, it is possible to use these same computers to detect plagiarism and collaboration. The course staff reserves the right to use any available computational tools, or to write new tools to search for infractions. In addition, all work turned in is the property of Tufts University.</p>
<p> Students should read the Tufts handbook on academic integrity located on the judicial affairs website: <a href = "http://students.tufts.edu/student-affairs/student-life-policies/academic-integrity-policy" target="_blank">http://students.tufts.edu/student-affairs/student-life-policies/academic-integrity-policy</a>.</p>
<p>If any student does not understand these terms or any material outlined in The Academic Code of Conduct it is his/her responsibility to talk to the professor.</p>
<!-- <p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Saepe nostrum ullam eveniet pariatur voluptates odit, fuga atque ea nobis sit soluta odio, adipisci quas excepturi maxime quae totam ducimus consectetur?</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eius praesentium recusandae illo eaque architecto error, repellendus iusto reprehenderit, doloribus, minus sunt. Numquam at quae voluptatum in officia voluptas voluptatibus, minus!</p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Nostrum molestiae debitis nobis, quod sapiente qui voluptatum, placeat magni repudiandae accusantium fugit quas labore non rerum possimus, corrupti enim modi! Et.</p>
-->
</div>
</div>
</div>
<hr>
<!-- Footer -->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<!-- <ul class="list-inline text-center">
<li>
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-twitter fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-facebook fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
<li>
<a href="#">
<span class="fa-stack fa-lg">
<i class="fa fa-circle fa-stack-2x"></i>
<i class="fa fa-github fa-stack-1x fa-inverse"></i>
</span>
</a>
</li>
</ul> -->
<p class="copyright text-muted">Copyright © Manos Athanassoulis 2016-2017</p>
</div>
</div>
</div>
</footer>
<!-- jQuery -->
<script src="vendor/jquery/jquery.min.js"></script>
<!-- Bootstrap Core JavaScript -->
<script src="vendor/bootstrap/js/bootstrap.min.js"></script>
<!-- Contact Form JavaScript -->
<script src="js/jqBootstrapValidation.js"></script>
<script src="js/contact_me.js"></script>
<!-- Theme JavaScript -->
<script src="js/clean-blog.min.js"></script>
</body>
</html>