Viewing 15 posts - 61 through 75 (of 5,101 total)
Schedules aren't executed, it's the jobs that are, the schedule just denotes the time(s) that job runs. If you can't see that the job was executed at that time then,...
February 14, 2023 at 3:18 pm
One method would be to check if the current row isn't NULL
and use LAG
to check the prior row was NULL
and if this is true then denote it...
February 14, 2023 at 9:49 am
Thanks Grant. I'm not looking at doing any speaking, just attending. I'll have a look at these and see how they fit in with the Calendar. 🙂
Misunderstood. Apologies....
February 9, 2023 at 5:12 pm
The " ORDER BY id DESC " portion on your solution is unnecessary. I don't think it help in any way, not even performance. Am I wrong?
No, it's certainly...
February 9, 2023 at 3:42 pm
And thanks for the reminder that I should probably publish the testing I did for that.
In truth, I need to do my own testing on it as well. I...
February 9, 2023 at 3:20 pm
So where do these linked integers come from? Why, for example, is 1
linked to 1
, 2
, and 3
, but the numbers 8
to 14
only linked to...
February 9, 2023 at 3:05 pm
So where do these linked integers come from? Why, for example, is 1
linked to 1
, 2
, and 3
, but the numbers 8
to 14
only linked to 8
?
February 9, 2023 at 2:32 pm
SQLBits, but call for speakers closed months ago. That's the big one in the UK. Next is Relay. The call for speakers probably opens late spring. After that, Data...
February 9, 2023 at 1:31 pm
Shifting gears a bit, I'm hoping this year that work will be happy to pay (or at least contribute) to me getting out and going to some SQL based events...
February 9, 2023 at 11:14 am
I can barely read those images, so I'm not sure what it's trying to show anyone. Can you elaborate?
February 9, 2023 at 9:53 am
What I find extremely frustrating is when someone writes SQL code that joins multiple tables without prefixing the column names with their originating table or alias using dot notation....
February 8, 2023 at 4:37 pm
What I find extremely frustrating is when someone writes SQL code that joins multiple tables without prefixing the column names with their originating table or alias using dot notation....
February 8, 2023 at 4:36 pm
I will admit, and though I know it shouldn't, it does amuse me when I see code that has something like this:
SELECT *
FROM dbo.MyTable MT ;WITH (NOLOCK)
...
February 8, 2023 at 3:48 pm
A good friend, Aaron Bertrand, does it for all his demo scripts. However, he has a good reason (even if I don't agree). Because people are more than a...
February 8, 2023 at 12:43 pm
Forget leading commas. Let's debate leading semi-colons. @=)
.Please no >_< .Leading commas I accept as a preference, but leading semicolons are another matter entirely, lol .Those are like starting...
February 8, 2023 at 12:18 pm
Viewing 15 posts - 61 through 75 (of 5,101 total)