Viewing 15 posts - 3,166 through 3,180 (of 13,874 total)
It's not easy! You might have to use a proper REGEX parser to get this working properly.
But it may help others if you take the time to provide your data...
November 15, 2019 at 1:52 pm
And I feel stupid for not having double-checked the obvious solution!
November 15, 2019 at 1:38 pm
May I ask why you need to do this? Seems like an unusual requirement.
I haven't tested this, but I think that the output is also of limited use (because the...
November 15, 2019 at 1:35 pm
That is one option we cannot do at this time. Is there a way to have SSIS invoke other SSIS package dynamically?
Thanks.
Use an Execute Process task to call DTExec?
I'm...
November 14, 2019 at 7:04 pm
November 14, 2019 at 6:07 pm
Hi Phil,
Thanks for your reply! So does Visual Studio not work with sftp? Right now the SSIS package just has the ftp setup with the connection manager and it...
November 13, 2019 at 8:28 pm
If you don't mind spending some cash on a 3rd party product, Cozyroc's SSIS add-ons will help you do the job (and many others).
Take a look here & track...
November 13, 2019 at 8:05 pm
Is the maximum number of columns as shown in the image, or can this vary?
November 12, 2019 at 7:25 pm
As you have not provided DDL and DML to allow us to use your sample data, I will provide an outline solution only.
SELECT ...
FROM Table2 t2
WHERE t2.TransId in (SELECT TransId...
November 12, 2019 at 4:51 pm
Sounds like you want an INNER join to DepartmentDate.
November 12, 2019 at 3:18 pm
Add a
UNION ALL SELECT NULL, NULL
maybe?
November 12, 2019 at 1:34 pm
It's been a while since I have done this, so I can offer only limited help.
I would say that LIKE is definitely not going to work in this case. You...
November 12, 2019 at 12:20 pm
SSIS failing if server not accessible - I use 2008
I have an SSIS package which captures data from across servers using a for each loop container as long as...
November 10, 2019 at 1:38 pm
Sure. This join
on StrutturaOrganizzativa.descrizione=Negozi.fk_responsabile
is the problem, because you're trying to match a string and an integer. Columns which you JOIN on should ideally have the same datatype.
November 9, 2019 at 9:29 pm
Didn't work, but thanks.
Here's my test script.
DECLARE @i DECIMAL(5, 3) = 0;
DECLARE @Inc DECIMAL(3, 2) = 0.01;
WHILE @i < 2
BEGIN
PRINT CONCAT(@i, ',...
November 9, 2019 at 8:51 pm
Viewing 15 posts - 3,166 through 3,180 (of 13,874 total)