Viewing 15 posts - 1 through 15 (of 159 total)
Where do you find this in SSIS (Script task) ?
March 6, 2015 at 10:20 am
Thank you for the replies. I ended up using the RightFax .dll
The script task is getting pushed my input variables from my ForEach Loop container. This allows...
February 6, 2015 at 6:54 pm
yes. One of the first things I tried. Setting the delay did not do the trick.
February 6, 2015 at 6:28 am
When sending to the Send Mail task within SSIS, it's expecting a valid format email address. As this is a valid email address within our environment, is there any...
February 5, 2015 at 3:51 pm
Yes. It needs to be in the following syntax.
[FAX:Jane Doe@555-1212]
OR
[RFAX:Jane Doe@/FN=555-1212]
February 5, 2015 at 3:27 pm
My apologies.
It's a DOB field being stored as a string. No application is pointing to this data.
Any help is much appreciated.
August 9, 2014 at 4:46 am
I'm using:
DECLARE @CutOff DATE
SET @CutOff = '01/01/2016'
August 4, 2014 at 5:49 am
Eirikur worked perfect. It did exactly what I needed it to do. Thanks again! 😀
July 31, 2014 at 7:39 pm
I wish that was the case. We do our best to get a 4 digit (CCYY). It doesn't always work out like that.
July 31, 2014 at 2:32 pm
This is exactly what I needed. Thank you!
declare @mycutoff date = '01/01/2020';
select [Date] = CONVERT(VARCHAR(10),CASE WHEN convert(datetime,'7/26/29',1) >= @mycutoff THEN DATEADD(YEAR,-100,convert(datetime,'7/26/29',1)) ELSE convert(datetime,'7/26/29',1) END,103)
July 31, 2014 at 1:32 pm
Gents - the birthday is 1929 not 2029. I would prefer not to update the server because I don't now the impact.
July 31, 2014 at 11:27 am
Yes but the birthday is 1929. That is the problem.
July 31, 2014 at 11:11 am
Change the result set from Grid to Text.
June 20, 2014 at 5:54 pm
Why not do something like this? I did not have SSMS in front me to test, it was done in notepad. Hope this helps or gets you on...
June 3, 2014 at 7:34 pm
Viewing 15 posts - 1 through 15 (of 159 total)