Search found 324 matches

by sachin1
Tue May 13, 2008 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage ProcessId
Replies: 4
Views: 1605

i have not yet tried

DSJ. JOBPID Integer. Job process id.

process_id = DSGetJobInfo (DSJ.ME, DSJ. JOBPID) can help
by sachin1
Sun May 11, 2008 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get job details from GetJobInfo for given jobname
Replies: 10
Views: 8735

below code works for me......

Status_value = DSGetJobInfo (DSJ.ME, DSJ.JOBINTERIMSTATUS)

DSJ.ME is the job handle for current job.
by sachin1
Sat May 10, 2008 4:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: variable to get DataStage Home directory path
Replies: 8
Views: 8076

How about using system variable @PATH.
by sachin1
Fri May 09, 2008 11:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CONCAT timestamp
Replies: 9
Views: 3975

Re: CONCAT timestamp

store your incoming date value from oracle to a stage variable and use that variable like below 1.for example ICONV("2008-05-09","D-YMD[4,2,2]") = VAL 2.similary second variable to store time part. .........Iconv("02:46:40", "MTS") 3.then use OCONV function li...
by sachin1
Fri May 09, 2008 10:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CONCAT timestamp
Replies: 9
Views: 3975

Re: CONCAT timestamp

2008-05-08 21:28:26.0:0001 use ":" for concant
by sachin1
Wed May 07, 2008 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passage parameters between stages
Replies: 13
Views: 5418

need to write user defined sql using ":" for input columns for example

select deptno,case when deptno = :1 then dname else 'null' end from deptsb
by sachin1
Wed May 07, 2008 6:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passage parameters between stages
Replies: 13
Views: 5418

Re: passage parameters between stages

job design

oci stage---------->transformer---------->oci stage(check key columns for where condition)
by sachin1
Tue May 06, 2008 4:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export by command line
Replies: 5
Views: 1337

Re: Export by command line

i have never used it in unix system,

you can check for help in manager guide pdf, dscmdexport command can help

dscmdexport /H hostname /U username /P password /O omitflag project
pathname /V

or may be searching in forum can help.
by sachin1
Mon May 05, 2008 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage sequencer error
Replies: 7
Views: 4079

i am sorry to post a reply as the topic is already resolved, but i got one solution, so posting it, may raja123 can have a look on it. imagine your entire file format is abc05_05_2008_01.txt. 'abc' is filename that is fixed and can be parameter, '01' is version and '05_05_2008' is date format. i am ...
by sachin1
Sat May 03, 2008 1:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage sequencer error
Replies: 7
Views: 4079

Re: datastage sequencer error

Tried to implement what you want and OCONV(@DATE,"D_E") is working fine, also just try to compile your job called in sequencer and sequencer, also see getsysdate is string datatype in called job, it works fine.
by sachin1
Tue Apr 29, 2008 10:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge stage
Replies: 2
Views: 1004

Re: merge stage

just check all your input files are located in directory you mentioned, it may be that your merge stage is not able to read one of the input file.
by sachin1
Mon Apr 21, 2008 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine - Transform Function bug - missing Return(Ans)
Replies: 7
Views: 3089

Re: Routine - Transform Function bug - missing Return(Ans)

are you creating "BEFORE/AFTER subroutine" or transform function.
by sachin1
Thu Apr 17, 2008 3:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row merger
Replies: 9
Views: 4263

Hello Ray is it not possible with row merger stage.
by sachin1
Thu Apr 17, 2008 2:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row merger
Replies: 9
Views: 4263

hello just4u_sharath


i am facing the same problem, i am seeing 3 rows in output, but i want them to be in single rows like 123456789 for input

1;2;3
4;5;6
7;8;9

i see
1;2;3
4;5;6
7;8;9 in output.

can you please help.