Viewing 15 posts - 1 through 15 (of 21 total)
August 26, 2018 at 12:00 pm
Solution found.....Close the package and reopen....
maybe working at 23:30 isnt such a good idea
December 12, 2016 at 4:37 pm
Thanks for all your responses guys.
Regarding the multiple join table, IO is one of the things that we try our hardest to limit as a development team and having reviewed...
September 21, 2016 at 9:31 am
I realised that i could use the lead function to process the next row as a separate column:
Select *
FROM
(
SELECT ID,
[Data],
--Concat('(''',[Data] Collate SQL_Latin1_General_CP1_CI_AS,'''),'),
--Case when [Data] like 'A12b%' then...
September 21, 2016 at 3:34 am
Hi Kevin,
Thanks for your response.
The case statement has been my savior in such situations, however when applying the lag function in this instance only yields the next null result...
March 24, 2016 at 7:54 am
Unfortunately I cannot post the table or data due to confidentiality reasons, however an extreme simplification of the problem:
CREATE TABLE [dbo].[Team]
(
[FirstName] [varchar](20) NULL,
[LastName] [varchar] (20) NULL,
[Team] Varchar (20) NULL,
[TransactionID] int,
Price...
April 30, 2015 at 7:51 am
So ladies and gents....
I found the cause of the validation error :w00t:
Within the File System Task Properties there is a section named "Execution" under which there is an option to...
June 2, 2014 at 10:53 am
Still no luck with this gents.
I have changed the query so that the file path is returned in the SQL statement rather than using the variables in SSIS and...
June 2, 2014 at 10:20 am
Thanks Aaron, great piece of advice
So what i have done now is to have a SQL task Feeding into a ForEach Loop which will then move the file from source...
May 29, 2014 at 9:25 am
I'm attempting to do something very similar at the moment.
My task however is slightly different...
What i am trying to do is move files from one location to another location and...
May 29, 2014 at 2:45 am
Sean Lange (5/1/2014)
May 2, 2014 at 4:25 am
Thinking about it now maybe a SPROC would have been better to use
May 1, 2014 at 10:44 am
Thanks For clearing this up Koen,
with regards to this seperate table i was contemplating creating a table where anything prior to current year is negative, current year is 0 i.e....
April 25, 2014 at 5:15 am
Im ever so sorry guys, i didnt see the 2nd page
The best way to show the result would be to see the spreadsheet attached
November 20, 2013 at 8:34 am
Update:
I have taken the Type, ID and Date of each of the tables, union'd them and sorted them to give me a chronological view.
The next stage im thinking would be...
November 20, 2013 at 7:14 am
Viewing 15 posts - 1 through 15 (of 21 total)