Viewing 10 posts - 16 through 25 (of 25 total)
And all this stuff really works well if all releases happen in sequential order, and you don't have someone come in halfway through a development phase screaming for a patch...
October 23, 2018 at 11:47 pm
September 17, 2018 at 7:51 pm
July 9, 2018 at 6:26 pm
how can I rewrite below highlighted area? I am...
May 14, 2018 at 11:18 pm
There are some work-arounds, but best not to try. Rewrite it as a stored procedure, and return the result as either the return value if integer, or as an output...
April 11, 2018 at 10:14 pm
Actually folks, don't worry about this one. I didn't figure out why it was happenning, but I managed to get around it by splitting the complex query up into segments...
February 7, 2018 at 10:29 pm
February 7, 2018 at 5:33 pm
Short answer - what you want to do is not supported using Contains. You can get around it by doing a reverse search, but that would be a hack.
Read...
February 14, 2016 at 5:06 pm
Drop the IF Update(...
(Also drop the temp table.)
Try something like this (untested as you didn't provide data...)
DROP TRIGGER Sales.trig_Calculate_OrderProcessed;
GO
CREATE TRIGGER Sales.trig_Calculate_OrderProcessed ON Sales.Orders
AFTER INSERT, DELETE
AS
...
November 23, 2015 at 3:15 pm
Viewing 10 posts - 16 through 25 (of 25 total)