Search found 53125 matches

by ray.wurlod
Wed May 26, 2004 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSR.ADMIN: Failed to write to project file.
Replies: 10
Views: 7209

That's a workaround rather than a fix. What about your successor? Do spend some time working out why the Administrator client (that is, the user ID used from the Administrator client) could not update the DSParams file.
Is this user a member of the Administrators group on the server machine?
by ray.wurlod
Wed May 26, 2004 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reject records in using seq. files
Replies: 2
Views: 628

Use a constraint expression on each output link.

For good rows, col1 <> 0 And col2 <> 0.
For the rejects link, col1 = 0 Or col2 = 0.
by ray.wurlod
Wed May 26, 2004 12:05 am
Forum:
Topic: MetaStage and Business Metadata
Replies: 14
Views: 7665

The best place (imho) to record business metadata is in the long description fields within DataStage jobs, routines, data elements and transforms (and, possibly, table definitions, for business metadata such as ownership, responsibility for authorising changes to table design, and so on). The long d...
by ray.wurlod
Tue May 25, 2004 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS will not restart solaris
Replies: 3
Views: 1320

Yep, that'll prevent a restart, because the defunct processes remain attached to the shared memory segments.
As superuser, use the following commands to clean up defunct processes and the licensing associated with them:

Code: Select all

$DSHOME/bin/dsdlockd -p
$DSHOME/bin/dslictool clean_lic -a
by ray.wurlod
Tue May 25, 2004 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mulit source files
Replies: 5
Views: 1557

Good catch. It can't be done in a single server job using Merge stage.
by ray.wurlod
Tue May 25, 2004 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Copying Content of a Newest file
Replies: 4
Views: 1006

Just make it a single command, using backquotes to capture the output of the pipeline. cat `ls -1t | head -1` > load.txt Why cat? Surely a cp command would be more efficient. cp `ls -1t | head -1` load.txt Maybe you want to remove load.txt first. No problem. rm -f load.txt ; cp `ls -1t | head -1` lo...
by ray.wurlod
Tue May 25, 2004 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in:
Replies: 7
Views: 3343

Any time you get "could not load xxxxx.so" (or xxxxx.sl), check that your LOAD_LIBRARY_PATH (or LIB_PATH or SHLIB_PATH, the name depends on the variant of UNIX) environment variable includes all relevant library directories, and make sure that the way it's set in dsenv also picks these up.
by ray.wurlod
Tue May 25, 2004 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameter problem
Replies: 17
Views: 3872

Did the DB2 DBA change the password?
by ray.wurlod
Tue May 25, 2004 4:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mulit source files
Replies: 5
Views: 1557

At worst case, use the Merge stage... twice Alas this can't be done in server jobs. The Merge stage reads two text files; it does not have the ability to be driven by two streams. That's just the way it's written. The hashed file approach is likely to be the best if the keys are unique. There are o...
by ray.wurlod
Tue May 25, 2004 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Stage Delimiter as Parameter?
Replies: 5
Views: 1967

Alas, all you can do is make copies of the job design. As Craig said, the sequential file delimiter character is not able to be a job parameter. Indeed, none of the properties on the Format tab can be job parameters.
by ray.wurlod
Tue May 25, 2004 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS will not restart solaris
Replies: 3
Views: 1320

What's the exit status from the start command?

Code: Select all

uv -admin -start
echo $?

Have you made any changes to the uvconfig file?
What happens if you try to start using

Code: Select all

/etc/rc2.d/S99ds.rc start
?
by ray.wurlod
Tue May 25, 2004 4:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding Multiple Constraints to the target transformer
Replies: 3
Views: 3649

How about using one more Boolean operator: ( (NOT(IsNull(DSLink3.NEWCOLA)) OR NOT(IsNull(DSLink3.OLDCOLA)) OR NOT(IsNull(DSLink3.NEWCOLB)) OR NOT(IsNull(DSLink3.OLDCOLB))) ) AND ( DSLink3.NEWCOLA<>DSLink3.OLDCOLA)...
by ray.wurlod
Tue May 25, 2004 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSR.ADMIN: Failed to write to project file.
Replies: 10
Views: 7209

Check the permissions on the DSParams file in your project directory on the DataStage server machine. Whether job administration in Director is enabled is recorded in the DSParams file. It appears that the user ID you used to connect the Administrator client lacks write permission to the DSParams fi...
by ray.wurlod
Tue May 25, 2004 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating Single Row in Transformer Stage
Replies: 3
Views: 1095

Yes, that's the one. Thanks for that!
by ray.wurlod
Tue May 25, 2004 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Processing Nodes
Replies: 4
Views: 2712

THere are no technical limits; only sensible ones. Don't overload any machine - for example you would not configure 24 nodes on a four CPU machine in general! No scheduling by you is necessary; the PX engine looks after allocation of notes based on the configuration file that you specify. Note that ...