Viewing 15 posts - 12,841 through 12,855 (of 13,838 total)
OK, good - that makes it clear. I can think of two ways:
1) Import your data to a staging table in SQL Server and then use a UNION query to...
April 28, 2009 at 7:20 pm
OK, I misunderstood the requirement.
Can you give sample before (source) and after (required format) data please - just one example should be enough for me to picture it - thanks.
April 28, 2009 at 6:08 pm
Add a derived column transformation after the merge to give you the data as you want.
April 28, 2009 at 5:27 pm
Derived column works well.
Create a new column with a formula like this:
[SourceTextDateTimeField]
and give it a datatype of DT_DBDATE. This casts the string to a date and strips away the time...
April 28, 2009 at 1:55 am
You will have two dataflows appearing on your Control Flow - simply join (a) to (b) and you can be sure that (b) will execute after (a).
Not sure that helps...
April 28, 2009 at 1:17 am
If your flat file date format is already in the format
YYYY-MM-DD HH:MM
it is in perfect shape for loading direct into a SQL Server datetime field and you should be able...
April 28, 2009 at 1:00 am
Unless you post sample data, as ruizeddy already requested above, no one will be able to give you detailed help.
April 28, 2009 at 12:06 am
To use the graphical mapping tools in SSIS, it needs to extract the source and target metadata from an existing table/file ... hence your problem.
Can you explain why you cannot...
April 27, 2009 at 4:51 am
This thread might help you:
April 26, 2009 at 11:34 pm
Try removing the Read/Write variable and running again.
By explicitly mentioning the variables there, you can access them using the
dts.variables collection.
However, as you are using variabledispenser, you can access the...
April 24, 2009 at 5:55 pm
You can do this by using a variable and two Execute SQL tasks.
1) Create your variable first
2) The first Execute SQL task retrieves the CategoryID and assigns it to the...
April 24, 2009 at 5:50 pm
No need for row by row, wash your mouth out! 🙂 Just use an INNER JOIN on both fields for the update (run this first).
UPDATE t
Set field1 = s.field1, field2...
April 23, 2009 at 9:58 pm
None of the items in that list of advanced features is needed for the bulk of SSIS tasks - so you appear to be contradicting yourself.
Eg, from one of your...
April 23, 2009 at 6:47 pm
Gift Peddie (4/23/2009)
I don't think that is a better source than Jeffrey who is running solution with it and the experts at SSIS.
Huh??? The quotation backs up what Jeffrey says.
April 23, 2009 at 6:05 pm
Here is a direct quotation from "Professional SQL Server 2005 Integration Services" regarding this:
As for SSIS, you'll have to use at least Standard Edition to receive the bulk of the...
April 23, 2009 at 5:49 pm
Viewing 15 posts - 12,841 through 12,855 (of 13,838 total)