Viewing 15 posts - 1 through 15 (of 17 total)
Great article! As one of the "support people have to pick up bugs in live code," we tend to be quick to blame the developers without considering their world. Most...
June 11, 2019 at 1:04 pm
Just an update....
SELECT
@checkpoint_id = MAX(checkpoint_id)
FROM ssf_widget_checkpoint WITH (NOLOCK)
So this is the primary issue. Ironically, we...
March 8, 2017 at 7:13 am
bmg002 nailed it! 99% of the naming conventions and code are from the software vendor. Did you ever hear the phrase "..changing a horse midstream?" If I ended up going to...
March 7, 2017 at 7:03 am
March 6, 2017 at 7:45 am
"Without HOLDING A LOCK on that table when you get the MAX (until you do your subsequent INSERT) means any other process (those constant UPDATE/INSERTs) can create a duplicate key."
March 6, 2017 at 7:40 am
Thank you for the response. I do appreciate it! Just to give my pointless replies. 🙂
1)Dirty reading is fine in this instance. The data being read will not...
March 4, 2017 at 9:35 pm
Great article/script and VERY eye-opening!! I'm not part of our company's DBA team, but I have a few sandboxes to play in. Just running it in our test...
February 18, 2016 at 8:12 pm
It's taken us about 5 years, but we are 99% to an Active Directory Group solution. It has made life much easier for our DBA team and to pass...
February 18, 2016 at 7:35 pm
I am not a developer. However, as most of us SQL-ers do, I often have to modify or create code to work through and issue or project. It...
October 29, 2015 at 7:05 am
Great article Steve! I am neither an "official" DBA nor developer. However, I work with the database all day, every day on the operations and projects sides. ...
April 10, 2015 at 3:56 pm
It WAS easy. Yes, I missed it as well. Sometimes we look for the difficulty in a problem, we miss the easy solution. Point well made, indeed....
February 12, 2015 at 7:20 am
Arrrrggghhh! If only I had this article a few weeks ago. Great job! I do appreciate the detailed trouble-shooting explanations...our whole team does!
August 5, 2014 at 5:19 pm
Terry300577 (12/20/2012)
TriggerMan (12/20/2012)
December 21, 2012 at 7:12 am
Viewing 15 posts - 1 through 15 (of 17 total)