Search found 53125 matches

by ray.wurlod
Wed Oct 26, 2005 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: max length of project name in AIX
Replies: 8
Views: 1835

It's actually 18 characters. This is so that the SQL Catalog for DataStage can be 100% compliant with a whole heap of standards, including SQL CAE Access Group and ODBC standards, that limit a schema name to 18 characters. The operating system is irrelevant. This is a limit within the SQL engine.
by ray.wurlod
Wed Oct 26, 2005 5:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to update a sequential file
Replies: 6
Views: 1766

You can use the ODBC driver for text files. Just don't complain about the performance, which will be horrible.
by ray.wurlod
Wed Oct 26, 2005 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uvconfig 64 bit files
Replies: 5
Views: 2078

Not possible using the Options button in the Hashed File stage. You need either to create them using the Hashed file stage then RESIZE to 64-bit, or to create them manually as 64-bit. For the latter you can copy the command from the Hashed File Calculator. <losing battle> It's HASHED file, not hash ...
by ray.wurlod
Wed Oct 26, 2005 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character Translator for data files
Replies: 3
Views: 1215

Just after posting that I had another thought. DataStage does do one form of translation - localization. There are no text messages in DataStage code; everything has a code. That code is decoded using a "resource" file, for example DS_RESENU for English (US), DS_RESJPN for Japanese. These are hashed...
by ray.wurlod
Wed Oct 26, 2005 5:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Character Translator for data files
Replies: 3
Views: 1215

Be very careful. DataStage does NOT do translations. DataStage performs character mapping (it's not the same thing). The character set in which external data are encoded - for example GB2312, Shift-JIS, PC936 - is mapped to DataStage's UTF encoding of Unicode on the way in to DataStage, and back to ...
by ray.wurlod
Wed Oct 26, 2005 4:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: triggering Datastage JOb when file transmission occured
Replies: 4
Views: 2202

WaitForFile is one of the activities you can specify in a job sequence. You can wait for the file to appear, but also set a timeout so that, if the file has not appeared within that time, a different course of action may be triggered - maybe sending an email to someone who's paid to worry about thes...
by ray.wurlod
Wed Oct 26, 2005 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Column lengths
Replies: 4
Views: 1985

Row buffering simply means that N rows at a time are passed between active stages / processes, rather than 1 row at a time. VarChars are stored (in server edition) as Arnd indicated, with a length indicator in the DATUM for each. From this, it follows that the Len() function is actually the most eff...
by ray.wurlod
Wed Oct 26, 2005 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup not returning any values
Replies: 4
Views: 1145

As Craig noted, VarChar values must be trimmed both when populating the hashed file and when performing the lookup. It's the only way you can be certain that you're "comparing apples with apples". This is the cause of the problem you report 95% of the time. The other 5% are that none of the values i...
by ray.wurlod
Wed Oct 26, 2005 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export Table Definition from command line ?
Replies: 2
Views: 867

None of which I'm aware. Searching the forum will uncover a routine that can export a Table Definition in a number of formats.
by ray.wurlod
Wed Oct 26, 2005 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: filter command question ?
Replies: 18
Views: 4295

Try just putting the name of your script (that is, don't use ksh) into the Filter Command field, possibly with its three command line arguments. Each row will be passed through that script before ending up in the target file. That is, your script must be written to process its own stdin, on which ro...
by ray.wurlod
Wed Oct 26, 2005 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dslictool usage?
Replies: 5
Views: 1520

Try it with the report_lic option explicitly specified.
by ray.wurlod
Wed Oct 26, 2005 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Administrator other than dsadm
Replies: 1
Views: 767

Welcome aboard. :D

The answer to your question is NO.

Superuser (root) is always an Administrator for DataStage.
by ray.wurlod
Wed Oct 26, 2005 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File update
Replies: 5
Views: 1487

If you don't mind the warning messages, load it with a UV stage (which uses SQL) with the update rule "insert new rows only".
by ray.wurlod
Wed Oct 26, 2005 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reg clear status file
Replies: 2
Views: 863

They are unrelated. Clear Status File destroys all status information relating to the job. It should only be used as a very last resort - that's why you get two "are you sure?" messages. Cleanup Resources is about processes and Repository database locks relating to executing DataStage jobs and conne...
by ray.wurlod
Wed Oct 26, 2005 4:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job control - sequencer giving error
Replies: 2
Views: 1098

You will find, by inspecting JOBCONTROL.H, that -8 means "not in stage"; typically, that DSGetStageInfo() or DSGetLinkInfo() was called using DSJ.ME for the stage name but you were not executing in a stage at the time. In your case you were executing in a Routine (in, or invoking, one of UtilityMess...