I couldn’t explain it better myself if I new it at that level, thank you for taking the time to explain it in detail.
@beardboyphotography7 ай бұрын
Thats a perfect video explaining the triggers, Thanks a ton Lisa!!
@TheBIHARIS Жыл бұрын
Thanks for the complete step-by-step explanation.
@omotayoogunnika6865 Жыл бұрын
Thanks for sharing, your video helped me to create a Trigger i've been trying to create for about 1 week & half prior.
@skdonsingh25 күн бұрын
Thank you ma'am It was nice explanation.
@Danitolonz1Ай бұрын
Hi Lisa! You're such a sweetheart and I love you so dearly! Please in what scenarios should I defer to use Stored procedures over UDFs and vice versa? Wen should I use SP and when should I use UDFs?
@monicacastillo11835 жыл бұрын
Thank you so much! You're a great teacher!
@hafizarahman99992 жыл бұрын
I am new on this, and this is help me a lot. Thanks so much!
@praji12022 жыл бұрын
I'm having a table with some data, and when there are some changes done to this table I need to create a trigger which will insert these changes to an already existing table but in a new column
@gunavamshi6902 жыл бұрын
Hi lisa , Nice video but how can we get the count of the number of the rows we have inserted using triggers
@neyon78244 ай бұрын
hi. thanks for the video. How come it still shows messages even after SET NOCOUNT ON??
@ibrahimhussain32482 жыл бұрын
If there was a insert with multiple rows at the same time from a table variable or multiple row inserts in same statement, all those triggers would fail since it is assigning INSERTED.[ColumnName] to a variable. You could just do INSERT INTO [dbo].[CustomerLogs] SELECT INSERTED.[CustomerId], 'Inserted' FROM INSERTED;
@christiandebellefeuille3245 Жыл бұрын
yup. In fact INSERTED is a virtual table. So you can do an inner join with it to do your stuff. For example, if you have to udpate multiple rows.
@umutogur3912 жыл бұрын
Thank you so much for your useful video.
@ShahnazMalik.2 жыл бұрын
Brilliant, you deserve a lot more subscribers. Keep your work up Do you have any video series on python, Azure and data science ML or AI?
@longle76034 жыл бұрын
Thanks Lisa, This really helped me out.
@jasonmichaelalunan24924 жыл бұрын
Thankyou maam lisa!!! This really helped me out ^_^
@john_yeager2 жыл бұрын
very nice example thanks
@radoslavdimitrov7505 Жыл бұрын
seems like in SQL Server 2022 there are not inserted or deleted pseudo tables and views. What should I use to make such triggers instead?
@marsdriver2501Ай бұрын
there, sql server management studio is just being dumb probably
@TecnologySoft Жыл бұрын
Estos ejemplos ya son muy comunes, q no saben hacer algo más complicado, y algo diferente
@nedu472 жыл бұрын
How did you come up with CustomerLogs?
@michaeljames44402 жыл бұрын
customerLogs is just a regular table that was created to keep track of triggers initiated
@gotchihaeyo18252 жыл бұрын
It's very hard to see and read
@grk6082 жыл бұрын
Hi Lisa, This is an AWESOME video but I'd like to know if you can help me take it a little further. I'd like to track WHAT changes were made, as well as WHO made the changes and on WHAT date and time. I'm super brand new at this but using this video, I was able to get some triggers up and running. Can you help or maybe point me in the right direction? Been all over youtube and I'm coming up dry. Thanks so much for all you do. -Glenn