Search found 53125 matches

by ray.wurlod
Thu Sep 06, 2007 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Output of a file as a parameter
Replies: 7
Views: 1357

cat filename | tr -d \n

The tr command strips newline characters. Otherwise you could strip them when using the activity variable.
Activity.$Output<1>
by ray.wurlod
Thu Sep 06, 2007 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: related to log table in TPUMP Stage
Replies: 3
Views: 1212

The Teradata TPUMP utility expects the log table to be empty. It's not a DataStage requirement.
by ray.wurlod
Thu Sep 06, 2007 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting Job Information
Replies: 4
Views: 1143

Download EtlStats from Kim Duke's web site.
by ray.wurlod
Thu Sep 06, 2007 3:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit level changes in server
Replies: 2
Views: 766

At design time it depends on the stage type you're using, but look for a property called something like "rows per transaction".
by ray.wurlod
Thu Sep 06, 2007 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid character value for cast specification
Replies: 8
Views: 3112

You first need an Iconv() function - two actually, to get the incoming data into DataStage internal format. Only then can you successfully use Oconv() to change to the desired external format. Oconv(Iconv(Field(InLink.TheString," ",1,1),"DYMD"),"D-YMD[4,2...
by ray.wurlod
Thu Sep 06, 2007 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: login to uv shell
Replies: 4
Views: 1717

The advice to telnet stems from the fact that, at most sites, this is the only way you can login to UNIX. If you have directly-connected asynchronous terminal lines to your UNIX machine you certainly may use these without the need to use telnet. Either way you are talking to your UNIX login shell, p...
by ray.wurlod
Thu Sep 06, 2007 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Current Timestamp function in DataStage Server 8
Replies: 2
Views: 7424

It's the same as in all earlier versions.

Code: Select all

Oconv(Date(), "D-YMD[4,2,2]") : " " : Oconv(Time(), "MTS:") : ".000"
by ray.wurlod
Thu Sep 06, 2007 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: KeyMgtGetNextValue doubt
Replies: 3
Views: 907

Not quite.

The next value is stored in SDKSequences (note different casing).

Although the routine checks the VOC file, it does not store anything there.
by ray.wurlod
Thu Sep 06, 2007 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file Loading 5Million Rows of Size 544 MB.
Replies: 11
Views: 2522

There's only one "trick" with metadata - get it right.
by ray.wurlod
Thu Sep 06, 2007 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access violation
Replies: 3
Views: 1562

Access violation is an attempt to refer to a memory addrss either that does not exist or that your process has no right to access. There are myriad possible reasons, too many to essay to describe here. Search, both here and in web search engines, to get some idea of possible causes. And contact your...
by ray.wurlod
Thu Sep 06, 2007 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing the behaviour of Stopped Jobs & After-job routi
Replies: 5
Views: 3701

It is not possible to prevent the stop request from being cascaded. However status information is recorded in the Repository, and can be retrieved even after the job has finished - irrespective of its status. Therefore your job that collects the statistics could be rewritten to run independently (pr...
by ray.wurlod
Thu Sep 06, 2007 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure
Replies: 5
Views: 1459

A stored procedure invoked from a Dynamic RDBMS stage must process a record set.

The only way (without "leaving" DataStage) to call a stored procedure that does not process a record set is to use the Stored Procedure stage.
by ray.wurlod
Thu Sep 06, 2007 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to lookup a field with conditional field from input
Replies: 6
Views: 2218

With a non-exact-match lookup you are destined to receive more than one row returned. Each will satisfy your match criteria. I can only answer your question with a question - which of them do you want to keep?
by ray.wurlod
Thu Sep 06, 2007 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in routine- not in VOC
Replies: 13
Views: 5416

The first argument of DSExecute must specify a UNIX shell, not a UniVerse shell.

You are getting "not in VOC" because you are trying to execute in the DataStage (UniVerse) environment, not in the UNIX environment.
by ray.wurlod
Thu Sep 06, 2007 3:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Annotation Icons
Replies: 3
Views: 1052

The tool labeled "A" in the toolbar is the same. Think of it as an "on-off" switch for visibility of Annotations.