Viewing 15 posts - 2,056 through 2,070 (of 13,838 total)
but why the addition of "@myFlag <> 1)" make it work ?
It's straight logic.
You had two scenarios:
May 6, 2021 at 12:04 pm
DROP TABLE IF EXISTS #Test;
CREATE TABLE #Test
(
id INT
,name VARCHAR(10)
);
INSERT #Test
(
id
,name
)
VALUES
(1, 'A')
,(2, 'B')
,(3, 'C');
DECLARE...
May 6, 2021 at 10:48 am
It sounds like you know what you're doing, so I suspect you'll have considered this already, but could it be down to parameter sniffing?
May 5, 2021 at 3:26 pm
Hi,
I have a job running SSIS package, which has 2 sql server connection managers using sql logins, one connection manager to a local log...
May 5, 2021 at 8:15 am
event viewer - see this link for some info https://docs.microsoft.com/en-us/sql/integration-services/performance/events-logged-by-an-integration-services-package?view=sql-server-ver15
better to run packages on filesystem or catalog - easier to check errors and easier to change...
May 4, 2021 at 7:02 pm
If you check the All Executions SSISDB report, does that provide any additional information?
May 4, 2021 at 6:00 pm
Are you sure that these are deadlocks, and not just locks? As you are inserting, I would not expect deadlocks & suggest that more investigation is needed.
May 4, 2021 at 9:57 am
Hi,
I have a job running SSIS package, which has 2 sql server connection managers using sql logins, one connection manager to a local log file, one to a...
May 4, 2021 at 8:53 am
What is the source data for this? Where do these variables come from? What will the 'dynamic string' be used for, once it has been created?
I...
April 28, 2021 at 8:58 am
What is the source data for this? Where do these variables come from? What will the 'dynamic string' be used for, once it has been created?
April 28, 2021 at 8:50 am
That does not look feasible to me.
It would be helpful if you could explain the background and reasons for trying to do this – there may be some other way...
April 28, 2021 at 8:32 am
What does 'blank' mean? Empty string? What about columns that are not strings? What do you mean by 'all fields are dynamic'? Tables have columns, not fields.
April 27, 2021 at 3:40 pm
SSIS does not recognise any of my tables in the MySQL/Maria DB. That is the problem.
This is what you should solve first, in my opinion. It's not a...
April 27, 2021 at 2:05 pm
This is not particularly elegant, but it seems to get the job done.
Next time, please remember to post your sample data in consumable format, so that others can simply paste...
April 26, 2021 at 6:31 pm
As I suggested in one of your other threads, SSIS needs to 'see' the table it is going to load data into at design time, not at run time.
Do the...
April 26, 2021 at 12:01 pm
Viewing 15 posts - 2,056 through 2,070 (of 13,838 total)