September 26, 2011 at 7:25 am
This is out of my scope atleast for now but was looking to get some advice....
I have some 3rd party non SQL Server database that I have sucessfully migrated all of it's tables to my local SQL instance using an ODBC connection. I was told I would only need to do this data migration one time however things have changed. I now need to know how to automate grabbing new data from this vendor database and updating my local instance with the new data. What would I use to do this? Thank you!
September 26, 2011 at 7:31 am
SSIS is probably the best way to go, although linked servers might be better, depending on your exact requirements.
John
September 26, 2011 at 8:19 am
Thanks John. This data is coming from a Cobal database. Would you happen to have any links on how this might be done in SSIS?
September 26, 2011 at 8:24 am
It's not something I've ever done, I'm afraid. You'll probably need to do some good old-fashioned research... unless anyone else can point you in the right direction.
John
September 26, 2011 at 2:46 pm
can this post help u ?
http://www.sqlservercentral.com/Forums/Topic605075-145-1.aspx
Regards,
Sushant
Regards
Sushant Kumar
MCTS,MCP
September 27, 2011 at 8:15 am
Can you use the "Import Data" wizard, then save it as an SSIS package at the end of the process ?
September 28, 2011 at 6:45 am
Cobol is not a database but a programming language. Maybe the db is DB2 or something.
September 28, 2011 at 7:48 am
September 29, 2011 at 8:15 am
If the data you are importing are in the form of flat text files, you could write your own ETL routine to import them. I have done this a few times myself. Import each row into a record in a temp table, then use string parsing functions to extract your data and insert into relational tables. Yes I know it is rbar, but it works beautifully and is completely customized to your specific needs. The length and complexity of this task depends on how much variation there is in the incoming data. If the format is fairly consistent, it should not be too bad.
Hakim Ali
www.sqlzen.com
Viewing 9 posts - 1 through 8 (of 8 total)
You must be logged in to reply to this topic. Login to reply