need help in using the stored procedure stage

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
velagapudi_k
Premium Member
Premium Member
Posts: 142
Joined: Mon Jun 27, 2005 5:31 pm
Location: Atlanta GA

need help in using the stored procedure stage

Post by velagapudi_k »

How to use a STP Stage in DataStage Parallel Extender.
Venkat Velagapudi
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Your question is a wee bit too broad... what kind of help do you need? Have you read the docs? Pressed the Help button in the stage? Tried to actually use it?

Do you have any specific questions?
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

The same as any other stage. You connect links to it and edit its properties.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
John Smith
Charter Member
Charter Member
Posts: 193
Joined: Tue Sep 05, 2006 8:01 pm
Location: Australia

Post by John Smith »

Hi,
If your stored procedures expects parameters then you need to pass these onto the stage. Typically you will need to have input parameters and output parameters. The data type for the parameters must match up to what the stored procedure is expecting.
Other than that it's the same as any other stage.
JS
DS consultant.
kamalshil
Participant
Posts: 179
Joined: Mon Jun 23, 2008 1:19 am

Post by kamalshil »

John Smith wrote:Hi,
If your stored procedures expects parameters then you need to pass these onto the stage. Typically you will need to have input parameters and output parameters. The data type for the parameters must match up to what the stored procedure is expecting.
Other than that it's the same as any other stage.
JS
Yes you can do the parameter mapping in Stage -> Parameter Tab.
you can set parameter type is in or out there or can import the metadata of SP and use it.

out parameter values would be available in output link.
Post Reply