Search found 21 matches

by Shaanpriya
Thu Feb 24, 2011 4:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Fileset,Fileset or Dataset for Reference
Replies: 9
Views: 4239

Lookup fileset are preferred as
1) Indexing details of columns are preserved
2) The lookup column details are also stored.
by Shaanpriya
Thu Feb 24, 2011 3:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Pipe Delimited, Variable Length, EBCDIC file
Replies: 0
Views: 2227

Reading Pipe Delimited, Variable Length, EBCDIC file

Hello All, We have a requirement for reading a Pipe Delimited, Variable Length, EBCDIC file. I am using a CFF stage for the same. Things done 1) File layout imported 2) Record Type set as "Variable" 3) Character Set kept as "EBCDIC" But where do we specify the Field delimiter in ...
by Shaanpriya
Tue Jan 11, 2011 10:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Variable Length Packed Decimal
Replies: 4
Views: 2630

We will be getting a records of say length 20. In this record, one field(or one column) will be of type packed decimal and the starting position and the ending position of this field's going to be variable.
by Shaanpriya
Tue Jan 11, 2011 5:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Variable Length Packed Decimal
Replies: 4
Views: 2630

Variable Length Packed Decimal

Hi All,

We have a requirement in our project, wherein we need to read a variable length packed decimal field from a mainframe file , which is FTPed into our Unix box.

Any ideas on how this could be read?
by Shaanpriya
Mon Jul 19, 2010 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJOB Issue
Replies: 6
Views: 4016

yes.. Used the below query /opt/IBM/IIS/InfoSrv81/Server/DSEngine/bin/dsjob -server SERVER-user UN-password PWD-run -wait 'Path1=/home/cdhuser/USERNAME/file.txt''Path2=/home/cdhuser/USERNAME/reconfile.txt''Dsnsource=DSN_dv''Dsnusername=USERNAME''Dsnpassword=PASSWORD''RejPath=/home/cdhuser/USERNAME/r...
by Shaanpriya
Mon Jul 19, 2010 12:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJOB Issue
Replies: 6
Views: 4016

I have cded into the directory where the dsjob is stored. i am trying to run it from there. Is this not right??
by Shaanpriya
Mon Jul 19, 2010 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJOB Issue
Replies: 6
Views: 4016

Tried that as well. Again getting the same issue. Even
dsjob -lprojects
doesnt work
by Shaanpriya
Fri Jul 16, 2010 5:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performance tips
Replies: 13
Views: 5600

Sainath.Srinivasan wrote: If you are new to DataStage, why are you tasked with putting together such a 'performance tips and coding standards document' !!??
Exactly my thoughts!
by Shaanpriya
Fri Jul 16, 2010 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transfer environment variables
Replies: 2
Views: 1984

why do you want to transfer env variables?
They will be common for all the projects. You can modify them by including them as part of your job design.
by Shaanpriya
Fri Jul 16, 2010 5:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Abort for Funnel Stage
Replies: 3
Views: 2078

Have you specified same partition to the data coming from the dataset?
by Shaanpriya
Fri Jul 16, 2010 12:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find Last Record.
Replies: 4
Views: 2707

Use tail stage to get the last 'n' number of records
by Shaanpriya
Fri Jul 16, 2010 12:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How DataStage Perform Interaction with External Scripts
Replies: 4
Views: 2548

You can use the "Before Job" , "After job" properties available in the stages.
by Shaanpriya
Wed Jul 14, 2010 4:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL Handling Issue
Replies: 16
Views: 7150

The irrelevant result must be due to blank spaces.

Try using

If NullToEmpty(col1) = trim(col1) then '' else col1
by Shaanpriya
Wed Jul 14, 2010 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 6100

I have faced similar issues. Mine was a 300+ column transformer and it did take a performance hit. Best bet is to try and use the modify stage.