Viewing 15 posts - 16 through 30 (of 13,734 total)
I am running out of ideas.
As this happens for only one query, there must be something about that query which is different from all the others. Is there anything special...
February 5, 2025 at 2:49 pm
And are you using prepared statements?
February 5, 2025 at 1:12 pm
Does the query contain variables or parameters?
February 5, 2025 at 1:07 pm
OK, understood. Is this a fundamental connection problem (ie, all queries time out), or is there just one particular query which is giving the issue?
February 5, 2025 at 11:58 am
You say it runs in seconds when run 'directly'. So presumably you are running it 'indirectly' – can you elaborate on that?
February 5, 2025 at 11:38 am
One solution would be to copy the data to a centralized database/warehouse and report from that.
This sounds like the best idea, though obviously it will take some time to...
February 4, 2025 at 3:03 pm
The sources for the datasets are different, so I don't think that will work.
Yes, I saw that as well, but how are the sources different? The OP didn't...
February 4, 2025 at 10:27 am
The sources for the datasets are different, so I don't think that will work.
February 4, 2025 at 9:55 am
Assuming you have your SSIS solution checked in to Git, the DevOps deployment is a two stage process.
February 4, 2025 at 8:45 am
Nasty! OK, here is another thought. How about pre-processing the file and replacing every occurrence of
n"
(where 0 <= n <= 9)
with n~
Then importing the data, then replacing ~ with "...
February 3, 2025 at 8:29 pm
Some good input here, but I've run into an issue, that I can't get the team exporting the data to fix.
I'm getting data like this: PartNo,Description,Cost
1234,"Pipe 2"x6" galvanized",1.45
5678,"Frame, Wood,...
February 3, 2025 at 8:13 pm
I said 'add another THROW', not 'add another THROW 51000, '2. One or more stored procedures had errors, please investigate', 1;'!
Also, surely you want the INSERT to dbo.RunTimeErrors to occur...
February 3, 2025 at 8:07 pm
Did you add another THROW in the final CATCH block, like I suggested?
If yes, please post the code.
February 3, 2025 at 5:35 pm
No, only 1 TV is required. You simply run multiple INSERTS to it in your code.
To make the error appear in the SSIS Output window, you need to add THROW...
February 3, 2025 at 4:48 pm
Instead of logging your errors in a physical table (whose changes are being rolled back, I assume), log them in a table variable and then insert from the table variable...
February 3, 2025 at 4:17 pm
Viewing 15 posts - 16 through 30 (of 13,734 total)