Search found 53125 matches

by ray.wurlod
Thu Apr 27, 2006 1:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem With Job Sequence
Replies: 8
Views: 4629

Not any more there isn't. We decided that the project is corrupted, deleted the project and recreated it from production. Best practice is to build and test incrementally. There's no point adding a second activity if the first doesn't work. Use a dummy activity (maybe a routine) to test triggers.
by ray.wurlod
Thu Apr 27, 2006 1:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype of the Vector in the output of Combine stage
Replies: 3
Views: 1480

Fix the first problem (Input "ACCOUNT" is not a value field.) first.

The numbers showing in your Data Set are indexes to vector elements. Each element is of data type string[max=37] (which is how osh refers to VarChar(37)). Each vector element is probably empty or null, because of the first error.
by ray.wurlod
Thu Apr 27, 2006 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Enterprise Stage
Replies: 6
Views: 1923

From memory there's an environment variable called something like APT_PAD_CHARACTER (maybe APT_STRING_PAD_CHARACTER). You can set this up as a job parameter so that you can override it just in one job. As with Arnd, I am not using DataStage this week, so that answer's from memory.
by ray.wurlod
Thu Apr 27, 2006 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOW TO CAPTURE DATABASE CONNECTION ERROR
Replies: 8
Views: 1801

as m new to this tool can you tell me how to caputre the error return by querry or use link var, or routine that inspects the log....... Is anyway it is possible to include / import log generated by DS Director to a text file so that I can attach that in mail.Though I am including job status in mai...
by ray.wurlod
Thu Apr 27, 2006 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 API Reading error
Replies: 9
Views: 2703

Have your DBA monitor what locks are taken by DataStage processes and by MQT processes. It may be that MQT is innocent in this. Does your job design, for example, select from and update the same table? That can cause a deadlock/timeout situation all by itself.
by ray.wurlod
Thu Apr 27, 2006 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log files for datastage
Replies: 1
Views: 902

The table is called DS_AUDIT. It is not explicitly exposed in client tools, but can be queried using the Administrator client Command window. To get a list of column names in this table either search the forum or execute the following command: LIST.DICT DS_AUDIT (anything with type "D" or type "I" i...
by ray.wurlod
Thu Apr 27, 2006 12:48 am
Forum: IBM QualityStage
Topic: Probelm While Runing the QS Job
Replies: 17
Views: 8921

The problem is reported as an inability to open a file called \Projects\FP1\Data\RESIGLOB (I must assume here that \Projects is your Master Project Directory). Is this disk full? Do you have appropriate permissions to the parent folder (\Projects\FP1\Data)? Does the RESIGLOB file need to have been e...
by ray.wurlod
Wed Apr 26, 2006 9:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: inconsistent output from dsjob command
Replies: 1
Views: 1082

That's just how it works. There is only one log table for the job, whether it is multi-instance or not. It is up to you to filter them once you've obtained them. Director includes appropriate filtering, but dsjob does not. Submit an enhancement request if you think it's a useful feature.
by ray.wurlod
Wed Apr 26, 2006 8:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Char incrementing
Replies: 8
Views: 1796

It will always yield a total of 10 characters. That's what the 10 in "10'0'L" means. It's all in the manual (DataStage BASIC) and in the on-line help for FMT.
by ray.wurlod
Wed Apr 26, 2006 8:56 pm
Forum: IBM QualityStage
Topic: QualityStage Match - 2 Files, multiple records in output
Replies: 3
Views: 2239

Can you tell us how your match criteria were defined? Were your blocking fields tight enough? Indeed, did you use an Investigation job to determine the domains and cardinality of candidate blocking fields? And, then, there are the match fields? Were you cautious with these, or try to match on all po...
by ray.wurlod
Wed Apr 26, 2006 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob command not working
Replies: 9
Views: 3044

Could be someone has tightened the permissions on /.dshome too much, could be that an itag installation has been done, so you need the DSHOME environment variable instead. And, as Ken suggests, you may not be on the actual server.

"Unemployment" is not working.
by ray.wurlod
Wed Apr 26, 2006 5:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Osh: What is it good for?
Replies: 9
Views: 3626

I can only suggest that, theoretically, there's no reason why not. Examine the other files in RT_SCnnn to learn about the interface between the operating system and osh.

Not so sure about how you'd include custom routines - need to read some more in the Orchestrate Operators manual for that!
by ray.wurlod
Wed Apr 26, 2006 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issues regarding Notification Activity
Replies: 7
Views: 2195

There is an example routine that shows how DSSendMail should be used. It is in the Routines branch, possibly under Examples (I don't have access to DataStage at the moment). Examine this code. DSSendMail() requires, as its single argument, a delimited string containing all of the values that will re...
by ray.wurlod
Wed Apr 26, 2006 5:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parameters on Execute Command Activity in a Sequence
Replies: 8
Views: 3903

Are the done files' names parameterized? If so you would need to extract the parameter reference (see below) then determine the parameter value that was used by inspection of the "job started" event in the job log (DSGetLog... functions). Otherwise you should be able to extract the command used and ...
by ray.wurlod
Wed Apr 26, 2006 5:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import Schema
Replies: 3
Views: 839

No. Manager is one-way traffic. It can import table definitions, but can not export them (other than in a DataStage export format).