Search found 53125 matches

by ray.wurlod
Tue Feb 27, 2007 4:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsenv & orchadmin
Replies: 9
Views: 7010

The orchadmin command is in $APT_ORCHHOME/bin - I'm prepared to bet this is not in your PATH.

To use orchadmin you need APT_CONFIG_FILE set also. This is usually not set in the dsenv script.
by ray.wurlod
Tue Feb 27, 2007 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: External Function
Replies: 4
Views: 1039

There's a lot to do in there. Why are you converting "5,439-cc" to "5438 cc"?

As noted elsewhere, the BASIC function MatchField() is ideal for this kind of task.
by ray.wurlod
Tue Feb 27, 2007 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL referencing a list
Replies: 16
Views: 4846

Not really. There is a class that the vendor used to offer, called Programming with DataStage BASIC, and one with a similar title that I offer (see website), but not much in the way of documentation per se.
by ray.wurlod
Tue Feb 27, 2007 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSSendmail using not standard port 25
Replies: 4
Views: 1212

You *should* be able to use the standard hostname:nnnn style for specigfying a non-default port number.
by ray.wurlod
Tue Feb 27, 2007 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchestrate Shell or osh
Replies: 1
Views: 3869

There used to be an entirely scripted product called Orchestrate, from Torrent Systems. Ascential Software (vendor of DataStage at the time) acquired Torrent Systems and created a DataStage GUI that write osh scripts to invoke various of the Orchestrate operators. Yes, it is possible to create osh s...
by ray.wurlod
Tue Feb 27, 2007 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: look up warning
Replies: 4
Views: 1274

Remove Duplicates stage upstream. Or a sort (Sort stage or input link sort) with the "unique" option selected.
by ray.wurlod
Tue Feb 27, 2007 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem using where clause in sql query in oracle enterprise
Replies: 2
Views: 1047

What is the WHERE clause? Can you execute the query with a WHERE clause successfully in another client, such as sqlplus or TOAD?
by ray.wurlod
Tue Feb 27, 2007 3:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: literal spaces treated as a key
Replies: 10
Views: 3811

Set APT_STRING_PADCHAR to space (\x20) rather than to NUL (\x00).
by ray.wurlod
Tue Feb 27, 2007 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import external function fails
Replies: 4
Views: 1590

This could be that the indexing on DS_ROUTINES table in the repository is invalid or out of date. Try reindexing (which rebuilds the indexes).
by ray.wurlod
Tue Feb 27, 2007 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Make Error Report In DataStage
Replies: 2
Views: 975

You may need to pre-sort the rows, and to use a Copy stage to re-order the columns.
by ray.wurlod
Tue Feb 27, 2007 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to elimilate warning when converting string to timestamp
Replies: 8
Views: 4709

Because the question was how to eliminate warning from job log, and I treated it literally.
by ray.wurlod
Tue Feb 27, 2007 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to run an Unix script from windows server
Replies: 4
Views: 1296

rsh UNIXhostname options -l remoteusername command

Options include
-D enable socket debugging
-N send all output to stdout, nothing to stderr
-n redirect stdin from /dev/null (.\NUL)

Examples
rsh username@hostname -DNn command
rsh -DNn -l username hostname command
by ray.wurlod
Tue Feb 27, 2007 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: user defined query
Replies: 7
Views: 1846

Did you recompile the job after changing the user-defined SQL?
by ray.wurlod
Tue Feb 27, 2007 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: loop for performing jobs to different tables and files?
Replies: 10
Views: 2129

If there's a small number of counter items in the loop, you could decode them in the expression that is used to set the parameter value. Otherwise you could pass the counter value to a routine which decodes and returns the relevant password_exp value, using the routine's return value to populate the...
by ray.wurlod
Tue Feb 27, 2007 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: table definition
Replies: 3
Views: 974

... or, if you have one output defined in the Transformer stage, simply drag the columns from there to the other output within the Transformer stage editor.