Viewing 15 posts - 1,621 through 1,635 (of 13,838 total)
OK, that makes it more tricky. It should be possible to extract those connection strings into a package-scoped variable, but I think you would need to add a Script Task...
December 22, 2021 at 5:25 pm
Can you explain the ordering logic, please?
December 22, 2021 at 2:50 pm
Something like this? It makes a few assumptions about how your data is ordered. What is the PK of this table?
WITH ordered
AS (SELECT a.enddate
...
December 22, 2021 at 10:41 am
OK, let's assume that the ExecutionMode parameter is set up.
Let's also assume that you have two connection string parameters set up:
ConnectionD and ConnectionM
These are passed into the package at run...
December 22, 2021 at 7:36 am
Thanks , it was the trigger
Sounds like the trigger has been written in such a way that it accommodates only single-row INSERTs, which is a common problem. It needs...
December 22, 2021 at 7:25 am
Somehow when the package runs, it needs to know what 'mode' it's in (monthly or daily).
Consider adding an ExecutionMode (M or D) parameter to the package, which is passed to...
December 21, 2021 at 4:08 pm
OK, got it. You can't do that. Options:
December 21, 2021 at 1:57 pm
Ok, please check table FREE04 for triggers.
December 21, 2021 at 11:44 am
There are no subqueries in the code you posted. You must be executing something else as well.
December 21, 2021 at 11:00 am
Were you ever able to fix this issue? How did you do it?
December 21, 2021 at 10:04 am
I could probably help if I fully understood the question 🙂
Are the following statements true?
December 21, 2021 at 10:01 am
xml solution and function solution ex, calling scalar funtion i had . apart from these if any thing is there then pls tell me so that i stop finding...
December 21, 2021 at 9:46 am
Hi, this is test data , I am not into working on production & Thanks alot for the answer ,would be nice if you could test too with the...
December 20, 2021 at 10:33 am
Do you have a non-Production version of the database that you can test this on? You really need to do that, I think.
How can I ensure for example that rows...
December 20, 2021 at 10:15 am
Presumably, you are using SSDT to do the SSIS development? You can deploy from there. You can also deploy using PoSh, which is what I do in our CD environment.
You...
December 20, 2021 at 9:57 am
Viewing 15 posts - 1,621 through 1,635 (of 13,838 total)