23 Win
23 Win
1 | Page
2023 winnter adm
javascript
Copy code
db.Inventory.find({ $or: [{ status:
"A" }, { qty: { $gt: 30 } }] })
Inheritance:
Inheritance in SQL allows tables to inherit properties
2 | Page
2023 winnter adm
3 | Page
2023 winnter adm
</book>
</bookstore>
Last
Enrollm First Contact Cour
Na City
ent Id Name No. se Id
me
1011 Dinanj Gupt Kolka 9272567 C345
4 | Page
2023 winnter adm
Last
Enrollm First Contact Cour
Na City
ent Id Name No. se Id
me
an a ta 819
Meht Kolka 9801273
1015 Juhi C689
a ta 883
5 | Page
2023 winnter adm
6 | Page
2023 winnter adm
Data
Aspect Data Mining
Warehousing
view of
datasets for
Scope organizational
analysis.
data.
Clustering,
Techniqu ETL (Extract,
Classification,
es Used Transform, Load).
Association.
Weka, RapidMiner, Oracle, SQL
Tools
SAS. Server, Teradata.
Prepares data for
Generates
Outcome analysis and
actionable insights.
reporting.
1. MapReduce Architecture:
mathematica
Copy code
Input Data
↓
Split Input
8 | Page
2023 winnter adm
↓
Mapping Phase
↓
Shuffling and Sorting
↓
Reducing Phase
↓
Final Output
2. Phases of MapReduce:
o Input Splitting:
o Mapping Phase:
Each split is processed by the mapper to generate
intermediate key-value pairs.
Example:
scss
Copy code
(Hadoop, 1), (Welcome, 1), (to, 1),
(class, 1), (Hadoop, 1), (is, 1),
(good, 1), (Hadoop, 1), (is, 1),
(bad, 1)
9 | Page
2023 winnter adm
sorted by key.
Example:
css
Copy code
(Hadoop, [1, 1, 1]), (Welcome,
[1]), (to, [1]), (class, [1]), (is,
[1, 1]), (good, [1]), (bad, [1])
o Reducing Phase:
The reducer processes the grouped pairs to produce
the final output.
Example:
scss
Copy code
(Hadoop, 3), (Welcome, 1), (to, 1),
(class, 1), (is, 2), (good, 1),
(bad, 1)
3. Final Output:
makefile
Copy code
Hadoop: 3
Welcome: 1
to: 1
class: 1
is: 2
good: 1
bad: 1
10 | P a g e