Search found 53125 matches
- Wed Sep 22, 2004 2:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Help me on this to solve it
- Replies: 6
- Views: 2549
I don't believe that != is a valid operator in server job expressions. The only valid operators in DataStage BASIC for "not equal to" are <> >< NE # You are not permitted to test against @NULL. You must use the IsNull function. Expressions do not support the CASE construct; in an expression you'll n...
- Wed Sep 22, 2004 2:13 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to get the distinct count
- Replies: 6
- Views: 2498
- Wed Sep 22, 2004 12:17 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: restartability in db2 enterprise stage
- Replies: 5
- Views: 2049
- Wed Sep 22, 2004 12:16 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to get the distinct count
- Replies: 6
- Views: 2498
- Tue Sep 21, 2004 8:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Modules on DataStage v 7.x
- Replies: 5
- Views: 1859
- Tue Sep 21, 2004 4:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Clear a Hashed File Outside of Datastage Job?
- Replies: 37
- Views: 15718
CLEAR.FILE will work via ExecTCL only if the hashed file was created in an account. If the hashed file was created in a directory you need the operating system variant (clear.file) with the pathname of the hashed file. $DSHOME/bin/clear.file pathname executed via ExecSH (for UNIX) or ExecDOS (for Wi...
- Tue Sep 21, 2004 4:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: On request jobs
- Replies: 10
- Views: 2112
- Tue Sep 21, 2004 4:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: update taking forever
- Replies: 12
- Views: 2431
- Tue Sep 21, 2004 4:09 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS_JOBS corrupted
- Replies: 8
- Views: 7874
- Tue Sep 21, 2004 4:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Count command
- Replies: 3
- Views: 1268
Re: Count command
Is it possible to COUNT hash file records created not in account but in a specified path?.Does not work for me even if I LOGTO uv. Create a DataStage job that processes all the keys from the hashed file and record the rows processed. The statistic can be found by interrogating the job itself (DSGet...
- Tue Sep 21, 2004 3:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Conditional Look up
- Replies: 8
- Views: 2692
Hashed file lookups with hashed file stages involve ONLY the "=" operator. End of story. The rvalue (reference key expression value) given is passed through the hashing algorithm for the hashed file, and the location for the record thus determined. The record is then either retrieved or reported as ...
- Tue Sep 21, 2004 3:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Composite keys in hashed files
- Replies: 7
- Views: 2520
When you're using a Hashed File stage there are no special considerations. The stage (with the underlying engine) looks after everything. All you have to do is to make sure you've identified ALL the key columns accurately. As will all hashed file metadata (whether single or multiple key), the Positi...
- Tue Sep 21, 2004 3:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple Instances Job problem
- Replies: 8
- Views: 2583
No. No "." character is allowed in the invocation ID. This character is reserved for all kinds of things in the object programming and in the SQL world. What you could do is use invocation IDs "LoadDataRun1", "LoadDataRun2", etc. Then your job names become InitialCheck.LoadDataRun1, InitialCheck.Loa...
- Tue Sep 21, 2004 1:48 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Multiple Instances Job problem
- Replies: 8
- Views: 2583
The "user status area" is a field in one of the records of the job's RT_CONFIGnnn hashed file. There is one RT_CONFIGnnn file for the job. As was pointed out, multi-instance is still one job; the most recent update of the user status area is the one you see. Create a hashed file (the overheads are n...
- Tue Sep 21, 2004 1:41 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Best Practices for Organizing Metadata in DataStage
- Replies: 3
- Views: 2346
Appoint a metadata steward with full responsibility for metadata. That person can choose whether or not to delegate, and should have the power to threaten and punish! Don't lose sight of the bigger picture; the start of a project is THE BEST time to implement tools such as MetaStage and Parameter Ma...