Search found 245 matches

by arunkumarmm
Thu Nov 05, 2015 3:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restart job from the position it failed
Replies: 5
Views: 3581

Just Curious.. If we are to build that design can it ever be in parallel mode?
by arunkumarmm
Thu Oct 15, 2015 2:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP Leading Zeros
Replies: 6
Views: 9544

Anyway its a csv file. Why cant you define your metadata as varchar? Thats should solve your problem I guess.
by arunkumarmm
Wed May 27, 2015 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header/Trailer Insert
Replies: 5
Views: 3560

Write your header and trailer to two different files and use a cat command in the after job subroutine to concatenate the files.
by arunkumarmm
Tue Oct 21, 2014 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Move .XML files to archive directory after processing
Replies: 8
Views: 5706

'mv' is the move command. What craig says is, we have two options inside the job properties, before and after commands, which would execute before the job is run or after the job is run as the name suggests. The unix command to move the .xml files to an archive folder can be given in the after comma...
by arunkumarmm
Tue Jul 15, 2014 5:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cobol file
Replies: 1
Views: 2719

Server or parallel, while you import the copybook DS will prompt for flatterning. Give yes and you will see all the occurs columns separately.
by arunkumarmm
Wed Oct 09, 2013 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC to ASCII
Replies: 11
Views: 6947

Okay. More questions. 1. What is your record length? From your examples it seems to be small (Unless you skipped some columns). 2. What can be the maximum volume of your file? If these are smaller records and the volume is not very high, I will suggest you to go for a Server job, use a sequential fi...
by arunkumarmm
Fri Oct 04, 2013 4:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error message: ORA-01861: literal does not match format stng
Replies: 3
Views: 4440

Re: Error message: ORA-01861: literal does not match format

however i tried by using StringToDate(select_stats.CLOSE_DT,"%mm/%dd/%yyyy") to avoid the error and error also gone but getting the below error now. Error message: ORA-01861: literal does not match format string from the oracle stage . The date from source coming as '08/20/2013' as char. ...
by arunkumarmm
Fri Oct 04, 2013 4:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading pipe delimited; but some columns missing
Replies: 6
Views: 5315

Never mind about your column delimiter. Read the whole record as one single column and split it up inside the transformer using field.
by arunkumarmm
Thu Oct 03, 2013 11:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dropping column depend on condition
Replies: 5
Views: 3730

Can you give more info about your source? Are all your source columns independent? From your example I guess they are. If they are all independent, why dont you convert all your columns as records and filter out the unwanted records?
by arunkumarmm
Tue Oct 01, 2013 1:19 am
Forum: General
Topic: How to pause job execution for availability of the job
Replies: 3
Views: 3356

Is it not possible to make another copy of the job? If not maybe you can also simply create a dummy file 'running.txt' at the beginning of the job and delete it in after job sub routine. And use wait for file activity's 'wait for file to disappear' in either of the job sequence to determine the comp...
by arunkumarmm
Tue Oct 01, 2013 1:08 am
Forum: General
Topic: Handling Job Exit status in Sequencer
Replies: 1
Views: 2458

Why can't you use a User variable activity in between your job activity and notification activity and convert the status number into whatever you want?
by arunkumarmm
Mon Sep 30, 2013 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle EMPTY XML file as Input
Replies: 2
Views: 2812

I dont think that should be a problem. Your job should run fine and extract only the header data.

The detail records, if not found, should finish with zero count.
by arunkumarmm
Mon Sep 30, 2013 12:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EBCDIC to ASCII
Replies: 11
Views: 6947

You have 1000 different record layouts but is your file a Fixed block file or a variable block file?
by arunkumarmm
Mon Sep 23, 2013 4:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of Hashed File Stage
Replies: 10
Views: 7618

Check for the proper file name too.

If the file name is parametrized, it might not have the same file name/path in the job as it does in the job sequence.

You may need to verify those values before trying to view it.
by arunkumarmm
Tue Sep 17, 2013 8:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help with EBCDIC to ASCII format PL/1
Replies: 6
Views: 4611

I dont think it is possible to read VB file using CFF in server job but you can do it in a parallel job.

You have marked your job as a server job but posted it in parallel forum.