January 28, 2010 at 11:29 am
Hello Everybody,
I hope all are doing great.
I am new to sql server migrations.
I appreciate if someone can share their experiences in migration approach from flat file to sql server 2005 using SSIS tasks, transformations and error handling.(without wizards)
Thanks in Advance
veena.
January 29, 2010 at 8:02 am
Well, you would use BIDS (Business Intelligence Development Studio) and do a new SSIS project. You'd have at least one DataFlow task that would include a Flat File source that uses a connection to your flat file and a OLE DB Destination that uses connection to your SQL Server. Then you would use the transforms needed to complete your task(s). Without knowing what exactly you have to do I can't tell you what transforms you would use. I regularly use Lookups and Derived Column transforms.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 30, 2010 at 9:35 am
Hi Jack,
Thank you very much for the reply.
Could you please elaborate your experences using look up transformation.
Thanks alot,
Veena.
January 30, 2010 at 9:56 am
There's not much to expand on. You define a query, select the column(s) to match on and the column(s) to pass through. You just need to be aware that it is Case and space sensitive.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
January 30, 2010 at 11:33 am
Hi Jack,
Oh, Ok. Thanks alot.
Veena
January 30, 2010 at 12:39 pm
Florian,
Yes, the lookup can be a performance killer if you can't cache the lookup rows because it may have to query the lookup source for each row. Lookups perform better when the lookup table is small.
They still aren't as bad as UNION ALL's or SORT's
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
Viewing 7 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic. Login to reply