Viewing 15 posts - 1 through 15 (of 45 total)
Thank you very much for the useful tips. Great information.
Thank you very much.
July 9, 2016 at 1:58 am
As you already possibly have figured out the error message is indicating that it cannot connect to the Server/Database. I would double check the SSIS Connection Managers
July 7, 2016 at 8:17 pm
You would :
1. Add data flow
Within the Data flow
1. Add a Data Flow with the SQL statement pulling in the data from the database table
2. Add a Derived Column Task
3....
July 7, 2016 at 8:15 pm
You could use a Derived Column task in the data flow and write a nested Conditional IF statement. I do not have acceess to SSIS right now so posting a...
July 7, 2016 at 8:04 pm
Apologies for the different user name on the reply - I had sent it from some else computer
September 17, 2015 at 10:09 am
I have implemented the following code in the data flow task:
(DT_DBTIMESTAMPOFFSET,0)DATEADD("ss",-DATEPART("Ms",GETDATE()),GETDATE())
And appled the Error on truncation to Ignore.
----------------------------------------------------------------
(Edit)
SQL SERVER:
SELECT CAST(GETDATE() AS DATETIMEOFFSET(0));
SSIS:
(DT_DBTIMESTAMPOFFSET,0)DATEADD("ss",-DATEPART("ss",GETDATE()),GETDATE())
Both of the above seem to give...
March 18, 2015 at 1:42 pm
Thank you for the suggestion. That does not work as the package fails when it tries to INSERT the record
March 18, 2015 at 12:34 pm
Hi Phil,
I am building a SCD 2 package and there is date field for current records and expired records where I have traditionally used a GETDATE() funtion to populate them...
March 18, 2015 at 10:03 am
Thank you .. this is much better than the cursor option which is there at present!
Your help is much appreciated!
February 18, 2015 at 4:02 pm
Jason-299789 (11/14/2014)
DECLARE @t table (Col1 char(25), col2 char(25),col3 char(25))
INSERT INTO @t (col1, col2, col3) VALUES
('AB' , 'BC' ,'DA')
SELECT
Cav.Value
,CASE...
November 14, 2014 at 2:00 am
Hi Jeff,
Thank you for your thoughts. I have been trying to make it set based but having no luck with the syntax. Do you have any suggestions please.
Thank you
November 14, 2014 at 2:00 am
HI Thank you .. I have amended the code to get it working for getting the data from a table .. many thanks for your help!
DECLARE @t table (Col1...
November 13, 2014 at 2:23 pm
Thank you
November 11, 2014 at 3:20 am
Thank you for your help Phil. I will try this method out.
Your help was much appreciated!
November 6, 2014 at 8:31 am
Thank you for your reply Phil ..
From your experience can you get Project Level parameters to be used in SSIS expressions along with other variables?
So you it be the...
November 6, 2014 at 7:54 am
Viewing 15 posts - 1 through 15 (of 45 total)