Search found 53125 matches

by ray.wurlod
Thu Mar 11, 2010 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: limit of files and subdirectories in AIX
Replies: 10
Views: 6020

RT_BPnnn, RT_SCnnn, RT_SCTEMP and RT_BPnnn.O are directories and must remain so. RT_CONFIGnnn and RT_STATUSnnn contain small and unvarying volumes of data, and so are good candidates for static hashed structure. RT_LOGnnn is the job log, and would cause lots of headaches keeping it tuned if you conv...
by ray.wurlod
Thu Mar 11, 2010 5:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: FTP a member of a partitioned data set
Replies: 7
Views: 3757

Welcome aboard.

Are you talking about a DataStage data set here, or something else?

If so, how are you identifying the partition to FTP?
by ray.wurlod
Thu Mar 11, 2010 3:26 pm
Forum: Site/Forum
Topic: Another Milestone
Replies: 2
Views: 2752

Another Milestone

Today the number of topics in the Enterprise Edition (parallel) forum passed 20,000.

How long, I wonder, before it overtakes the Server Edition forum topic count?
by ray.wurlod
Thu Mar 11, 2010 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: limit of files and subdirectories in AIX
Replies: 10
Views: 6020

Actually DS.CHECKER only checks for orphaned entries. I suspect what Arnd meant was the CLEAN.ACCOUNT utility.
by ray.wurlod
Thu Mar 11, 2010 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read file through complex flat file stage
Replies: 11
Views: 6055

Use Record Delimiter String property rather than Record Delimiter property.
by ray.wurlod
Thu Mar 11, 2010 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Delta Changes in the same cycle run
Replies: 4
Views: 2147

The SCD stage caches the dimension table (or at least those rows thus far processed) in memory, so it should be able to detect that the natural key has already been seen in the current run.
by ray.wurlod
Thu Mar 11, 2010 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SAP-DS connection
Replies: 3
Views: 2702

Can you look in the job log (job starting event) to determine what parameter values are actually being passed? That's about the only place there might be difference if the job runs OK from the DataStage client.
by ray.wurlod
Thu Mar 11, 2010 3:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate multiple records from 1 record in the input based o
Replies: 1
Views: 1637

Parse the comma-delimited values into separate fields (using a Transformer or Column Import stage) then use a Pivot stage to generate the rows with the first four fields defined as the Pivot Keys.
by ray.wurlod
Wed Mar 10, 2010 10:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Delta Changes in the same cycle run
Replies: 4
Views: 2147

I would imagine that SCD stage would handle multiple changes in the one stream.
by ray.wurlod
Wed Mar 10, 2010 4:04 pm
Forum: IBM QualityStage
Topic: how many tokens exist in the address field
Replies: 5
Views: 2086

That's what I thought you meant, and why I answered that particular question. To read the entirety of that answer you will need to get yourself a premium membership. Premium membership is one of the ways that the hosting and bandwidth costs of DSXchange (which you will notice carries no advertising)...
by ray.wurlod
Wed Mar 10, 2010 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: limit of files and subdirectories in AIX
Replies: 10
Views: 6020

There is a limit on the number of subdirectories, and it's approximately 32655. There is no practical limit on the number of files. Your ls command lists files as well as directories - use a filtered ls or find command to limit the list to directories only. Consider deleting unwanted jobs, using mor...
by ray.wurlod
Wed Mar 10, 2010 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LIKE operator in IF ELSE Condition
Replies: 12
Views: 10004

For processing efficiency load the first four characters into a stage variable, for example svFirstFour. Map to upper case if your data contain mixed case.

Code: Select all

If svFirstFour = "DELL" Then "DELL" Else If svFirstFour = "CISC" Then "Cisco" Else "N/A"
by ray.wurlod
Wed Mar 10, 2010 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compilation error
Replies: 15
Views: 6537

Have you also installed the SDK? You need to.
by ray.wurlod
Wed Mar 10, 2010 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need help in using the stored procedure stage
Replies: 4
Views: 2800

The same as any other stage. You connect links to it and edit its properties.
by ray.wurlod
Wed Mar 10, 2010 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing Script Output in After Job sub routine
Replies: 10
Views: 4816

DB2 is exactly the same except for the name of the command which, unsurprisingly perhaps, is "db2".