What are the operating system permissions on D_RT_CONFIG, RT_CONFIG1, RT_CONFIG1/DATA.30 and RT_CONFIG1/OVER.30 ?
What group "owns" RT_CONFIG1? Are you in that group? If not, a quick fix might be the chgrp -R command.
Search found 53125 matches
- Thu Jan 20, 2005 3:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error writing to RT_CONFIGxx
- Replies: 3
- Views: 1180
- Thu Jan 20, 2005 1:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error writing to RT_CONFIGxx
- Replies: 3
- Views: 1180
Could be disk full, could be permissions, could be a corrupted RT_CONFIG1 hashed file, could be lots of things. The most common cause is a team of developers with a default UNIX umask of 022, which means that something created by one can not be written to be others in the same group. All DataStage d...
- Thu Jan 20, 2005 1:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Attempting to Cleanup after ABORT raised
- Replies: 6
- Views: 2577
This message can be generated by many things, some of them outside of DataStage's control (such as disk full). Usually there are other warning messages in the log; if not, reset the job and look for a message with "From previous run..." as its first line - if present it will contain additional diagn...
- Thu Jan 20, 2005 1:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Informatica To DataStage
- Replies: 11
- Views: 5034
- Thu Jan 20, 2005 1:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Enabling Optional Feature in the ODBC Specification, / Bug?
- Replies: 4
- Views: 1057
Decimal(10,0) has to be BigInt, because the largest possible four-byte signed integer (twos complement) is 2147483647 (ten digits): any ten digit number larger than this could not safely be construed as an integer so has to be something larger. Ultimately this is the root cause of your problem. You ...
- Wed Jan 19, 2005 3:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Exception Handler Email Notification - Job Status
- Replies: 6
- Views: 1793
- Wed Jan 19, 2005 3:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Cannot connect to our project
- Replies: 7
- Views: 2623
Since you have a file corruption error during LOGTO, chances are that an important hashed file (possibly VOC) has become corrupted. Get to an operating system prompt and use fixtool to scan the VOC file in the project directory. fixtool -filepath ./VOC If this reports fixable errors, run it again wi...
- Wed Jan 19, 2005 3:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Parallel job reports failure
- Replies: 8
- Views: 4314
- Wed Jan 19, 2005 3:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Limiting Job Parallelism
- Replies: 16
- Views: 5173
- Wed Jan 19, 2005 3:06 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file
- Replies: 9
- Views: 2116
Search the Forum for SETFILE, which is a DataStage command for creating a pointer. Or use the tool that Chuck has provided.
Once you have the pointer, you can use standard queries, such as or
Once you have the pointer, you can use standard queries, such as
Code: Select all
SELECT COUNT(*) from hashedfilename;Code: Select all
COUNT hashedfilename- Wed Jan 19, 2005 3:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Level Security
- Replies: 4
- Views: 1699
Is it possible for me to provide set security at job level. Say I have 10 jobs in my project, I want 2 of them to be read only for other users. Or can I move them to a separate category and set security for that category. I believe there is read only if versioning is followed. Assume all jobs are i...
- Wed Jan 19, 2005 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to get job name for list of hash file
- Replies: 22
- Views: 6642
Just include the SET.TERM.TYPE or SETPTR command at the top of the getname file as you did when you were producing this report by hand. It becomes part of the input stream to uvsh . You should also consider switching from uvsh to dssh . Currently they are the same, but it's possible that uvsh might ...
- Wed Jan 19, 2005 2:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between Truncate and Delete
- Replies: 6
- Views: 2644
- Wed Jan 19, 2005 2:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ORA-26028: index initially in unusable state
- Replies: 15
- Views: 11438
- Wed Jan 19, 2005 2:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: server job
- Replies: 3
- Views: 818
You want to log the value returned as the text of an informational message? Do you want to do this for every row returned from the stored procedure? If so, you will need to call the DSLogInfo() subroutine. There is no mechanism for calling a subroutine from within a job stream, so you will need to c...