Viewing 15 posts - 16 through 30 (of 288 total)
thank you everyone for your feedback. i will implement as noted.
October 26, 2024 at 3:03 am
deleted post
October 11, 2024 at 4:10 am
deleted post
October 10, 2024 at 5:40 pm
Yes - you definitely need to be using precedence constraints between tasks.
October 9, 2024 at 1:09 pm
deleted post
October 9, 2024 at 1:09 pm
First of all, the warning was telling you that you have columns that you're doing aggregates like SUM() and COUNT() on contain some NULL values. Are you...
October 7, 2024 at 9:17 pm
deleted post
October 6, 2024 at 3:23 am
google is your friend - you should have done it first.
regarding the code and because you got a timeout I would add a command timeout before the...
October 6, 2024 at 12:45 am
Not sure if this will be any faster, you might have to look at putting indexes on the table if it is not:
;with cte as
(
...
April 8, 2024 at 7:26 pm
I think I fixed the issue. I added t_date to the partition part and now I am getting the correct number of records. The query is super slow...
April 7, 2024 at 7:54 pm
I think I fixed the issue. I added t_date to the partition part and now I am getting the correct number of records. The query is super slow though. It...
April 6, 2024 at 4:44 am
Seems like you could achieve this with a couple of CTEs. I assume that the value of T_date
could differ, hence why I use window aggregation functions rather than...
April 6, 2024 at 4:25 am
the queries are giving the correct output now.
thank you both so much!
April 4, 2024 at 4:05 pm
Thank you both!! I appreciate your help so much!
I tested another scenario. I added a different company in the list so there are now two not one company.
Drew, your solution...
April 3, 2024 at 11:33 pm
Viewing 15 posts - 16 through 30 (of 288 total)