Search found 53125 matches

by ray.wurlod
Thu Jan 07, 2010 4:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling a parallel job many times using parameters
Replies: 10
Views: 7769

DataStage BASIC does not have WHILE..WEND. The correct syntax for DataStage BASIC is given in the DataStage BASIC manual, and can be learned from the Programming with DataStage BASIC training DVD available from DSXchange Learning Center . While or Until tests can be used in uncounted or counted loop...
by ray.wurlod
Thu Jan 07, 2010 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS enterprise - UTF-8 - Fix length files
Replies: 1
Views: 980

DataStage with NLS enabled reads the file in bytes only as far as the NLS map, which converts the byte stream into Unicode code point equivalents. There should be no problem reading fixed-width format files in any MBCS (multi-byte character set) encoding. I have processed files containing Japanese c...
by ray.wurlod
Thu Jan 07, 2010 4:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file Options
Replies: 1
Views: 852

The UniVerse manuals, now hosted on Rocket Software site, will be of most help, particular the System Description. Search DSXchange to find the URL.
by ray.wurlod
Thu Jan 07, 2010 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File record insertion with default values
Replies: 1
Views: 899

It can't. You have to design this. Typically detecting zero rows involves two jobs - one to do the testing and a different one to take the action. Control is exerted, of course, via a sequence.
by ray.wurlod
Thu Jan 07, 2010 4:23 pm
Forum: General
Topic: Server jobs vs Parallel jobs
Replies: 3
Views: 1594

This is a matter of personal philosophy and office politics rather than a technology argument. My personal philosophy is to use the right tool for the job, which is often a mix of server and parallel jobs. The fact that the target is a data warehouse is moot. Server jobs are especially good at low v...
by ray.wurlod
Thu Jan 07, 2010 4:19 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: configuration of web services
Replies: 12
Views: 6518

Is 13538 a typo? (the DataStage client/server port is 31538.)
by ray.wurlod
Thu Jan 07, 2010 3:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the name of the Job Logs file
Replies: 1
Views: 1088

Each job has its own log, which is a table in the Repository. The job has a unique number assigned when the job is created, and the name of the table that contains the job log is RT_LOGnnn where nnn is that job number. Job names are mapped to job numbers in the DS_JOBS table. Note that job logs are ...
by ray.wurlod
Thu Jan 07, 2010 3:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deletion of Dataset without Orchadmin command
Replies: 7
Views: 3060

Yes, provided that the xyz.ds file (the descriptor file for the Data Set) has already been deleted, which the early part of this post seems to suggest is the case.
by ray.wurlod
Thu Jan 07, 2010 3:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: accessing the data stage server
Replies: 3
Views: 1040

In general, provided that the first two numbers in the version are the same (here, 7.5), you will be OK.
by ray.wurlod
Thu Jan 07, 2010 3:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequencer should be shown as "Aborted"
Replies: 2
Views: 1176

Check "generate warning for activities that finish with status other than OK" in all sequence and recompile the sequences. Detect the warning in the top level sequence and handle them there.
by ray.wurlod
Thu Jan 07, 2010 2:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to fetch all entries of job log from unix?
Replies: 7
Views: 5161

There are other options for retrieving the event ID of the most recent log event of particular type, and for retrieving the detail of any particular event.
by ray.wurlod
Thu Jan 07, 2010 2:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Numeric part extraction
Replies: 5
Views: 1624

Use the DIGITS Transform. This is precisely what it does.
by ray.wurlod
Thu Jan 07, 2010 2:56 am
Forum: General
Topic: Issue returning data from Routine Activity
Replies: 10
Views: 3646

You are not correct. Any server routine can return any data.

The problem you have reported does not come from the code you have posted. You have not called DSSetParam() correctly - or you may have provided a parameter value of incorrect type in a job activity in a sequence.
by ray.wurlod
Wed Jan 06, 2010 11:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deletion of Dataset without Orchadmin command
Replies: 7
Views: 3060

Look at the files in the directories specifed as resource disk in your configuration file. These files are the data files associated with Data Sets and File Sets. Somewhere in the very long, generated name of each is the name of the control file for the Data Set or File Set to which it belong(ed).
by ray.wurlod
Wed Jan 06, 2010 11:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic in stage variable
Replies: 12
Views: 3055

That's what the Remove Duplicates stage, mentioned by Sainath early in this thread, is for.