How does GPLOAD in Greenplum works with Informatica PWX connectors?

link|improve this question
feedback

closed as not a real question by Jack Maney, Book Of Zeus, Cody Gray, BЈовић, Graviton Jan 29 at 14:06

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

1 Answer

There is a Greenplum PWX connector that is now owned and supported by Informatica. The GP PWX connector calls gpload under the hood to move data into the database. You'll need to install gploaders, python 2.4.4 or higher and the PWX connector itself on the proper Informatica server. You'll also need a working ODBC driver installed on your Power Center Designer servers so they can talk directly to the DB to get table definitions.

Full instructions are included in the PWX package you get from Informatica.

link|improve this answer
Thanks for those comments, we do have the PWX connector, but I need to know the real internals of how the INSERT, UPDATE, MERGE works in greenplum through Informatica . Any idea – gurur20 Jan 27 at 12:54
gpload works through a control file where you specify the source, target and format of your data, and you can specify many options. INSERT, UPDATE and MERGE are all supported, and you can specify whether to truncate your target table before executing, run pre- and/or post-execution commands Some useful links: link link link – KaBar Jan 28 at 1:38
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.