Viewing 15 posts - 1,801 through 1,815 (of 13,849 total)
They meant column-level encryption, perhaps? My head would explode if I had to do that on an entire database though.
October 22, 2021 at 11:02 am
What is the datatype of Length?
What datatype would you like the calculation to return?
Your problem is likely to be integer mathematics. Why not just use
Length * 0.75
in any case? This...
October 21, 2021 at 1:57 pm
Not a direct answer, as I never use the FST, but maybe try doing the file move in a Script Task and see whether the outcome is any different.
October 21, 2021 at 11:48 am
Each loop in a cursor can be thought of as a transaction
..Can be thought of? Are you saying that if a loop in a cursor contains multiple actions, and...
October 20, 2021 at 10:06 am
To get the tables in a database, use sys.Tables:
SELECT Schma = SCHEMA_NAME(t.schema_id), TabName = t.name
FROM sys.tables t;
I'm sure that you can work out the rest by yourself.
October 20, 2021 at 8:29 am
Phil:
After playing with that query, I notice it gives me all the "Step_Names" as being "(Job Outcome)" and the Job_Descriptions are all of the job itself, but not the...
October 20, 2021 at 8:17 am
When you have to manage hundreds of scheduled jobs on busy production servers, inevitably situations arise when jobs take too long to complete, causing substantial waits or affecting the...
October 20, 2021 at 5:31 am
Yes, I see it. But my C# is not advanced enough to know how to fix that, apologies.
October 19, 2021 at 3:11 pm
Does this get you anywhere? Haven't got any failed jobs to test it on at the moment.
WITH OrderedJobs
AS
(SELECT
j.job_id
,...
October 19, 2021 at 3:07 pm
Yes, I already did the test from CMD and on a dedicated API platform.
I added a screen shot from the debug to the preceding post..
Please try again, as I...
October 19, 2021 at 2:44 pm
Have you verified that the web service call using exactly the same URL as in your code works properly outside of SSIS, using something like Insomnia (https://insomnia.rest/)?
October 19, 2021 at 2:14 pm
This is a script component source, presumably? (Rather than a transformation.) Is the code part of the CreateNewOutputRows() sub?
Does the version of SSDT you are using allow you to debug...
October 19, 2021 at 1:10 pm
If the code is not too lengthy, perhaps you could post it here? (Sanitised as necessary.)
October 19, 2021 at 8:20 am
You've given us lengthy pieces of code and a description of what you are trying to do, which is good.
But you have not described the problem in enough detail. What...
October 18, 2021 at 8:41 am
This is good advice, as far as it goes, but I suggest there's more that could have been covered here, including
a) Sample loop code, including a discussion about whether to...
October 15, 2021 at 8:01 am
Viewing 15 posts - 1,801 through 1,815 (of 13,849 total)