it feels very comfortable with pace of explanation that she provides, really easy to understand.
@marcinbadtke Жыл бұрын
Thank you. In relational model data is structured as tables. NOT stored in tables. Table is logical entity. Data is kept in heap.
@sriranjitharaghuraman164610 ай бұрын
It was really hard to see from your example why relational DBs are consistent or secure and why no-sql DBs were cost effective or scalable. Everything was a bit vague and unclear. :(
@philippeko-IBM Жыл бұрын
Hi Aisha, I would have loved seeing the simple exemple Customer-Order explained with non-relational databases. Thanks for this consideration. -Philippe
@LoneLeagle Жыл бұрын
I put GRAPH databases in the relational category because relationships are first class citizens in graph & the biggest strength of GRAPH is the ability to create complex relational that go levels deep with ease. I'd say the hardest part about learning software development is choosing which tech stack to learn & use.
@dilpreets72 жыл бұрын
in your example, you said John Doe (customer ID 1) made the first 2 order however in the second table the second order (order ID 2) was made by Customer ID 2 which is Jame smith. please clarify.
@jeandy44952 жыл бұрын
She made a mistake, indeed. John Doe made the first order and Jane Smith make order the second and third one.
@dougpoirier427 Жыл бұрын
@@jeandy4495 Still a very helpful video for the basics.
@adityajain1989 Жыл бұрын
She explained well.... This happen when you are in flow of explaining something magical.... Good Job IBM
@doraneko1412 жыл бұрын
she explained the concepts really well. Really easy to understand. Thanks a lot :D
@jjj2623 ай бұрын
+1
@VeraxMusic Жыл бұрын
I continue to be amazed at the educational material on this channel. I don't know why, but it just seems unexpected and almost arbitrary. It's like if I happened to randomly come to find that, say, Uber had some KZbin channel that provided world class content about the infrastructure of roads, or something. I guess I shouldn't be that surprised, as that's what they specialize in, but was not expecting it to be at this level, and taught so well. Anyway, this channel is great.
@13YearOldTalksAboutTech2 ай бұрын
It was the same for me! Gosh! I was trying to find videos for my half yearly examinations and found this channel. Being the huge tech fan I am, I of course clicked on the video and was thoroughly surprised by quality of the video. Thanks IBM
@asemic Жыл бұрын
5:28 i love how "value" is witted to combine the stick on the a and l characters :P
@rojaachan2 жыл бұрын
This was such a great explanation. Thank you so much for the insight!
@kaos092 Жыл бұрын
How do you scale horizontally without adding more resources? Would love to know.
@LuisGustavo-dk4qy2 жыл бұрын
Are you writing backwards?
@billybuck27132 жыл бұрын
i never got how these videos are made? With a mirror or what ?! im going insane
@pine_93562 жыл бұрын
they actually posted an explanation on their community page. Apparently all they do is flip the video horizontally in post
@simonsmashup2 жыл бұрын
Of course. Everyone does that.
@alelokaoseumu2 жыл бұрын
all they need to do is flip the image and it becomes readable to us.
@rjathar2 жыл бұрын
She's no more writing backwards than she is left handed... All you have to do is laterally invert the video to get this The reason we have trouble with it is because it fuses 2 common experiences for us... If the image is mirrored (laterally inverted, as above), we expect the subject to be between the viewer and the writing surface. However, if the writing surface is transparent and seems to be between the viewer and the subject then we expect it to not be laterally inverted. Combining these 2 experiences is what results in the mind meld you're seeing here
@andrewswift2317 Жыл бұрын
Every time she would start writing MIRRORED I would get distracted. What a talent XD
@oddeda Жыл бұрын
My guess is she's writing regularly, but mirrors the video in post.
@DrCroc100 Жыл бұрын
Relation in relational database doesn't stand for relation between tables. Relation means "table" in this context. It's database with tables. Scaling horizontally means we can scale out WITH more resources, not without.
@johanliebert2525 Жыл бұрын
No , you thanks you for giving me this lesson thank you so much Aesha Sayed
@olamy84032 жыл бұрын
Great job! Broken down so simply. She will make a great professor
@moestaxx2862 жыл бұрын
she did a great job explaining these concepts. thank you very much!
@bigtaco43622 жыл бұрын
Yes. Important topic and well wxplained
@puravupadhyay29617 ай бұрын
Nice video. I found the non-relational database types interesting, is there a detailed video about different types?
@darkpink_electronics45232 жыл бұрын
thanks IBM, that was helpful. but, which one should i use?
@bristinborah7 ай бұрын
If you look for speed and optimised data , you can proceed with NR
@DianaAdamczyk10 ай бұрын
Thank you, this was very clearly explained!
@Marvelous404 Жыл бұрын
Thanks a lot for this lesson Emily willis.
@manjithkumar_16 Жыл бұрын
Good explanation and easy to understand.. Thanks ..
@combeechan9 ай бұрын
What are some examples of non-relational databases?
@patrykwrobel5783 Жыл бұрын
Great videos also great communication skills from Aisha
@saburekennedy22835 ай бұрын
explained in a rather easy way to understand
@dushyantchaudhry46544 ай бұрын
7:01 how can you scale out without adding resources? horizontal scaling would mean adding more servers instead of adding compute to the same server (vertical scaling)
@dushyantchaudhry46544 ай бұрын
Am I wrong if I disagree entirely with the statement data is stored in tables? I could be wrong but I don't think it is. The data is stored in binary bits either in-memory or in persistent storage like SSD or HDD. In addition to storing this binary data, the relationships between the various bits, bytes of data values are stored as well. Allowing a DBA to define these relationships is the facility provided by the DBMS. The DBMS does not store data. Stores is an entirely incorrect verb in the context. In the case of RDBMS, these relationships are mentioned by linking data to different columns and rows (Name is the column and John is the value). In the case of NoSQL DBMS these relationships are defined in other ways such as linking a data value to a dat key (Name is the key and John is the value). In RDBMS the relationships are rigidly defined. An employee can't have information in an additional column (example middle name) if that column is not there for other employees. In NoSQL there is flexibility in defining these relationships between stored data values.
@Edxylom Жыл бұрын
Thanks Aisha. You explain very clean
@simonb700 Жыл бұрын
Sorry but I think you are wrong that columnar storage is non-relational. Relational just means that data is held in different, but joined, tables (e.g. third normal form), and the database can be either optimised for on line transactional processing (OLTP) or on line analytical processing (OLAP). Non-columnar technology is generally best suited to OLTP and columnar to OLAP. However, both can have data structured to be relational.
@gregwoodin56305 ай бұрын
Great video, thanks.
@minhajkhan5042 жыл бұрын
superb explanation! thanks
@iznabbas60202 жыл бұрын
Great video thanks
@timucinbahsi445 Жыл бұрын
to this day, i'm yet to see how the advantages of nosql are not applicable to relational dbs. since we have json fields in sql now, i could just delegate all the flexibility to a json column. idk how sql dbs are considered not scalable. sure it takes more configuration but it sure is done. cost effectiveness is kind of vague. it could mean easier to maintain thus less dba or dev time. i'm probably missing something but until i find out what it is, nosql is just what you need if your indexing game is weak. there i said it
@MhmdMhmd-xz6sk3 ай бұрын
Good video, in the nosql db you didn't give examples!
@AmarachiEzinwa-qp1rw7 ай бұрын
The video is very nice and I enjoyed but I don't quite get the scalability part
@EliseeMbusa-z4iАй бұрын
May you give several examples about relational database
@danjalosa10 ай бұрын
Very useful.
@damaroro Жыл бұрын
this simple question is often ask in job interview, so learn it carefulyy
@Ashen-pw9zp Жыл бұрын
Thank you so much. keep it up
@ChanceMinus2 жыл бұрын
Fantastic job! Thank you... 👍
@dadoll16602 жыл бұрын
Thank You.
@mostaphasaid7250 Жыл бұрын
thank you very much
@abigiyatadesse26722 жыл бұрын
Thank you so much.
@simersive Жыл бұрын
ngl the handwriting was absolutely outrageous but w video
@medical-wl9qc2 ай бұрын
Bubba, a single table is also called a relation. Not having to be linked but often so because of normalization.
@BradleyThomas Жыл бұрын
Is.... she writing backwards?
@Moonev_Fantasy7 ай бұрын
Thanks
@plontulublalulu2 жыл бұрын
is she writing all of this backwards?? holy pro
@fatcat22able Жыл бұрын
I think it’s more likely they mirror the video
@Tory_Rainman2 жыл бұрын
Thank you 😊
@chandansingh-sv3zv2 жыл бұрын
Good experience
@Cliporis Жыл бұрын
You are confusing me with "customers" and "clients". Seems like you are talking about the same people right?
@folklore_of_beth4 күн бұрын
This has no description of what a nonrelational database is...
@kahnfatmanАй бұрын
OBJECTION: Intro is totally misleading. What is a relation? It is an algebraic concept how two or more sets are related to each other. You don't need TWO tables to have this kind of relation. Each row in a data table is in and by itself a relation. For example: Column name forms a set of names, column date of birth is another set. Each item from column name is related to a date of birth item for every row.
@lilwolf69008 ай бұрын
How is she writing backwards?
@jimer6345 ай бұрын
not so clear explanation as to what their differences is?
@churrundog Жыл бұрын
I need to know if you're actually writing mirrored information on a glass, or how is our POV achieved on this video. I don't even care about databases anymore
@IBMTechnology Жыл бұрын
See ibm.biz/write-backwards
@SausageMachine2 жыл бұрын
Great explanation, but perhaps it's worth mentioning IBM's fantastic Functional Database TM1!
@TooManyMonster2 жыл бұрын
Super nice explanation and cute presenter
@adityajain1989 Жыл бұрын
Wish she smiles a bit too
@samjones43272 жыл бұрын
Thank You very much for a clear and concise explanation! Cheers!
@linmo83752 жыл бұрын
Really good explanation and it's weird that they choose such a way to show it. Normally the teacher would stand in front of the board, whereas in this case, it appears that the teacher stands behind the board??? My mind finds it hard to understand?
@astb01 Жыл бұрын
Don’t think the first relational example was correct. You have a customer table, an order table, you then should end up with an order-customers relational table which should only have an order ID and customer ID reference (nothing else)😊
@Lightbeerer Жыл бұрын
I disagree - there is only one customer per order, therefore the customerId can be stored in the order table.
@joshellis4966 Жыл бұрын
This is wrong. There would be a one-to-many relationship between customers and order. (one customer can place many orders). In this case, the "many-side" relation would have a foreign key to the "one-side" relation. The only time a new relation needs to exist is if the relationship is many-to-many. Then you'd have a table with the key mapping of both relations.