Search found 15 matches

by boggavarapu
Sat May 12, 2012 9:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting single row into multiple rows with Delimiter '|'
Replies: 12
Views: 16635

I tried this and got the solution. I first used field function to split the data in col2 to different columns. then i used pivot stage to get the desired out put.. SEQ>>TRF>>PVT>>SEQ TRF: Field(DSLink3.col2,',',1) Field(DSLink3.col2,',',2) Field(DSLink3.col2,',',3) PVT: col2:= col2,col3,col4
by boggavarapu
Sat May 12, 2012 9:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column import stage warning
Replies: 7
Views: 4040

We can use the field function in the transformer stage:
Field(DSLink3.col1,',',1)
Field(DSLink3.col1,',',2)
Field(DSLink3.col1,',',3)

for three columns. We can get the desired output.
by boggavarapu
Sun May 06, 2012 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: passing variable values to columns
Replies: 3
Views: 2253

Hi,

I tried it but it is showing the compilation error.

In order to over come this is used GetEnvironment("Environment_variable").

Now it is fine.
by boggavarapu
Thu May 03, 2012 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reject mode in Sequential file stage
Replies: 2
Views: 5078

Reject mode in Sequential file stage

I am new to the data stage: Can any one explain me the reject mode in Sequential File stage: I had a simple Job: SEQ_FILE_STAGE-------->Dataset | | Seq_Reject The input are: empno,sal 101,2000 102,2003 201,5000 203,6000 300,7000 401,10000 in the Filter option i placed a command: awk -F"," ...
by boggavarapu
Tue May 01, 2012 1:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash partitioning
Replies: 7
Views: 5362

Hash partitioning

Hi,

I had a doubt in hash partitioning:

Ex: Deptno
10
10
20
20
30
30
40
I want to know how the hash partition splits the Deptno data among 3 nodes.
by boggavarapu
Tue May 01, 2012 1:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicates in Dataset in Unix.
Replies: 10
Views: 4664

That's highly impossible in unix Thanks, that mean's presenting the dataset after removing the duplicates in it in unix environment is impossible. Ex: Empno 1 2 2 3 O/P: Empno 1 2 3 This is Quit impossible in Unix environment Right?????
by boggavarapu
Tue May 01, 2012 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicates in Dataset in Unix.
Replies: 10
Views: 4664

ray.wurlod wrote:Use a DataStage job. ...
Thanks but i want to do it in UNIX
by boggavarapu
Mon Apr 30, 2012 10:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicates in Dataset in Unix.
Replies: 10
Views: 4664

ray.wurlod wrote:Use the uniq command. Dump the contents of the Data Set using orchadmin command, and pipe its output into a uniq command. ...
Thanks Ray,

I had one more doubt, I want to know how to rebuilt the Dataset.
by boggavarapu
Mon Apr 30, 2012 1:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove duplicates in Dataset in Unix.
Replies: 10
Views: 4664

Remove duplicates in Dataset in Unix.

I had a scenario where i have to remove the duplicates in the dataset in unix environment.

Ex: PNO
1
1
2
3
4
4
by boggavarapu
Tue Apr 24, 2012 11:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading multiple files in server jobs
Replies: 12
Views: 7281

Need help

ray.wurlod wrote:TYPE is the DOS equivalent of the UNIX cat command. That's why Craig mentioned both. ...
Hi Ray,

I am new to the Datastage. Can u please explain how to use TYPE in-order to
combine all the files data into single file.
by boggavarapu
Tue Apr 24, 2012 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Finding Single occurence and multiple occurence
Replies: 1
Views: 1253

Finding Single occurence and multiple occurence

Hi Folks,

Can any help me in solving this scenario please.

I need multiple occurrence and single occurrence in different output links.

I/P:
10
20
10
10
20
30

O/P1:
10
10
10
20
20

O/P2:
30
by boggavarapu
Mon Nov 07, 2011 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash file can user in Parallel Jobs?
Replies: 2
Views: 1667

Hash file can user in Parallel Jobs?

Can we use "Hash file" in Parallel Jobs?
if enable any options from admin side is it posible to use "hash file" in parallel jobs?
by boggavarapu
Thu Jun 30, 2011 9:27 am
Forum: General
Topic: Job Jobs export Using "ISTOOL" command
Replies: 2
Views: 1462

I want this export process automated and not to give password in the run time.
by boggavarapu
Thu Jun 30, 2011 8:49 am
Forum: General
Topic: Job Jobs export Using "ISTOOL" command
Replies: 2
Views: 1462

Job Jobs export Using "ISTOOL" command

All, I am trying to export datastage jobs using "ISTOOL" command in the linux script and it is working fine but I need to enter passwd "hard code" in the script. Is there any way to export jobs with out "hard coding" passwd by using ISTOOL in the linux scripting? Please...