Correction on point C. Consistency does not mean the data should not go below 0 in the "amount section". It means that if the account balance is 300, and I decrement by 100, and after the transaction if I read the balance, it should be 200 right away. There cannot be a delay of updation after the transaction ends and I made a read.
@blenderbottle3822 жыл бұрын
ty for the clarification bro
@nalamkhan2 жыл бұрын
wow, legend. now, i understood the TX, and that why is it important for all operations to be sucessul or none to be called TX.
@Michelle_a94 ай бұрын
This correspondence serves as confirmation of the successful transfer from the bank to your Visa/Mastercard card.
@SandipanSarkar-c8v10 ай бұрын
Finished watching
@bahmanklingensmith4 ай бұрын
This serves as formal notification of the successful receipt of the BTC transaction.
@TJOHN-pl2cr9 ай бұрын
superb video sir. tnqs a lot. love from india
@VeronicaAngryPolak2 жыл бұрын
thank you for this explanation. really easy to follow and a good pace.
@BeABetterDev2 жыл бұрын
Glad you enjoyed it!
@hurairaFurqan Жыл бұрын
Yes! A very good video. You have explained so much clearly with examples in less time. Satisfied & Subscribed.
@vijaypatneedi4 жыл бұрын
One more 💎 on youtube, love the way you are explaining things...
@BeABetterDev4 жыл бұрын
Thank you so much 😀
@bhuman64653 жыл бұрын
Nicely explained in short time
@BeABetterDev3 жыл бұрын
Thanks !
@rohitvarshney50744 жыл бұрын
i appreciate your work, explained Tx in very easy way ! thanks
@BeABetterDev4 жыл бұрын
You're very welcome Rohit!
@dixztube6 ай бұрын
Hey man great video
@injlm3 жыл бұрын
Thanks a lot
@BeABetterDev3 жыл бұрын
You're very welcome Luis!
@amarbugarin22423 жыл бұрын
Great explenation, no bs or padding the vide
@neoland15273 ай бұрын
ill consider this the next time i drop acid. sorry i had to do the joke
@JohnMusicbr4 жыл бұрын
Awesome. Thank you.
@BeABetterDev4 жыл бұрын
You're welcome!
@fahadasad57822 жыл бұрын
Thank you, this video was very helpful. :)
@BeABetterDev2 жыл бұрын
You're very welcome!
@liorbm13 жыл бұрын
This is a part of some playlist ?
@nathan.s0486 ай бұрын
safe bro
@Jeff___6g54 ай бұрын
Sarcastically, oh, because transfers from banks to cards are always such a nail-biting affair, aren't they? But hey, it happened.
@brianchiruka1923 жыл бұрын
Brilliant!
@BeABetterDev3 жыл бұрын
Thanks Brian!
@Elias130832 ай бұрын
❤
@thenightshow848612 күн бұрын
What the concept of Serializability?
@adrianadinata12342 жыл бұрын
thankyou
@BeABetterDev2 жыл бұрын
No problem!
@denisleonard15652 жыл бұрын
Hi there, what is the best practice to implement the database transactions? should it be implemented in database stored procedures or in the backend code?
@BeABetterDev2 жыл бұрын
Hi Denis, Typically databases support Transactions as part of update operations. We very rarely need to roll our own. For example, here's some documentation on Postgres transactions: www.postgresql.org/docs/8.3/tutorial-transactions.html Hope this helps