Viewing 15 posts - 91 through 105 (of 367 total)
I think the issue is different so I am going to start a new thread
November 4, 2024 at 8:35 pm
Here you are courtesy of ChatGPT:
Yes, it’s possible to run specific stored procedures (SP1 and SP2) in parallel and then have SP3 and SP4 execute in series within a...
November 4, 2024 at 7:10 pm
I have two versions of SSIS setup to test the benefits of parallelism.
Version 1 - no parallelism setup. The precedence constraint I am using between the Execute SQL Tasks is...
November 4, 2024 at 7:07 pm
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 executenonquery.
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
Viewing 15 posts - 91 through 105 (of 367 total)