If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Database Server Software > Informix > Informix Etl

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 04-16-07, 18:01
mselim mselim is offline
Registered User
 
Join Date: Apr 2007
Posts: 2
Informix Etl

I am looking for a third party tool to extract informix data from one UNIX box to another. Any idea who has this type of tool?
Reply With Quote
  #2 (permalink)  
Old 05-30-07, 09:10
singhald singhald is offline
Registered User
 
Join Date: Sep 2005
Posts: 9
Hello you can use some rcp command to copy tHe data from unix box to other unix box. or you can use Datastage ETL tool to extrect the data from one unix box to and load the data into other unix box


Deepak
Reply With Quote
  #3 (permalink)  
Old 05-18-12, 06:31
begooden-it begooden-it is offline
Registered User
 
Join Date: Sep 2011
Location: Pont l'Abbé, Brittany, France
Posts: 183
Sorry for the old post .... this will be useful for the community though:

If you have IBM Informix 11.70 or greater, you need no commercial ETL as long as you accept to type some query text: Informix now has the so called external tables, that map ascii files ( structured, delimited etc...) or entire directories containing those files, into Informix tables that can be used as regular tables.

This functionality has been implemented from the Informix XPS engine (the previous datawarehouse dedicated version of Informix), meaning it is extremely efficient in terms of performance, sometimes even more than informix high performance loader ( and way more simple to use!). You will find an example in this article

So in your case, copy the files to the other box, create the external tables and then
insert them into the new box's database like this
INSERT INTO new_table SELECT *(or whatever) FROM external_table

And that's it.

If interested in ETL for datawarehouse, check the Informix Warehouse Accelerator solution, which is a revolutionnary way of handling a datawarehouse and datamarts.
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On