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?
Search found 53125 matches
- 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
- 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
- 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...
- 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:
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- Tue May 25, 2004 4:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mulit source files
- Replies: 5
- Views: 1557
- 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...
- 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
- Tue May 25, 2004 4:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: parameter problem
- Replies: 17
- Views: 3872
- 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...
- 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
- 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?
Have you made any changes to the uvconfig file?
What happens if you try to start using?
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- 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
- 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...
- 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
- 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 ...