Viewing 15 posts - 1 through 15 (of 77 total)
Thank you clarifying I appreciate it.
My code sample I wrote quickly and I should have provided a better example.
Thank again. 🙂
January 5, 2016 at 4:08 pm
Hi Jeff, thank you for the tip! However, this did not solve the problem. Looking at my CSV file in notepad, the last row looks like this:
7,1412,1
Instead of:
7,1412,1,,
Of...
November 18, 2015 at 7:46 am
Hi,
Is it possible to enter this string into a temp table?
SELECT @PivotQuery = 'SELECT ' + @Columns + @ColumnsMinMax + 'FROM Fill_Rate_Summary_Total;'
EXEC sp_executesql @PivotQuery
October 30, 2015 at 10:08 am
this is so helpful, thank you very much!
October 30, 2015 at 10:03 am
Hi,
I have been working on this for a bit and have a new challenge. Using the sample data and code below, the result will show InvMax, and A through...
October 30, 2015 at 7:38 am
Thank you John! Amending my original code, I would actually like to do something like this if possible:
DECLARE @cmd varchar(500)
SELECT filename,
CASE
WHEN Processed_Flag = 'E'
THEN
SET @cmd='MOVE /Y C:\temp\myfiles\'...
October 21, 2015 at 9:44 am
I am currently using a For Each loop to pull down files from an FTP site. Is it possible to also have the same For Each loop to insert...
October 16, 2015 at 8:13 am
So my new challenge is when I have multiple records returned for my For Each Loop, I now get the "The password was not allowed." error message again.
To solve this...
October 15, 2015 at 7:05 am
I have solve the no password issue by changing the Package Protection Level from EncryptSensitiveWithUserKey to EncryptAllWithPassword then creating a new password in the PackagePassword field.
Thank you John!
October 14, 2015 at 1:03 pm
Thank you John!
Within my foreach loop I have the FTP Task only, to confirm is this what you mean by data task? All I have in the for loop...
October 13, 2015 at 5:38 pm
Hi,
I am hoping someone may be able to help me with this issue.
When creating the FTP Connection Manager, I add the following fields to my ConnectionString expression:
@[User::FTPServer] + ":21." +...
October 13, 2015 at 12:02 pm
Hi, When creating the FTP Connection Manager, I add the following fields to my ConnectionString expression:
@[User::FTPServer] + (DT_WSTR,10)@[User::FTPPort] + "." + @[User::FTPUser] + "." + @[User::FTPPwd]
When I...
October 9, 2015 at 1:30 pm
Thanks again for all your help this far! My apologies as I know this one is like pulling teeth.
I have attempted to configure the expression with the FTP Task Editor...
October 9, 2015 at 9:49 am
Hi, So in my case I believe I will need multiple variables is this correct? I believe I will need variables for each FTP Server, FTP User, FTPPwd,...
October 8, 2015 at 1:11 pm
Viewing 15 posts - 1 through 15 (of 77 total)