Viewing 15 posts - 541 through 555 (of 1,403 total)
[Edit] I posted some code that didn't look right so I updated. Maybe something like this
select w2.RCWHS# as DC, w2.RCITM# as [Item Number],
...
October 8, 2021 at 2:55 pm
Maybe something like this
;with
cte_ntile(ReadingDateTime, ReadingValue, [Group]) AS (
select *, ntile(2) over(order by ReadingDateTime asc) AS [Group]
from #SIDataGroup),
cte_rn(ReadingDateTime, ReadingValue, [Group],...
October 6, 2021 at 8:59 pm
It turns out the median is derived from the ordered set. My query only calculated the midpoint. If the number of rows in the [Group] (calculated as 'grp_count') is even...
October 6, 2021 at 8:12 pm
Thanks for the feedback. Nice I'm happy if the code helps. Precision-wise it's maybe not ideal. I tried it with nanoseconds and there was an overflow error. Maybe microseconds would...
October 6, 2021 at 5:07 pm
Maybe something like this. The 'median_dt' column calculation adds half the difference in seconds between the min and max ReadingDateTime values within the [Group] group to the min ReadingDateTime
October 6, 2021 at 2:01 pm
Imo you could maybe start with a query like this. The 'final_cte' CTE selects the row(s) with the final status for each Deal. Then OUTER APPLY is used to count...
October 6, 2021 at 1:15 pm
It's not a good logical model. What is the maximum number of rows per Deal? If it's 2 you could join the table to itself
October 6, 2021 at 12:00 pm
I just ran into this same issue. The short answer is to create a #temp table instead and it works (because the temp table exists within the same execution context...
October 2, 2021 at 11:49 am
I was off topic??
The other comment. Your comment was very on topic 🙂
October 1, 2021 at 2:57 pm
Wow, what a way to respond to an obvious joke.
Off topic much? A couple is 2 and a few is 3 and more than a few is 5 but...
October 1, 2021 at 1:19 pm
Well a lot could said about this topic. The classic threaded forum/subforum organization might seem straightforward it depends on many things. If by "threaded" it means "nested html" then that's...
October 1, 2021 at 4:14 am
Maybe you could use a CTE to make sure the right table source of the JOIN in the UPDATE statement contains appropriate unique priorityCode's
with unq_priority_cte(priorityid,priorityCode,priorityname) as (
...
September 30, 2021 at 12:16 pm
Steve Collins wrote:this looks familiar
I think both windowed and brute force approaches have their place. I have just tidied up my code to try and make it more understandable:
It...
September 29, 2021 at 7:46 pm
Ken McKelvey this looks familiar
https://www.sqlservercentral.com/forums/topic/need-to-create-gaps-in-a-table-of-date-ranges
Again one "brute force" way to do this would be to expand all the date ranges and use the set operator EXCEPT to remove the (also...
September 28, 2021 at 10:01 pm
It's a one time only type query or it's intended to be run frequently? The id value in the last row of the sample data should be 5, no?
September 28, 2021 at 8:20 pm
Viewing 15 posts - 541 through 555 (of 1,403 total)