You're probably thinking: "Only 17 hours?" Actually the course is 25 hours. 😀Watch part 2 here: kzbin.info/www/bejne/oqmolZR7odCEnrM
@santigogaming86303 жыл бұрын
U are the best. Thank You!
@freecodecamp3 жыл бұрын
@KEV IN The lectures are from a Fall 2020 online lecture at Cornell.
@weeyakkawonga62433 жыл бұрын
Some animals don't even live that long... 🤣
@weeyakkawonga62433 жыл бұрын
Nice & Great Resources...
@your_skyfall3 жыл бұрын
Damn
@dimangk3 жыл бұрын
The Structured Query Language (SQL) 00:00 - Introduction to Database Systems 11:47 - SQL intro 59:31 - SQL: Simple Analysis 1:46:30 - Advanced SQL Features Storing and Indexing Data 3:04:52 - Data Storage 3:54:05 - Tree Indexes 5:03:28 - Hash Indexes Relational Data Processing 5:52:44 - Query Processing Overview 6:20:53 - Operator Implemenations 7:30:28 - Hash Join, Sort-Merge Join 8:30:34 - More Operators and Query Plans 9:06:02 - Query Optimization Transaction Processing 10:40:23 - Transactions 11:00:22 - Isolation via Concurrency Control 12:16:03 - Two-Phase Locking 13:08:30 - More on Locking 14:12:53 - Concurrency Control Without Locking 15:06:23 - Recovery After System Crashes 1 15:59:12 - Recovery After System Crashes 2
@Muhammed-zn7ft3 жыл бұрын
Thanks
@vinayvupparapalli47823 жыл бұрын
thank you sooo much mate.!!!!
@girinskate42693 жыл бұрын
thank You
@oneManDev3 жыл бұрын
Awesome, thanks!
@manishsalve90603 жыл бұрын
Thank you man
@aronferix42953 жыл бұрын
Where money is everything then there are some people really teach for free. I wish these people succeed in life.
@jakedeng22883 жыл бұрын
The fact that we are getting these courses for free is just amazing
@prakash_773 жыл бұрын
You can support them too :)
@BiP003 жыл бұрын
@@prakash_77 indeed
@johnwig2853 жыл бұрын
Waiting for kids to argue that it isnt free because they get paid via ads...like bruh u are still watching it for free
@gavingonzalez71743 жыл бұрын
Yeah, I hate that people just take it for granted
@carrot50403 жыл бұрын
@@gavingonzalez7174 yeah me too
@detagabi78283 жыл бұрын
I swear when i get a job i will donate to this amazing site🙏
@acrobat8233 Жыл бұрын
Gotten a job yet?
@Mahakaal12219 ай бұрын
@@acrobat8233He is still watching I guess 😂😂
@Cute-dancer8593 жыл бұрын
GOD BLESS YOU ALL .... teachers who are enlighting the world with knowledge....
@johnboikov13602 жыл бұрын
I am so thankful this is out in the public domain!
@lukmanabrahim95222 жыл бұрын
@@johnboikov1360 80 wee. %kids
@cathlandemmanuel831 Жыл бұрын
Amen
@mso4324 Жыл бұрын
From the bottom of my heart, THANK YOU for publishing this course. It has helped clarify so many concepts for me and helped build a very strong DBMS foundation.
@marthinus.x2 жыл бұрын
1:55:46 - For anyone following along. The video games database from Kaggle has been updated, so column order will be different. Also notice: Professor Trummer is using NULL AS 'N/A', You might encounter an error where you cannot copy the CSV data into Postgres because of empty delimiters (,,,,), I suggest cleaning up the CSV file by issuing: sed -i -e 's/N\/A//g' yourfile.csv and using COPY yourtable FROM '/var/lib/postgresql/data/yourfile.csv' DELIMITER ',' NULL AS '' CSV HEADER; which should result in success.
@alrashidtowmir10993 жыл бұрын
what more can I say? You guys are blessed, sharing these valuable courses with us for free!
@bishnudas35623 жыл бұрын
I mean 3-4 ads won't hurt, Free content without ads, hatsoff
@some15033 жыл бұрын
0:00 introduction to database Systems 7:32 Resources 8:40 there website 9:50 intro SQL
@jacklion109 Жыл бұрын
Bro gave up 💀
@942255835 Жыл бұрын
14:09 DDL Commands 42:57 DML Commands 59:17 SQL Simple Analysis 2:08:15 Null Value Discussion 5:39:40 Linear Hashing
@tytusgierycz55633 жыл бұрын
It's wonderfull that there are people witch share wisdom. Now people with iron will and briliant mind could learn this beautifull concepts.
@amirjayousi1493 жыл бұрын
man did a 25-hour course in a library using a laptop and earphones what a legend
@programmer98093 жыл бұрын
it's not on a single day tho
@harshparikh78983 жыл бұрын
are you british?
@YarikASMRPOMIRCHIY2 жыл бұрын
@@programmer9809 yeah duh, it's 25 hours, definetely took him more than one day. 1 hour more
@amazhobner Жыл бұрын
BST type of index improves results by a factor of two, this factor can be increased using tree indexes and hash indexes. B+ Trees Index. Tree Index: Traverse search tree to find interesting leaf. Hash Index: Evaluate Hash functions to find buckets. Where to use Tree Indexes? Can be used if where clause uses equal or not equal predicate. Works if predicate references index key. Tree Indexes store data in root-leaf format. Similar data is stored closed together. Hence useful for both equality and inequality predicate. Hash Indexed store data in key:hash pair, similar value may hence be far apart. Hence useful for only equality predicate. Hash Index Variants: 1) Static Hashing(Bad for dynamic data) SS in folder. 2) Extendible Hashing (Expands with few high-overhead operations) 3) Lnear Hashing (Expands more "smoothly") About Data Storage: Data is stored in some physical hardware. More the memory of that, less is the volatility but so is the query time. Lesser the memory, more the volatility but lesser the query time. Volatility refers to recovery after failure. Data is stored as files, each file is further divided into slots which are further divided into fields. Buffer stores the most frequently possible used data to reduce the query time, it retains count of how many times the data was retrieved and if it goes below say 0 or a specified amount then that data is removed from buffer. Indexes- Refer to SS. Query Processing: Input query is parsed and simplified(Rewriter). Query optimizer generates optimized execution plan. Executing plan(Executor) produces query result. Operators in Query: 6:13:20
@AmrMohamed-rp8oi3 жыл бұрын
Such an amazing effort by FCC in the e-learning space Thanks Guys it is really appreciated 🤝 🙏
@TineshSakthiR5 ай бұрын
This video really helped me to get the clear understanding of the core concepts of the SQL. After watching this i solved two medium level SQL questions on leetcode, which i tried already but couldn't get the intuition before watching this video. This is a valuable content........
@Zorojuro67683 жыл бұрын
This is amazing, a full-fledged database course for free!
@shizs89563 жыл бұрын
How is it ? Did you watched it full ?
@sevoysans12153 жыл бұрын
Hey Shubham can you please tell me will this course completely cover all DBMS for gate exam?...
@oceanview31653 жыл бұрын
If I knew what I know now after spending thousands of dollars on a CS degree, I would start teaching myself front end development and data base back in freshman year and gradually learn data structure and algorithms along the way. Because now that I am a senior with no knowledge of web development just except copying and pasting of react code to get the project done, I feel pretty dumb compared to other self taught programmers who are actually familiar with different frameworks.
@alb123456723 жыл бұрын
CS degrees teach fundamentals. I graduated with an EE/CS degree in 1995. The stuff today is very similar (Maybe a step down, we used C++, now they use Python or Java). No school is going to teach you react. Same way back then they wouldn't teach you Visual Basic or even MFC. They are teaching you academic CS, which gives you the power to quickly pick things up. But we did have an SQL course like this (I just jumped around in it, I'm using SQL now for all that time!). I did use FCC to learn React though!
@Rojopaal3 жыл бұрын
This is the playlist of the course: kzbin.info/aero/PLXPbT_PYOiRipfX8zrv_9EpnSOpK9P__j
@rabbitazteca233 жыл бұрын
Yay! I am literally starting my college course on Database Management System in a week after finsihed my Data Struct and Algo course. Now I can study in advance lol. Thank you for this
@flashbao19223 жыл бұрын
This was the course I was missing for my interview 🥺! Thanks to you!
@rodnehmofan82423 жыл бұрын
Thank you for this!! this can help a lot people who are interested in this course but with no means to enroll to any university or online courses
@azizjihan3 жыл бұрын
I'm literally running out of reasons to go to college.
@orangemancometh3 жыл бұрын
Good. You can save $200,000 and avoid Marxist brainwashing all in one move.
@outhouse.wholesaler3 жыл бұрын
except for the companies that only hire you if you have a piece of paper saying you went to college
@rayaanhussain72793 жыл бұрын
@@outhouse.wholesaler true That's probably the only reason to go to college . To get that piece of paper that can be extremely valuable I'd say
@sanjayraju9883 жыл бұрын
Wish i’d found this before I’d have saved £9.25K
@orangemancometh3 жыл бұрын
_"Educating for free"_ Inbound marketing for a four-year degree: $234,344.00. Classes on Decentering whiteness, Critical race theory, and Evils of capitalism: priceless.
@mrTiberiuDubau3 жыл бұрын
awesome! thank you FCC, for this and for everything else! your efforts are highly appreciated!
@omairmajid60723 жыл бұрын
As much as I would love to watch all this in one sitting, it'd be nice to have timestamps, so that I can chunk my learning. Thanks, FCC!
@AhmadFIksan3 жыл бұрын
Check the description, they always put the timestamp in there.
@vigneshsenthil79803 жыл бұрын
i have this course this semester.Timing could have never been so perfect.
@manthanthakkar64063 жыл бұрын
Same here!
@sevoysans12153 жыл бұрын
Hey Vinesh and manthan can you please tell does this cover complete DBMS syllabus for gate exam?
@sevoysans12153 жыл бұрын
@@manthanthakkar6406 .
@vigneshsenthil79803 жыл бұрын
@@sevoysans1215 no this is based on the foreign syllabus i studied from "gate smashers" I was able to get good marks in my finals last sem for dbms
@sevoysans12153 жыл бұрын
@@vigneshsenthil7980 yeah I am in dilemma whether to do gate smasher course or this one....the univ name is attracting me
@JulioTex3 жыл бұрын
17 hours, let’s go! Thanks for always sharing amazing resources!
@ritikagupta853011 ай бұрын
The course is informative and well structured but could you provide us with subtitles or enable the auto-generated subtitles. It would be very helpful.
@eloscarc57827 ай бұрын
Fortunately I took Harvard's CS50 Course, I can understand everything he is talking about.
@rishabhkumar65353 жыл бұрын
Salute to your effort FCC, always provide new content to learn.
@shizs89563 жыл бұрын
How is it ? Did you watched it full ?
@luislopes806 Жыл бұрын
I want to say that I appreciate your Video it is very informative and explanatory. I have two questions: What is the Database Management for? What are SQL Command Types used for
@epicgameryt40522 жыл бұрын
Good short video, straight to the point! I'm kidding, but this video is of tremendous values. Thankyou everyone who has participated in this. Students, the teacher, the people working behind the scene, the editors. Thankyou from the bottom of my heart.
@abdullahalalif972810 ай бұрын
is this course for begainers/engineers or is it a reffresh for concepts for studnets??
@programmer40423 жыл бұрын
Free code camp saved the day again 'cause I have database systems exam tomorrow.
@freecodecamp3 жыл бұрын
Better watch on double speed then. 😀 Good luck!
@Abd-ov7ef3 жыл бұрын
The least thing that I can say about this channel, it's amazing and generous
@aushafy3 жыл бұрын
This course is better than my course on College.
@anshulmanapure19802 жыл бұрын
it's from cornell lol
@berendvanbeerschot14722 жыл бұрын
KZbin video player diff imo
@varunnarayanan87202 жыл бұрын
The Query Optimizer chooses the type of join, whether to use index etc..Basically we cant choose anything with regard to the method of execution other than making a key right? So basically we can skip 6.20 to 9.06
@JorgeEscobarMX2 жыл бұрын
Introduction to Database Systems, 17 hours. Let that sink in.
@bidhanbhattarai88633 жыл бұрын
I have said this before and I will say this again, this channel is a godsend
@shizs89563 жыл бұрын
How is it ? Did you watched it full ?
@bidhanbhattarai88633 жыл бұрын
@@shizs8956 Didn't watch in full. I covered the SQL part. It is great.
@shizs89563 жыл бұрын
@@bidhanbhattarai8863 thanks bro
@ronicave85223 жыл бұрын
Neat , now I find out this course existed a week after I had an exam about Transactions.... welp atleast il get to use it for the final.
@neenus3 жыл бұрын
Am I seeing this correct it's a 17+ hours of database course?! Awesome 😎 thank you!
@hemantsinghjadon8493 жыл бұрын
At 02:27:35, he missed the 'Group by' clause on the student name.
@manassricharanvarri3 жыл бұрын
Thanks alot and God bless you all who are working selflessly
@sirisaksirisak69813 жыл бұрын
X-ray problem.In quality control symtem if there're no defect outcome show that there's some thing missing in system of productivity alpha risk or beta risk, so we look at optimum point matter.
@piyushmahapatra54023 жыл бұрын
Aah, Shivaratri well spent !
@AmarKumar-zf7vk3 жыл бұрын
😊
@Oldstoryhouse3 жыл бұрын
And my garmiyo ki chutti too🤣🤣
@lazywarrior2 жыл бұрын
I dropped this course on the first week. Looking back, this is the best decision I have ever made. Congradulations for making such an easy course so hard to understand.
@scottzeta30672 жыл бұрын
As usual for those pedants in the uni would do🤮
@bhartityagi81833 жыл бұрын
They hv some of the best teacher.
@nidhishshanker80813 жыл бұрын
Please do a course on system design and software architecture
@ayazahmad84312 жыл бұрын
Thanks free code camp for sharing this awsome course to people for free. You're awesome 😚
@eloscarc57825 ай бұрын
With utmost sincerity, I didn't grasp anything, this was more words and letters than hands on. But I appreciate the upload
@joejoeliu3185Ай бұрын
where can i see the solutions to the exercises 🙏
@BcomingHIM3 жыл бұрын
Alexa, what is the definition of generosity?: Alexa: FCC
@ME-oe9gq3 жыл бұрын
Well well well, they have 8 hours part 2 also,
@mindfu11dr0n32 жыл бұрын
can you use mySQL to follow along with the course instead of post?
@Laliesposito5783 жыл бұрын
So thankful with this channel 💜 thank you so much!
@SQL2 жыл бұрын
It's a great lecture. Thank you! 🥰
@basingumarma4793 жыл бұрын
I wonder when they will give us DSA course with Python..I am looking forward to that day 🤠🤠🤠
@elluruveeranjaneyulu76513 жыл бұрын
🔥
@indraxios3 жыл бұрын
DSA cannot be understood with python I would say not even with java C++ is the best language maybe the only language to truly understand dsa
@kuzonkatekar77063 жыл бұрын
@@indraxios nonsense
@muskaanpuri49113 жыл бұрын
I am happy that i found this course!! BUT ! I kinda need subtitles😌
@AkhilNairjedi183 жыл бұрын
Thank you so much! Please make more videos on comp sci subjects like this!
@sevoysans12153 жыл бұрын
Hey akhil...can you please tell me about the course...does it covers all the syllabus (DBMS) for gate exam
@ehabelbakry8603 Жыл бұрын
اللهم صل على محمد وعلى ال محمد كما صليت على ابراهيم وعلى ال ابراهيم انك حميد مجيد اللهم بارك على محمد وعلى ال محمد كما باركت على ابراهيم وعلى ال ابراهيم انك حميد مجيد 😍😍😍😍😍
@NinoRUE3 жыл бұрын
Can you add subtiles in english please ??
@nakulhm27682 жыл бұрын
Can u please upload cc for both videos?
@TheSchmed2 жыл бұрын
All our storage is SSD these days, rarely a magnetic disk, and associated I/O lag, involved anymore.
@Annual_light2 ай бұрын
where are the solutions to the excercises?? I cant find it on their website
@codeitlikemiley3 жыл бұрын
this should have done in chunks and direct to the point, no one in their right mind would watch 17 hrs straight
@elieldedeazevedosantos85333 жыл бұрын
Deus abençoe vocês, God blessed you!!!
@ClaytonTownley2 ай бұрын
Thanks for the slides, too!
@umairalvi73823 жыл бұрын
Which software is he using for running queries,he didn't tell what to install.
@bd4vw3 жыл бұрын
Does this have any pre-requisites?
@arshpreetsingh2393 жыл бұрын
You need to have postgreSQL installed on your machine (most preferrably Linux OS) and you need to know a bunch of commands for common functionality of switching between databases. That's all. :)
@bd4vw3 жыл бұрын
@@arshpreetsingh239 Thanks a lot!
@mayanksinha71603 жыл бұрын
Helped me in My PhD thesis thank you
@bobbush53393 жыл бұрын
Very nice for the new student in database
@BcomingHIM3 жыл бұрын
Can you please bring a video on GCP certification? Associate engineer or professional architect. There is very few resources on internet other than the official docs. Google suggests following courses on Coursera which are quite expensive and acloudguru is also charging a lot.
@Zahra-tx7pw3 жыл бұрын
I can't say how much I'm thankful. Thank you so much, really thank you^^
@nitin992vij3 жыл бұрын
this is it, what a good time to learn. BIG THANKS !!!!!!
@shizs89563 жыл бұрын
How is it ? Did you watched it full ?
@marykatherine4080 Жыл бұрын
The whole 17 hours with broke throat 😅awesome presentation.
@witkas54843 жыл бұрын
It's cool how his vest colour changes over time
@ireshstha25132 жыл бұрын
what is formatting and validating field data in dbms?Give an example to illustrate.
@hueydo35222 жыл бұрын
it would be great if this comes with practice problems
@pratyush11343 жыл бұрын
3:05:40 Data storage
@CodeWavewithShahHussain3 жыл бұрын
Please anyone tell me that DBMS or this course is different?
@shashwatkumar65363 жыл бұрын
Eak hi dil hai, kitni baar jeetoge
@anshulmanapure19802 жыл бұрын
did really 615 thousand people really completed the whole 17hrs lecture!? Damn that's some big change someone bought in community.
@lazywarrior2 жыл бұрын
My advise: Don't start watching There are better RSS on this topic. For example the CMU lectures. Way better than this. The fact that this video allows us to preview this course and simply *skip it* entirely is amazing!
@mohamedtarek11518 ай бұрын
is both of them suitable for a backend developer or they are too much and if i watch cmu i wouldnot need this course
@fahadbawazir17713 жыл бұрын
Good & Awesome & waiting for the next part of 8 hours course
@PatriciaGarcia-u5f Жыл бұрын
this is so beautifully made
@Elijah_07 Жыл бұрын
I really want to take this course. I was really excited about this but I'm struggling with his accent. It's difficult to understand. 😢
@tamchuminh7022 Жыл бұрын
does the course have any assignment or quiz?
@marmarmarcos2 жыл бұрын
Great course, but why is he recording while on a poker table?
@mostafanizam20402 жыл бұрын
Thanks. Is it possible share tutorial about MS SQL server Maintence and Windows server?
@danielrocha57743 жыл бұрын
Thank you for this knowledge. I appreciate it very much 🤗
@TheSchmed2 жыл бұрын
Definition of your clustered index very important, can’t have covering indexes for every query, too expensive. I’ve seen many over normalize, to a point no query was less than 5-6 joins. Sometimes “real life” and what looks best “on paper”, does not agree, many instances a derived flat table was a solution for poor performance, due to number of joins, constantly stale index statistics, etc. I’ve seen queries designed in Oracle RDBMS work horribly in SQL Server. I’ve seen queries written in previous versions no longer work in a newer version (SQL 2000 -> 2005 and “Parameter sniffing” issue.
@deholovi Жыл бұрын
if the audio quality would be loud enough, it would be perfect! even with maximum volume, can't hear properly.
@jyrj3 жыл бұрын
Traditional Universities: "Our end is near, I can see it"😂 Good work freecodecamp. Keep up!
@obi3kenobi3 жыл бұрын
You do realize that this course was posted by "Traditional University" right? Thanks to Cornell University too.
@anshulmanapure19802 жыл бұрын
@@obi3kenobi lol exactly
@virterra2 жыл бұрын
Incredible resource. Thank you!
3 жыл бұрын
Could you please enable subtitles?
@tangweizhi47013 жыл бұрын
Please enable auto subtitles option!
@teddymills11882 ай бұрын
Dang. Every time I goto youtube it says here is a 11 or 15 hour CBT video. So of course I DL it. Do I watch it ? Im working on it :)
@aishamustapha4726 Жыл бұрын
Where can i find the solutions to the exercises, please?
@slashtab Жыл бұрын
where did you find the exercises? please reply.
@11shivamAhir0011 ай бұрын
anybody has complete notes above slides link is not working;(
@tnustv46873 жыл бұрын
I hope you can translate it into many other languages to make it easier for us to understand