Viewing 15 posts - 481 through 495 (of 1,398 total)
Maybe a DELETE statement like this. [Edit: got rid of window function approach and went with COUNT(*) ]
with rn_cte(PatID, ElementIDDate) as (
select PatID,...
December 23, 2021 at 5:55 pm
with recent_cte(HorseName, FinishPosition, RaceDate, Rating) as (
SELECT top 1 with ties HorseName, FinishPosition, RaceDate, Rating
FROM @RACES
...
December 23, 2021 at 1:39 pm
Following on what Mr. Brian Gale wrote about a DELETE causing a massive gap in the IDENTITY property of a table. It happens sometimes because things which aren't good sometimes...
December 22, 2021 at 6:13 pm
Based on the code I would guess your ExceptionLog table is empty because the error handling issues the ROLLBACK before the error values are accessed. But it's not really guaranteed...
December 17, 2021 at 12:59 pm
It's a great answer from Jeff which exactly matches the output. My approach also uses Jeff's "number generator" function dbo.fnTally. While Jeff "didn't use any of your dates" (because it's...
December 16, 2021 at 1:51 pm
Maybe like this
if @ItemGroup is null
Select Itemcode,Itemname,ItemGroup
from tbl1
where itemgroup is null;
else
Select...
December 15, 2021 at 2:06 pm
Maybe extract the constant and put the correlated subquery in the FROM clause as a CROSS APPLY
declare @vmax_var ...
December 15, 2021 at 1:43 pm
Maybe a good way could be an UPDATE statement
update t
set flag = case when v.row_count=1 then 'ANY_EMPTY'
...
December 14, 2021 at 6:44 pm
In the situation where Sum([QTY]) returns the correct the number, AVG(OH) or MAX(OH) ought to return only 1 SKU
December 12, 2021 at 4:59 pm
At a minimum it's missing a comma at the end of the first line. Is it necessary to nest SELECT statements within the SELECT list as you've done? It seems...
December 11, 2021 at 2:52 pm
Yup, I was one of the 'most people' crowd, thanks for alerting me to that, Jeff. Always good to be aware of these extra possibilities. It was also only...
December 9, 2021 at 2:52 pm
Now, if they'd just add a machine language sequence generator to replace fnTally, create a BULK EXPORT, and create a truly useful xp_Dir...
The DIY way could be to...
December 9, 2021 at 2:37 pm
Concat_ws was originally in MySQL then the other db's borrowed it iirc. The big news for me is .NET 6 which I'm really liking a lot because it nicely untangles...
December 9, 2021 at 1:29 pm
CONCAT_WS() "concat with separator" ignores the nulls
select concat_ws(' | ', t.Col1, t.Col2, t.Col3) [output]
from #t t; December 8, 2021 at 3:19 pm
The date could be converted without using string functions. Also, the WHERE clause might be a more appropriate place to filter the rows. Maybe something this
declare @UPSBatchInvNot...
November 26, 2021 at 5:49 pm
Viewing 15 posts - 481 through 495 (of 1,398 total)