Search found 53125 matches

by ray.wurlod
Fri Dec 08, 2006 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding jobparameters
Replies: 6
Views: 1280

That's a good approach, provided that no-one else can read it to see values for passwords.
by ray.wurlod
Fri Dec 08, 2006 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in setting a job parameter
Replies: 10
Views: 3861

The original -1 (return status from DSSetParam) is DSJE.BADHANDLE. You had not successfully called DSAttachJob with JobHandle as the handle variable.
by ray.wurlod
Fri Dec 08, 2006 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: jobs not showing in Repository
Replies: 6
Views: 1548

DS_SUPPORT wrote:try DS.REINDEX ALL in the command prompt. But be sure no client is connected to the server , when you are executing this command, or try DS.TOOLS 2.

As far as I am aware there is only one version of DS.TOOLS.
by ray.wurlod
Fri Dec 08, 2006 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage 7.5.x with Sybase IQ 12.6 on Linux
Replies: 6
Views: 2348

Can we presume that you work at the same site as Precious?
by ray.wurlod
Fri Dec 08, 2006 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: My Job behaving very peculiar
Replies: 5
Views: 1531

Rows/sec, as I have often asseverated, is meaningless. 0 is reported if the run finishes in less than 0.5 sec, because the time is rounded to whole seconds, and divide by zero errors are avoided. Heck, if you want good statistics, all you have to do is wind back the system clock while the job is run...
by ray.wurlod
Fri Dec 08, 2006 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extra characters at the end of a datetime or interval
Replies: 7
Views: 4379

It's not DataStage that's appending the "000" - it's your SELECT statement. Try it in a different client.
by ray.wurlod
Fri Dec 08, 2006 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with Hash File
Replies: 7
Views: 1976

In the Advanced DataStage class from IBM there is an example that does exactly that; captures the first version into one hashed file and all the duplicates into a text file. Basically, you update the hashed file if the lookup fails, and send the row to the text file if the lookup succeeds. Make sure...
by ray.wurlod
Fri Dec 08, 2006 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error during installation of DS
Replies: 1
Views: 1176

Don't specify ace or dcd as the instance tag (in the -itag option). "ace" is reserved for UniVerse RDBMS. "ade" is the default for DataStage. If you want another, the pattern suggests that "aee" might be a good choice.

Incorrectly posted here. See thread on parallel forum.
by ray.wurlod
Fri Dec 08, 2006 3:34 pm
Forum: General
Topic: Automatic Job Generator - does one exist??
Replies: 39
Views: 18825

Are you emailing the code or the table definition here? If the latter, I feel we might be straying into billable territory. IMHO, of course. It's Kim's call.
by ray.wurlod
Fri Dec 08, 2006 3:33 pm
Forum: General
Topic: Error while running BW job
Replies: 2
Views: 2101

What stage type are you using to load BW? The message suggests that one of its properties (with the same or similar name) has not had a value filled in.
by ray.wurlod
Thu Dec 07, 2006 7:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to abort job based on constraint
Replies: 20
Views: 7479

It's impossible not to pass a parameter. If you don't give it an explicit value it will take its default value. If its default value is illegal (for example "" for a date parameter), the job won't even start.
by ray.wurlod
Thu Dec 07, 2006 7:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass column name instead of value?
Replies: 11
Views: 3581

Not possible. You could create some logic to read it from the schema file, if you are using a schema file to describe the structure of data in the source text file. But there is no mechanism for passing metadata when DataStage expects that you are passing data. After all, the column name is a proper...
by ray.wurlod
Thu Dec 07, 2006 7:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping through the files in directory
Replies: 5
Views: 3764

Use an Execute Command activity to generate a delimited list of file names. Use its output as the delimited list in the Start Loop activity, and specify there that it's a "list of things" loop and the appropriate delimiter. Downstream of that, the index variable ($Control, or something like that) wi...
by ray.wurlod
Thu Dec 07, 2006 7:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: regaring universe
Replies: 14
Views: 4676

One of the reasons that metadata are not published for repository tables like DS_JOBOBJECTS is that the record structure is not the same for all records. For example the reason that you can't find 018 in the ROOT record may be that field 18 is empty and you've chosen to use LIST.ITEM to display the ...
by ray.wurlod
Thu Dec 07, 2006 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The runLocally() of the operator fail
Replies: 14
Views: 17330

Doo doo doo doo doo doo doo doo (Twilight Zone theme)...

Planning to experiment with which of the environment variables switches the problem off? That may help to narrow down the cause, curiously.