Search found 53125 matches

by ray.wurlod
Thu Apr 07, 2005 4:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer look and feel
Replies: 5
Views: 2072

The links go in the direction you create them. The arrowhead is on the stage to which they are drawn (not from which they are drawn). It's perfectly OK that the arrow runs right to left, but the link must be drawn in that way. If you're concerned about rectilinearity in your job design, you can resi...
by ray.wurlod
Thu Apr 07, 2005 4:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: named pipes
Replies: 5
Views: 1463

Depending on your UNIX, a named pipe is created with a command such as mknod or mkfifo - check with your UNIX man pages.

(There's a lot of peripheral stuff you need to know to be a DataStage consultant, isn't there?!!)
by ray.wurlod
Thu Apr 07, 2005 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check for Blank and NULL
Replies: 4
Views: 1176

That's because "" and @NULL are different. "" is a known value. It is a character string containing precisely zero characters, and can be compared with other character strings, participate in concatenation and substring (!), and so on. It's called "the empty string" or "zero-length string". NULL is ...
by ray.wurlod
Thu Apr 07, 2005 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Scheduler and Daylight Savings Time
Replies: 3
Views: 4186

DataStage does not have its own scheduler; all the Director gives you is an interface to the operating system scheduler - cron or at on UNIX (depending whether it's a "one off" or repeating schedule), or at on Windows. Consult with your UNIX administrator or manual to figure out how these interact w...
by ray.wurlod
Thu Apr 07, 2005 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How does filter command in sequential file stage work?
Replies: 12
Views: 11712

There should be no reason not to use sort as a filter in a Sequential File stage's Input link. You may need to specify stdin as the source file (as "-") for the command, and any key specification ("-k") must correctly match the metadata from your job design.
by ray.wurlod
Thu Apr 07, 2005 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Unknown Stage Type" error message
Replies: 6
Views: 1931

Can you establish which stage type it is? That is, can you open a design and see a generic icon rather than the expected icon? If so, you can probably re-install just that plug-in stage using the DataStage Package Installer.
by ray.wurlod
Thu Apr 07, 2005 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage 7.5.1 client running on NT
Replies: 8
Views: 2465

7.1.x will install on Windows NT 4 (and works properly). 7.5 is the first that won't.
by ray.wurlod
Thu Apr 07, 2005 4:06 pm
Forum: Site/Forum
Topic: Forum time GMT +1
Replies: 10
Views: 5926

Then - clearly - you are presently somewhere east of Ankara! :lol:
by ray.wurlod
Wed Apr 06, 2005 10:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage 7.5.1 client running on NT
Replies: 8
Views: 2465

I can tell you for a fact that it does not install on Windows NT 4.0 sp6a.
:cry:
by ray.wurlod
Wed Apr 06, 2005 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Conversion
Replies: 2
Views: 666

How about you tell us how you're trying to do it, then we might be able to spot a problem? It's really difficult to tell you if you're making a mistake if we can't see what you're doing! And you might have better luck if you posted on the Parallel forum rather than here on the Server forum. Expect t...
by ray.wurlod
Wed Apr 06, 2005 10:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Stage and substrings
Replies: 3
Views: 1771

UniVerse SQL uses SUBSTRING as defined in ANSI SQL and in ODBC 2.0

Code: Select all

SELECT SUBSTRING(FULL.TEXT FROM 1 FOR 254) FROM ...
by ray.wurlod
Wed Apr 06, 2005 5:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: after job routine
Replies: 4
Views: 740

Please avoid multiple posts. It only clutters the database and makes searching less efficient.
by ray.wurlod
Wed Apr 06, 2005 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universal variable
Replies: 2
Views: 783

Easiest and most efficient is to "store" it in a column being propagated in the data stream being processed. This remains available as far downstream as you could wish, until you discard it.
by ray.wurlod
Wed Apr 06, 2005 5:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing SQL statements in DataStage
Replies: 8
Views: 3397

What Scott said. This is basic SQL - not really a DataStage issue at all.
by ray.wurlod
Wed Apr 06, 2005 5:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing job parameter to after job routine
Replies: 6
Views: 1325

Check the value of Output and SystemReturnCode following the first call to DSExecute to determine why the target file is not being populated. $DEFINE TESTING Call DSExecute("UNIX","sort -u filename > filename1", Output, SystemReturnCode) $IFDEF TESTING Message = "Val...