Viewing 15 posts - 436 through 450 (of 6,036 total)
Create a trigger to record values from inserted and deleted tables into a "trace" table.
Something like this:
Create trigger ....
for update
As
Insert into BATCHJOBHISTORY_ALERTSPROCESSED_trace
(TraceTime, ALERTSPROCESSED_old, ALERTSPROCESSED_new, pk_col)
Select GETDATE(), d.ALERTSPROCESSED,...
January 24, 2019 at 7:13 pm
Grant and Jason, can you point to that thing in the execution plan which suggests there is at least one nested view in the picture?
January 18, 2019 at 7:19 pm
January 18, 2019 at 12:33 am
Another case where the function does not do what I'd expect it to do:
DECLARE @Text NVARCHAR(max), @Delimiter NVARCHAR (10), @Quote NCHAR (1)
DECLARE
December 28, 2018 at 4:23 pm
2 important points.
The holiday table in the article misses a crucial column:
RuleID, or PatternID, or SetID, or TypeID, or whatever name you use to define different patterns of holidays.
Even...
December 27, 2018 at 5:07 am
There is a little problem with "quoted split" function (the one I spotted so far) - it does not handle "spaces only" strings well.
It returns NULLs instead. Even even empty...
December 26, 2018 at 6:13 pm
December 26, 2018 at 6:10 pm
Hey, Google, what was that I was about to google?
December 7, 2018 at 1:59 pm
December 2, 2018 at 6:02 am
December 1, 2018 at 7:13 pm
December 1, 2018 at 8:23 am
I gave an example in the post above.
Recognising buyer names in suppliers' data feeds.
If done wrong - invoices generated for wrong customers, processed according to inappropriate rules in a wrong...
November 26, 2018 at 12:47 pm
November 26, 2018 at 7:05 am
November 26, 2018 at 6:43 am
Must be a fascinating technical thing which is absolutely useless for actual users.
May be even worse - damaging for real life applications.
In no way I'm critisizing the...
November 25, 2018 at 6:16 pm
Viewing 15 posts - 436 through 450 (of 6,036 total)