What is the diff b/w Stored Proc (DB level) & Stored proc trans (INFORMATICA level) ?again why should we use SP trans ?

Showing Answers 1 - 2 of 2 Answers

prasanth

  • May 17th, 2006
 

If you need to call a stored procedure inside your mapping to pass a value to the SP and return or just return values to your mapping you need to use a SP transformation.

  Was this answer useful?  Yes

First of all stored procedures (at DB level) are series of SQL statement. And those are stored and compiled at the server side.In the Informatica it is a transformation that uses same stored procedures which are stored in the database. Stored procedures are used to automate time-consuming tasks that are too complicated for standard SQL statements.if you don't want to use the stored procedure then you have to create expression transformation and do all the coding in it.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions