Search found 53125 matches

by ray.wurlod
Tue Jan 24, 2006 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to print in next line
Replies: 8
Views: 2572

Convert() is more efficient than Ereplace() for single character substitution. You can gain further efficiency by initializing a stage variable (call it svLF) to Char(10) and not providing a derivation for it for each row. This means that the Char(10) function is evaluated only once. Convert(&qu...
by ray.wurlod
Tue Jan 24, 2006 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to invoke programs in a remote server
Replies: 2
Views: 916

You can also use the AT command.

Code: Select all

AT \\computername time "command"
by ray.wurlod
Tue Jan 24, 2006 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AS400 and DataStage connectivity
Replies: 2
Views: 1492

DataStage EE MVS does have the ability to call routines on the mainframe, though you do need to tell DataStage where the library, in which the routine code is, is. I do not know of any way out of the box that DataStage server edition can call mainframe routines directly. There are probably (very exp...
by ray.wurlod
Tue Jan 24, 2006 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage-Behaving differently
Replies: 5
Views: 3540

"=string" tells the Modify stage to use the value of an input column called string, but it can't find an input column of that name. In any case, you should not use "string" as a column name, since it's a reserved word. Look up the correct syntax for a Modify stage substitution expression and correct...
by ray.wurlod
Tue Jan 24, 2006 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential files
Replies: 3
Views: 951

The UNIX command sort -u is the most efficient imho.
by ray.wurlod
Tue Jan 24, 2006 2:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 7584

From the Administrator client select one or more contiguous commands from the history pane and click Save. You will be prompted for a name under which the paragraph will be saved. From the TCL prompt use the .S name n m command to save a contiguous set of commands from the command history stack. Use...
by ray.wurlod
Tue Jan 24, 2006 2:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS repository
Replies: 8
Views: 4851

That set of tables is NOT the set of tables you would find in the Repository. It is the set of tables that support the DataStage Engine, found in the Engine account (not in any project, though a small number of them are also visible from projects). The Repository has four sets of tables (hashed file...
by ray.wurlod
Tue Jan 24, 2006 2:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds patch for win xp needed
Replies: 1
Views: 992

If you can't download it, get your support provider to get a copy for you.

This forum is not intended to be a substitute for "official" support functions.

Why can't you download it?
by ray.wurlod
Tue Jan 24, 2006 2:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 7584

A "paragraph" is the "UniVerse" (DataStage) equivalent of a shell script. It must be executed within that environment (hence from the Administrator client).
by ray.wurlod
Tue Jan 24, 2006 12:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: no of process ids
Replies: 28
Views: 7584

Yes, stdout got diverted away from the client connection. I usually only use this command in a telnet session. You could build them into a "paragraph" in a telnet session, then execute tha paragraph from the Administrator client.
by ray.wurlod
Tue Jan 24, 2006 12:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS repository
Replies: 8
Views: 4851

It's non-first-normal-form, and not in the public domain. The nearest you can get is by opening doc_tool.mdb using Microsoft Access and getting it to analyze the relationships. But this is not the same as the UniVerse Repository - what doc_tool.mdb takes 29 tables to do the UniVerse Repository does ...
by ray.wurlod
Tue Jan 24, 2006 12:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error : "At Row 2000, DSLink Run Stopped"
Replies: 4
Views: 1346

Check in Director client, Options from Tools menu.
by ray.wurlod
Mon Jan 23, 2006 10:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error : "At Row 2000, DSLink Run Stopped"
Replies: 4
Views: 1346

Usually that kind of message indicates that the job has been run with a maximum number of rows set on the Limits tab in Director or with a -limit option on the dsjob command. Is either of these the case here? Another possibility is that someone issued a stop request, that happened to stop the job at...
by ray.wurlod
Mon Jan 23, 2006 10:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: row splitter , row merger, pivot stages
Replies: 7
Views: 2517

Yes.

Depending on your target, row splitter alone may suffice. The other two are irrelevant to your present requirement. A link collector may still be useful.
by ray.wurlod
Mon Jan 23, 2006 10:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OraCI
Replies: 17
Views: 4325

No. DataStage reports what DataStage did; that is, the number of rows it actually sent to Oracle. Your design is not capturing any failures so there is no way within DataStage for you to know how many records were successfully updated. If you are capturing failures (through a Reject link in a Transf...