Viewing 15 posts - 1 through 15 (of 73 total)
Thanks Koen for quick info. Let us try to upgrade SSIS and check.
May 23, 2013 at 1:36 am
Hi Koen,
Thanks for your reply. Currently, i am using 2005 Version. But it seems the link is for 2012 i guess.
Can you suggest any option available on SSIS 2005.
---
May 22, 2013 at 3:06 am
One more way!
1. Get Today date from Script Task and store it in an variable.
Now.AddDays(0).Date.ToString("MM/dd/yyyy")
2. Pass that variable in your DB Source along with your condition.
SELECT <Column Name>
FROM TableName
WHERE...
October 16, 2012 at 12:35 am
Sorry for the delay response. 🙂
Yes, we have indexes and using standard edition. Seems different DB will not work out since permission issue.
Will try to automate as per the suggestions.
Thanks!
October 12, 2012 at 11:02 am
Step 1: You can read the excel file based on below connection string in your Script Task.
Provider=Microsoft.ACE.OLEDB.12.0;Data Source='"& <Your Source Path> &"';Extended Properties='Excel 12.0;HDR=" & <FirstRowIsHeader = YES> & ";IMEX=1
Step...
October 12, 2012 at 5:31 am
Option - 1: You can make use of LookUp and Condition Split Transformation to achive this.
Option - 2: You can do this by Creating a Procedure.
A. Load all the...
October 10, 2012 at 12:40 am
1. You can make use of String Funtions in Derived Transformation to make change as NULL.
2. Then use Row Count Transformation to get the count of empty or null.
3. If...
October 10, 2012 at 12:24 am
laurie-789651 (10/1/2012)
I can't see ImportDate there?
You could see Gen_DATE has the import date. Please let me know if any.
Thanks.
October 1, 2012 at 3:49 am
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[tblGen](
[PROCESS_ID] [bigint] NOT NULL,
[Gen_FLAG] [bit] NOT NULL CONSTRAINT [DF_FLAG] DEFAULT ((0)),
[Gen_DATE] [datetime] NOT NULL CONSTRAINT [DF_DATE] DEFAULT (getdate())
) ON [PRIMARY]
October 1, 2012 at 3:32 am
In your case, use deptno.In Condition tab, you can define deptno = 101 as one case and deptno = 110 as another case.
August 2, 2012 at 11:23 pm
ColdCoffee (4/16/2012)
Try this:
SELECT *
FROM @TABLE T
WHERE ISNULL(T.fldID, '') = CASE WHEN @ID IS NULL THEN ISNULL(T.fldID, '') ELSE @ID END
Thanks Man. Thanks for your reply. I got it now....
April 16, 2012 at 2:50 am
1. Create code like below in Script Task: v_FileName is your source file.[C:\<Your File Name>.csv]
Dim vFileName, vDate, vFilePath As String
...
March 22, 2012 at 12:08 am
Thanks Guys,
I have done it by using two different Data Flow Task calling two different procedures with one flat file connection with unchecking the Overwrite data in file from Flat...
March 13, 2012 at 5:20 am
Phil Parkin (3/8/2012)
What do you want the file to look like?Just modify your proc to UNION the two result sets and you're good to go.
Thanks Phil!
I can modify the procedure...
March 8, 2012 at 10:23 am
yes, i can able to modify my procedure.
March 8, 2012 at 9:31 am
Viewing 15 posts - 1 through 15 (of 73 total)