Viewing 15 posts - 526 through 540 (of 1,391 total)
There are different date calculations depending on granularity. This seems to work
drop table if exists #foo;
go
create table #foo(
[Table] sysname,
...
October 20, 2021 at 2:39 am
Hi Joel, maybe something like this. It's pretty self-explanatory once you run it
drop table if exists #foo;
go
create table #foo(
[datetime] datetime,
tonsperhour...
October 19, 2021 at 5:45 pm
Maybe you're looking for something like this. It assumes there's a primary key column in the OfenbuchVC1212_V10 table called 'OfenbuchId'. After update of the OfenbuchVC1212_V10 table the trigger first determines...
October 14, 2021 at 6:20 pm
[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
Viewing 15 posts - 526 through 540 (of 1,391 total)