Search found 245 matches

by arunkumarmm
Mon Aug 08, 2011 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion
Replies: 2
Views: 1592

Is it not possible for you to use a BASIC transformer and make use of IConv/OConv?
by arunkumarmm
Mon Aug 08, 2011 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Handling the COMP-2 Float value in the CFF Stage.
Replies: 1
Views: 1578

What is the issue here? The value you see in mainframe is in Hex. When you import the proper copybook to CFF, and the data you will get will be the equivalent decimal value.
by arunkumarmm
Mon Aug 08, 2011 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SEQ File
Replies: 3
Views: 2402

Will that be possible if we use ODBC stage to read a sequential file? I'm sure we can use ODBC stage to read a sequential file, I even tried but couldnt make it to work.
by arunkumarmm
Mon Aug 08, 2011 12:43 pm
Forum: General
Topic: Palette gone and can't be added
Replies: 3
Views: 2176

I believe the pallet will be available only when you have a job open.
by arunkumarmm
Mon Aug 08, 2011 12:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CombinedOperatorController,0: Null string argument
Replies: 5
Views: 10886

I have the same issue and I found that the Num() function in the stage variable creates this error. If I take that out, the job runs fine. Anybody have a solution or work around for this?
by arunkumarmm
Thu Jul 14, 2011 1:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: replicating same record many times.
Replies: 9
Views: 3439

Create your target file normally, like one output for an input. In the next step (Same or different job) read the whole record as one column, create a target file with 30 columns as pass the source value to all the 30 columns and for the first 29 columns append the Line terminator as required.
by arunkumarmm
Thu Jul 14, 2011 12:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: incoming .csv file with embedded line breaks
Replies: 5
Views: 4042

I assume that your file will have a " and Line termonator at end of each record. If so, Say if your file has DOS terminator, try to read the whole file using a folder stage, pass it to a transformer, replace all the " and DOS line terminator to " and UNIX line terminator and pass it t...
by arunkumarmm
Wed Jul 06, 2011 12:39 pm
Forum: General
Topic: Complex Flat file warning messages
Replies: 1
Views: 1292

Check if you have the right copybook and the file. This error mostly occurs when the data in the file does not match with the copybook.

You can also verify the file and copybook by importing them to mainframes.
by arunkumarmm
Thu Jun 09, 2011 2:03 pm
Forum: General
Topic: Can't open active stages
Replies: 3
Views: 1585

Is that happens only to a particular job or to all of the jobs? Did you try creating a new job? Is that the same?
by arunkumarmm
Wed Jun 01, 2011 9:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem Reading sequential file
Replies: 3
Views: 2431

Check if you have the same file format and the line terminators in both of them.
by arunkumarmm
Tue May 31, 2011 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Numbers issue
Replies: 9
Views: 5133

You cannot generate the numbers like how you expect with this. I have tried before but did not work. You should run the transformer sequentially. And when you run like that, you dont need to use this formula, you can just use @INROWNUM or @OUTROWNUM.
by arunkumarmm
Tue May 31, 2011 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read flat file with multiple columns
Replies: 2
Views: 1455

Read the entire record as one single column (With the length you think will be the maximum) and route it as required in a transformer with constrains A1/A2 etc., if thats all you need to do.
by arunkumarmm
Tue May 31, 2011 3:23 pm
Forum: General
Topic: Is there a way to Capture what Sequential files were Process
Replies: 11
Views: 5201

Add a parameter to you job, and pass the value (job start date or current timestamp) from the sequence and append the parameter to file name as required.
by arunkumarmm
Tue May 31, 2011 1:52 pm
Forum: General
Topic: Is there a way to Capture what Sequential files were Process
Replies: 11
Views: 5201

Well, you are not trying to write it to a output file in your command. Try this:

ls -a /data/DataStage/OPTICOM/SRC_FilePattern* > /data/DataStage/OPTICOM/FileNames.txt
by arunkumarmm
Tue May 31, 2011 1:23 pm
Forum: General
Topic: Is there a way to Capture what Sequential files were Process
Replies: 11
Views: 5201

Its a UNIX command to list the files in a specify path or current directory. And YES, you have the command activity in the job sequence to execute any command/script.