-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdbms.html
More file actions
86 lines (74 loc) · 3.88 KB
/
dbms.html
File metadata and controls
86 lines (74 loc) · 3.88 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DBMS Course - Teachwave</title>
<link rel="stylesheet" href="dbms_style.css">
</head>
<body>
<header>
<h1>Teachwave - DBMS Course</h1>
<p>Welcome to the Database Management System (DBMS) course!</p>
</header>
<nav>
<h2>Course Navigation</h2>
<ul>
<li><a href="#intro-to-dbms">Introduction to DBMS</a></li>
<li><a href="#dbms-architecture">DBMS Architecture</a></li>
<li><a href="#data-modeling">Data Modeling</a></li>
<li><a href="#sql-queries">SQL Queries</a></li>
<li><a href="#normalization">Normalization</a></li>
<li><a href="#transaction-management">Transaction Management</a></li>
<li><a href="#dbms-security">DBMS Security</a></li>
<li><a href="#indexing">Indexing and Hashing</a></li>
</ul>
</nav>
<main class="content">
<div class="section" id="intro-to-dbms">
<h2>Introduction to DBMS</h2>
<p>This topic introduces you to the basic concepts of a DBMS, the role of databases, and how DBMS helps in managing data efficiently.</p>
</div>
<div class="section" id="dbms-architecture">
<h2>DBMS Architecture</h2>
<p>Learn about the three levels of DBMS architecture: internal level, conceptual level, and external level.</p>
</div>
<div class="section" id="data-modeling">
<h2>Data Modeling</h2>
<p>Understand data models, such as Entity-Relationship (ER) modeling, and how to design database structures using these models.</p>
</div>
<div class="section" id="sql-queries">
<h2>SQL Queries</h2>
<p>Master SQL for querying and manipulating data, including SELECT, INSERT, UPDATE, DELETE, and joins.</p>
</div>
<div class="section" id="normalization">
<h2>Normalization</h2>
<p>Learn about normalization techniques to eliminate redundancy and ensure data integrity in the database.</p>
</div>
<div class="section" id="transaction-management">
<h2>Transaction Management</h2>
<p>This topic covers the concepts of transactions, ACID properties, and how to manage database transactions for consistency and reliability.</p>
</div>
<div class="section" id="dbms-security">
<h2>DBMS Security</h2>
<p>Learn about database security mechanisms, including authentication, authorization, and encryption to safeguard your data.</p>
</div>
<div class="section" id="indexing">
<h2>Indexing and Hashing</h2>
<p>Understand indexing techniques and how hashing can improve the speed of data retrieval operations in large databases.</p>
</div>
<div class="section" id="links">
<h3>References:</h3>
<a href=" https://youtube.com/playlist?list=PLBlnK6fEyqRiyryTrbKHX1Sh9luYI0dhX&si=UwV78bSys8625snB " target="_blank">DBMS_01</a><br>
<a href=" https://youtube.com/playlist?list=PLBlnK6fEyqRiyryTrbKHX1Sh9luYI0dhX&si=UwV78bSys8625snB " target="_blank">DBMS_02</a><br>
<a href=" https://youtube.com/playlist?list=PLBlnK6fEyqRiyryTrbKHX1Sh9luYI0dhX&si=UwV78bSys8625snB " target="_blank">DBMS_03</a><br>
<a href=" https://youtube.com/playlist?list=PLBlnK6fEyqRiyryTrbKHX1Sh9luYI0dhX&si=UwV78bSys8625snB " target="_blank">DBMS_04</a><br>
<a href=" https://youtube.com/playlist?list=PLBlnK6fEyqRiyryTrbKHX1Sh9luYI0dhX&si=UwV78bSys8625snB " target="_blank">DBMS_05</a><br>
<p>CREDITS: GEEKS FOR GEEKS, GATE SMASHERS</p>
</div>
</main>
<footer>
<p>© 2024 Teachwave - All rights reserved</p>
</footer>
</body>
</html>