BCNF Decomposition

  Рет қаралды 52,554

CSDS - Computer & Data Science

CSDS - Computer & Data Science

Күн бұрын

Пікірлер: 41
@JohnBogart-o9l
@JohnBogart-o9l 8 ай бұрын
Amazing, you managed to make a clear explanation in 8 minutes whereas my professor confused the entire class over 2 lectures
@syedrafayullah6749
@syedrafayullah6749 2 жыл бұрын
Thank you so much, this is the only video that helped me bro.. I have been trying to understand this all semester...
@thierrybeaulieu4403
@thierrybeaulieu4403 2 жыл бұрын
You're now partially responsable of my degree
@UTKARSHMISHRA-rc8lt
@UTKARSHMISHRA-rc8lt 8 ай бұрын
one of the best videos out there on BCNF
@singouini9687
@singouini9687 7 ай бұрын
Life saver, out of the pool of videos, yours is the only one that did the job! Thanks
@Ragehunter
@Ragehunter 6 ай бұрын
No cap, after searching and listening all BCNF videos on KZbin for DBMS finals this video is BEST VIDEO for BCNF. If you see this please dont skip this gem video. Thank you so much man, amazing explonation 🙏👌💯
@spamcolector
@spamcolector Жыл бұрын
Thank you, very useful for CS students.
@valerianafuna8972
@valerianafuna8972 11 ай бұрын
this is the only video that i understood
@bamusalako
@bamusalako 2 жыл бұрын
gj that was very well explained and good sheets instandly understood, damn its hard to find good explaining videos but when youve found one youre happy and i am now ty man
@sumithreddy1088
@sumithreddy1088 Жыл бұрын
Thanks a lot !!!!! Was confused with this topic but ur lecture is very clear !!!!!!
@aryankhandelwal1659
@aryankhandelwal1659 2 жыл бұрын
nicely covered all concept of bcnf decomposition in such a short video great man👍👍
@norhanecherif
@norhanecherif Жыл бұрын
thank you so much , this is the only video that helped me
@theguitartist__
@theguitartist__ 2 жыл бұрын
life saving stuff, thank you so much
@abbasnassar6114
@abbasnassar6114 6 ай бұрын
Thank you very much 🎃🎃
@diegomorales4843
@diegomorales4843 Жыл бұрын
Wow, amazing explanation, thank you so much!
@Νεόπλαστος
@Νεόπλαστος 2 жыл бұрын
FDs A->C and B->D have attributes that depend on part of the candidate key, so this relationship is not even in 2NF, let alone 3NF. So, how can you proceed with BCNF decomposition if it is not 3NF?
@martinlunn9660
@martinlunn9660 2 жыл бұрын
The relation doesn't need to be in any specific form to be decomposed.
@Νεόπλαστος
@Νεόπλαστος 2 жыл бұрын
@@martinlunn9660 I think you are mistaken. BCNF is a subset of 3NF which in turn is a subset of 2NF. To decompose to BCNF, the FDs need to be in 3NF. Do not forget that FDs are describing a database schema so "relation doesn't need to be in any specific form to be decomposed' is invalid since you are not decomposing relations, but rather database schemas.
@abdullahshahid9051
@abdullahshahid9051 Жыл бұрын
@@Νεόπλαστος Strictly speaking, a relation doesn't need to be in 2NF to apply BCNF decomposition. However, it is more common to first ensure that a relation is in 2NF before moving on to decompose it into BCNF, as the process of normalization typically follows a step-by-step progression from 1NF to 2NF to 3NF and then to BCNF. If you decompose a relation directly into BCNF, it will automatically satisfy the requirements of 2NF (and 3NF) as well. This is because BCNF is a stronger normal form than 2NF and 3NF.
@bhavyakumar7423
@bhavyakumar7423 2 жыл бұрын
Very well done! Keep it up!!
@dokyungsoo8623
@dokyungsoo8623 6 ай бұрын
Isnt closure of B is B,D,E?
@988skywalker
@988skywalker 2 жыл бұрын
For Canditate Keys for something like R4 lets say you end up with something like (A, C, F, G, E) would that be ACF->GE or AC->FGE or would it be ACFG->E, I was a bit of confused did this arrow just need to be true for the functional dependencies given in the problem I was working on?
@csds-computerdatascience3452
@csds-computerdatascience3452 2 жыл бұрын
Candidate keys are defined by the known functional dependencies. The candidate key for (A,C,F,G,E) would be the minimum amount of attributes that there closure has all the attributes of the relation (A,C,F,G,E)
@988skywalker
@988skywalker 2 жыл бұрын
@@csds-computerdatascience3452 oh okay is it necessary to find all super keys at the beginning or is one sufficient
@platinoob__2495
@platinoob__2495 2 жыл бұрын
If i have, for example, R(A,B,C,D,E,F) and F is not in any Functional dependency, what do I do?
@csds-computerdatascience3452
@csds-computerdatascience3452 2 жыл бұрын
In this case, we use the functional dependency F->F, because F can be determined from itself. The rest of the decomposition is according to the steps in the video.
@platinoob__2495
@platinoob__2495 2 жыл бұрын
@@csds-computerdatascience3452 thank you very much
@actellimQT
@actellimQT 9 күн бұрын
here from wikipedia!
@jl-wi4oh
@jl-wi4oh 2 жыл бұрын
legend
@XD-wn6li
@XD-wn6li 2 жыл бұрын
why do you show AB->AB in R6? don't we want to show AB->CD?
@csds-computerdatascience3452
@csds-computerdatascience3452 2 жыл бұрын
C & D are not in the partial relation R6, therefore the relation AB-> CD is not present in the relation R6. In each partial relation we are looking for the relevant functional dependencies, and in R6 this is only AB->AB.
@JeepartN
@JeepartN Жыл бұрын
im sorry but what does the plus mean in {D}⁺ ?
@csds-computerdatascience3452
@csds-computerdatascience3452 Жыл бұрын
{D}⁺- is the closure of the attribute D. The plus sign refers to the closure. If the term closure isn't familiar, I suggest checking out my video on the closure of an attribute. kzbin.info/www/bejne/iIiUaJ2jbs2Fatk
@anishmanandhar1203
@anishmanandhar1203 2 жыл бұрын
Alot of videos I see has refered R - X for X-> A and XA are you sure that this is correct?
@taliamoshe8578
@taliamoshe8578 Жыл бұрын
wait why you havnt put the R=(ABCD) from the start? you rather smaller R's?
@muhammadsameer1512
@muhammadsameer1512 Жыл бұрын
Thanks Sir...
@ArvindLohar-h2k
@ArvindLohar-h2k 2 ай бұрын
why we should create table of AB->AB .. whyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy
@freakninja1480
@freakninja1480 2 ай бұрын
Thats why this video only got 800likes, that video is full of crap, so confusing and just a waste of time, dont watch it guys
@Michael-wh4my
@Michael-wh4my 2 жыл бұрын
@Exquisite_Blue
@Exquisite_Blue 2 жыл бұрын
My guy it just does not compute in my brain. F
@csds-computerdatascience3452
@csds-computerdatascience3452 2 жыл бұрын
Sorry to hear that my friend
Learn Database Normalization - 1NF, 2NF, 3NF, 4NF, 5NF
28:34
Decomplexify
Рет қаралды 2,1 МЛН
07-03-bcnf.mp4
23:03
Stanford Dbclass
Рет қаралды 31 М.
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 103 МЛН
VIP ACCESS
00:47
Natan por Aí
Рет қаралды 12 МЛН
Learn Boyce-Codd Normal Form (BCNF)
13:37
Decomplexify
Рет қаралды 110 М.
Normalisierung von Datenbanken - Überführung in die BCNF Normalform
11:34
Boyce-Codd Normal Form (BCNF) | Database Normalization | DBMS
4:42
Studytonight with Abhishek
Рет қаралды 793 М.
3.10 Dekomposition
16:15
OpenHPI Tutorials
Рет қаралды 1,5 М.
BCNF EXAMPLE 1
11:17
SHASHI RANJAN
Рет қаралды 11 М.
Database Normalization 1NF 2NF 3NF
10:26
Jesper Lowgren
Рет қаралды 182 М.