Make Vector 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
varshanswamy
Participant
Posts: 48
Joined: Thu Mar 11, 2004 10:32 pm

Make Vector Stage

Post by varshanswamy »

Hi,

I have tried using the make vector stage, but the job gets aborted
I have a sequential file ans input send it to a make vector stage and later
again send it another sequential file, I have tried out the exaple given in
Parallel Extender Guide, but it does'nt seem to work

regards,
varsha
Sainath.Srinivasan
Participant
Posts: 3337
Joined: Mon Jan 17, 2005 4:49 am
Location: United Kingdom

Post by Sainath.Srinivasan »

I have tried it and it works. Can you please let me know your job design and the error you received.
kcshankar
Charter Member
Charter Member
Posts: 91
Joined: Mon Jan 10, 2005 2:06 am

Post by kcshankar »

Hi varsha,

I tried using Dataset,it is working fine.
bcarlson
Premium Member
Premium Member
Posts: 772
Joined: Fri Oct 01, 2004 3:06 pm
Location: Minnesota

Post by bcarlson »

Code: Select all

Type: String
The beginning part of the name of the series of consecutively numbered columns (named like xxxyyy0 to xxxyyyn) to be combined into a vector called xxxyyy.
This is taken right from Designer, the information box describing the "Column's Common Partial Name".

If your input fields are not named correctly, you won't be able to make vectors with them

myfieldA, myfieldB, myfieldC wont work, but myfield1, myfield2, myfield3 will (common name = "myfield").

We could use more information about what you are doing, otherwise all we can do is guess what went wrong.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

:idea: A preceding Modify stage can be used to rename columns.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
varshanswamy
Participant
Posts: 48
Joined: Thu Mar 11, 2004 10:32 pm

Post by varshanswamy »

bcarlson wrote:

Code: Select all

Type: String
The beginning part of the name of the series of consecutively numbered columns (named like xxxyyy0 to xxxyyyn) to be combined into a vector called xxxyyy.
This is taken right from Designer, the information box describing the "Column's Common Partial Name".

If your input fields are not named correctly, you won't be able to make vectors with them

myfieldA, myfieldB, myfieldC wont work, but myfield1, myfield2, myfield3 will (common name = "myfield").

We could use more information about what you are doing, otherwise all we can do is guess what went wrong.
thanks it worked
Post Reply