Search found 180 matches

by bigpoppa
Fri Nov 14, 2003 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PARALLEL AND NO PARTITIONED DB2
Replies: 1
Views: 2527

PARALLEL AND NO PARTITIONED DB2

In the Install Guide for PX, there should be a section about supported versions of databases AND the OS they are supported on. If you're having trouble with writing partitioned data to DB2, try putting a collector stage before the DB2 Stage. Collect your streams of data into one stream and write tha...
by bigpoppa
Fri Nov 14, 2003 8:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: System variable @INROWNUM compare with decimal
Replies: 5
Views: 5612

System variable @INROWNUM compare with decimal

That is weird. Are you planning on filing a bug report with Ascential? We'd like to know the outcome if you do.

Thanks,
BP
by bigpoppa
Thu Nov 13, 2003 2:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: System variable @INROWNUM compare with decimal
Replies: 5
Views: 5612

System variable @INROWNUM compare with decimal

Seems like it should work, so I don't know why it's not. Can you look at the compiled transform code and determine what type @INROWNUM is and if it is ever initialized and/or incremented? If you don't know C, just post the code and we'll help you look for it. If you can't get inrownum to work, try u...
by bigpoppa
Thu Nov 13, 2003 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with sorting 14M records
Replies: 8
Views: 2071

Problem with sorting 14M records

Scratch Space Full means that the physical disk that the Scratchdisk is pointing to in your config file is filling up. You need to point your scratchdisk to a physical disk with more space.

- BP
by bigpoppa
Tue Nov 11, 2003 1:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Set vs Sequential Stage
Replies: 5
Views: 4585

Data Set vs Sequential Stage

Ray,

You're right. Word-aligned, I believe. I don't know much more than what I already posted. I don't know about the NLS stuff.

- BP
by bigpoppa
Mon Nov 10, 2003 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Format File
Replies: 10
Views: 3165

Format File

Is there a 'null value' at the field level? If so, try setting that to ' ' (a space) and then try running your job again.

- BP
by bigpoppa
Mon Nov 10, 2003 10:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 UDB 8.1 Plug In DB2CODEPAGE environment variable
Replies: 2
Views: 2396

DB2 UDB 8.1 Plug In DB2CODEPAGE environment variable

Set it in Job Properties. You can add a environmental property on the same page where you can add parameters.

-BP
by bigpoppa
Mon Nov 10, 2003 10:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to obtain list of available tables in DtaStage Reposi
Replies: 1
Views: 3054

Unable to obtain list of available tables

Vasu,

Please try posting this question to the regular DataStage forum. I feel this might not be a problem specific to PX.

Thanks,
BP
by bigpoppa
Mon Nov 10, 2003 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Aggregation and Remove Duplicates Stage
Replies: 7
Views: 2095

Regarding Aggregation and Remove Duplicates Stage

Sorting is required for remdup as it looks at adjacent rows to find key matches.

- BP
by bigpoppa
Mon Nov 10, 2003 9:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Format File
Replies: 10
Views: 3165

Format File

Do you wish to specify a file format for importing or for exporting (i.e. writing)? Check out "Field Properties" for the import/export stage. I think you want to use the property 'padchar'.

-BP
by bigpoppa
Mon Nov 10, 2003 9:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparing Dates in PX jobs
Replies: 2
Views: 1127

The subtraction operator is overriden for the APT_DATE type. You can subtract two APT_DATEs, and the result will be given to you in number of days. You can use other date functions to convert this into MON/DAY/YEARS.

- BP
by bigpoppa
Fri Nov 07, 2003 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Aggregation and Remove Duplicates Stage
Replies: 7
Views: 2095

Regarding Aggregation and Remove Duplicates Stage

As with almost all parallel stages that work on key fields, you must first hash the data and then sort the data by the key fields before you pass it to aggregator and remove dups. Are HASHing AND SORTing by the right keys b/c you use aggregator or rem_dup?

Thanks,
BP
by bigpoppa
Fri Nov 07, 2003 10:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Set vs Sequential Stage
Replies: 5
Views: 4585

Data Set vs Sequential Stage

You can also read/write from/to a file set using PX. A file set is a set of partitioned sequential files, similar to a dataset, yet viewable w/o PX. A PX trick with using datasets is to keep your data byte-aligned. I got this tip a while ago, and from what I understand, byte-alligned data is easier ...
by bigpoppa
Thu Nov 06, 2003 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle bulk loader TIMESTAMP "YYYY-MM-DD HH24:MI:SS.FF6
Replies: 1
Views: 1672

Oracle bulk loader TIMESTAMP "YYYY-MM-DD HH24:MI:SS.FF6

I am trying to use the ORACLE Bulk Loader stage to generate a ctl for a record layout that contains a timestamp field with the following format: TIMESTAMP "YYYY-MM-DD HH24:MI:SS.FF6". I don't really see a good way to do this b/c the time-spec in the stage is a drop down that doesn't have a...