Search found 53125 matches

by ray.wurlod
Mon Jun 08, 2015 6:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF dropping comp3
Replies: 17
Views: 3765

The line numbers alone will tell you that something is missing. Investigate what is not in the file compared to what's received from the mainframe.
by ray.wurlod
Mon Jun 08, 2015 6:03 pm
Forum: General
Topic: Need to revoke job level auto pourge for multiple jobs at 1s
Replies: 8
Views: 2967

I can also ship DSXchange Learning Center DVDs. The price is the same whether shipped from USA or Australia. Postage is included.
by ray.wurlod
Mon Jun 08, 2015 5:58 pm
Forum: General
Topic: Need to revoke job level auto pourge for multiple jobs at 1s
Replies: 8
Views: 2967

DRSET is a variable that, presumably, had its value set earlier in your routine. @FM is a system variable that contains the value of "field mark", the top-level field delimiter in records in hashed files (the local job logs are hashed files). "//PURGE.SETTINGS" is the record ID o...
by ray.wurlod
Mon Jun 08, 2015 5:53 pm
Forum: General
Topic: Configuring FTP on unix script.
Replies: 2
Views: 1565

Re: Configuring FTP on unix script.

Kel wrote:Cant find anywhere else to ask for help.
How about your official support provider?
by ray.wurlod
Sun Jun 07, 2015 6:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rank and Priority in a Job
Replies: 1
Views: 1401

Rather than rely on us to spoon-feed you a solution, please suggest what YOU have tried, and allow us to guide you. There are probably several solutions - I would tend to one that encoded the CODE field into a sortable value, sort by that value, then use a Remove Duplicates stage. Paying close atten...
by ray.wurlod
Sat Jun 06, 2015 8:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF dropping comp3
Replies: 17
Views: 3765

It's normal behaviour for DataStage. If even one field does not conform to the metadata, then it cannot be certain that subsequent fields are being correctly parsed. So the default behaviour for DataStage is to drop the record. If you really want, you could read the file using a Sequential File stag...
by ray.wurlod
Thu Jun 04, 2015 5:28 pm
Forum: General
Topic: Need to revoke job level auto pourge for multiple jobs at 1s
Replies: 8
Views: 2967

The code snippet you posted changes the purge settings for one job's log file only. To change all jobs you would need to run the same code against every job's log.
by ray.wurlod
Thu Jun 04, 2015 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS connectivity with Hadoop
Replies: 8
Views: 6046

Yes. Use the HDFS stage.
by ray.wurlod
Thu Jun 04, 2015 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion - Varchar To Decimal
Replies: 2
Views: 2444

You could use the IsValid() function to filter records in which the incoming value is convertible to Decimal data type. "DU 2015F21" is not one of this class. You need to design a strategy to capture and process invalid data, even if it's only to initiate remediation of source data.
by ray.wurlod
Tue Jun 02, 2015 4:23 pm
Forum: General
Topic: ODBC Connection to Cache database from datastage server
Replies: 3
Views: 4510

You are connecting to Cache, which is itself returning an error (code 452).
Consult your Cache documentation to learn what error code 452 means. It might also suggest remedial action.
by ray.wurlod
Tue Jun 02, 2015 4:18 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Not able to download and Run the Report
Replies: 4
Views: 3926

At a guess, based on the error message that you posted, the issue is likely to be a permissions error with the reporting directory /tmp/InformationServer
by ray.wurlod
Tue Jun 02, 2015 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Would it be possible to load data dynamically into salesforc
Replies: 6
Views: 1610

The load side probably not, as noted, but you could certainly use RCP on the read side. You would have to make very sure that, at whatever point you transition to not using RCP (possibly a Transformer or Copy stage) that you have sufficient columns named identically to those required on the output.
by ray.wurlod
Mon Jun 01, 2015 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to read high values
Replies: 2
Views: 1482

That character is not covered by ASCII, even extended ASCII. Therefore you would need NLS enabled, and to use a map that handles the character - perhaps ISO8859-15.
by ray.wurlod
Mon Jun 01, 2015 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help to generate schema files dynamically for txt files
Replies: 15
Views: 7103

That solution would involve n! schema files to accommodate every possible schema file. 10! = 3,628,800.