Viewing 15 posts - 2,071 through 2,085 (of 13,855 total)
Sorry, but I really have no idea. Never seen anything like that.
But if you are opening the .sln, you should not be having a problem with the project-level connections, so...
May 6, 2021 at 4:50 pm
What problem does this cause? Can't you just set the protection level manually?
Was the package developed in 2019, or could there be versioning issues?
If the original developer used project-level connections,...
May 6, 2021 at 4:38 pm
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
Viewing 15 posts - 2,071 through 2,085 (of 13,855 total)