Viewing 15 posts - 196 through 210 (of 1,229 total)
I would not fixate on sticking to one set based statement as I would to transactions. Each loop in a cursor can be thought of as a transaction . Where...
October 20, 2021 at 4:26 am
I've approached this type of situation , assuming I am deleting from the target table thouasnds of records that still would not make up a majority of the rows, using...
October 17, 2021 at 5:24 am
I found Erland Sommarskog's articles on SQL Error Handling very helpful. They are very detailed, and very long, but gave me a lot of reassurance that I understood all...
August 9, 2021 at 5:53 pm
Thank you for the nice article and breaking things down for us. Yes the mathematics of how much % gain is a interesting one. As I like to see it...
July 30, 2021 at 11:04 pm
Being a leader start with being you and not trying to be someone else. This comes down to confidence, Confidence is contagious in a good way. A good leader will...
July 29, 2021 at 9:36 pm
Getting back to your orignal article, thank you Gail for providing a feasible and simple alternative to the "get it done now" culture. Your article highlights the importance of caring...
July 29, 2021 at 1:12 am
@MMartin1 - Most of the flamers selectively read the article(s). In this case, they don't understand that you were demonstrating best practices of defense against worst practices of database...
June 2, 2021 at 7:16 pm
You mean “expected pitfalls with bad database design”. Why are you allowing NULLs in an ID column?
Its not about my design as much as what someone might encounter. Not...
May 21, 2021 at 3:23 am
Thank you for the fine article. Where does the concept of indek "seek" and index "scan" fit into this article? It would be good to cover if not already planned...
May 13, 2021 at 5:31 am
Thus, the only real issue is dirty reads. So, again, if dirty reads would cause you a problem, DON'T use NOLOCK. If not, you can consider it.
But...
The...
April 3, 2021 at 5:33 pm
Thank you for the article. The NOT IN operation > I would steer clear of this for performance and the potential for it to blow up if there is an...
November 8, 2019 at 9:03 am
I know about the hesitation with open transactions, but hard to be too careful when it comes to ensuring the data manipulation is done correctly.
July 14, 2019 at 6:36 am
You can use something like the below to indicate a total failure somewhere. At least in the testing phase.
begin transaction
declare @rowcount int
Select @rowcount = count(*) from...
July 14, 2019 at 6:33 am
I can imagine :). I get those as well on posts I did a long time ago. Surprise.!
November 13, 2018 at 10:22 am
Viewing 15 posts - 196 through 210 (of 1,229 total)