Search found 143 matches

by devesh_ssingh
Fri Oct 31, 2008 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change default values in the MVS edition
Replies: 1
Views: 1030

SYSDA = UNIT, other possible value is TEMP. UNIT parameter basically tells where exactly on a volume you are storing your data set and when you specify UNIT =SYSDA it means you are storing on permanent storage there. When you specify UNIT = TEMP, it means its a temporary storage on your volume where...
by devesh_ssingh
Fri Oct 31, 2008 4:55 am
Forum: General
Topic: DataStage MVS Edition for 8x
Replies: 4
Views: 3264

I am working on MVS 8x since one year on a data migration project.
How can you assist you?
by devesh_ssingh
Fri Oct 31, 2008 4:43 am
Forum: General
Topic: Comparing data in the columns
Replies: 14
Views: 6724

easiest logic when you are comapring columns, Creat Two stage variable SVPrev SVcur assigned SVcur to SVprev and now,in SVcur concat all the coulmns which you want to compare then set Svflag= if SVPrev<>SVcur then T else F in this way you will be able to compare all the columns at a time. then on fl...
by devesh_ssingh
Fri Oct 31, 2008 4:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What additonal required to work in PX jobs?
Replies: 3
Views: 2123

ok so its easy to switch in to server eddition.
And how does parellel job differ...can we develope Parellel jobs on windows enviourment assuming it happen only in unix Os?
What other concept need to adpated in case of switch to PX?
by devesh_ssingh
Thu Oct 30, 2008 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What additonal required to work in PX jobs?
Replies: 3
Views: 2123

What additonal required to work in PX jobs?

Hi all, I have experince working in data migration project in MVS edition with 8x version, what additional i need to learn so that i can work for PX and server version? in other way how PX and server jobs are different from Mainfrmae jobs(MVS)? Many many Thanks in Advanace. Kind Regards, Devesh singh
by devesh_ssingh
Wed Jul 02, 2008 3:30 am
Forum: General
Topic: conversion of string to timestamp with microseconds
Replies: 1
Views: 4191

conversion of string to timestamp with microseconds

Function used in transformer ---> StringToTimestamp(XMLInput_db_tgt_ln.EVENTTIME [1,10] : ' ' : XMLInput_db_tgt_ln.EVENTTIME [12,8] : '.': XMLInput_db_tgt_ln.EVENTTIME[14,6],"%yyyy-%mm-%dd %hh:%nn:%ss.6") This funtion i have used .but i am not getting the actual output.My output is 2008-06...
by devesh_ssingh
Tue Jun 10, 2008 4:32 am
Forum: General
Topic: Unix command in datastage using External filter stage
Replies: 3
Views: 4773

how to use properties for external filter stage.

ArndW wrote:I am not sure what is happening in your case, I just wrote a simple test (row generator -> external command -> peek) and put in your cut command and it worked like a charm. ...

I wanted to know how to use external filter stage properties so that it will recognize argument which i am sending.
by devesh_ssingh
Tue Jun 10, 2008 4:01 am
Forum: General
Topic: Unix command in datastage using External filter stage
Replies: 3
Views: 4773

Unix command in datastage using External filter stage

Hi, I want to use Cut command in Datastage job with External filter stage. My command is Cut -d ',' -f 2 but not able to use argument part of above command in External filter stage. when I am running Datastage job getting following: External_Filter_0,0: Wrapped Unix command 'cut -d ','-f 2' terminat...