Search found 53125 matches
- Wed Mar 01, 2006 8:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashed file optimisation and removing fields
- Replies: 5
- Views: 1177
Fairly certain. The point about pre-loading the hashed file to memory is that it pre-loads the page (group) structures, so that the hashing algorithm does not change - it still computes the address of the group in the hashed file, only it's now a memory address rather than a disk address. This is th...
- Wed Mar 01, 2006 8:12 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Unconditional Trigger in the sequence jobs
- Replies: 3
- Views: 2446
- Wed Mar 01, 2006 8:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to call the PX routine in job control of DS PX job
- Replies: 9
- Views: 3088
Parallel routines do not undergo the same "catalog" mechanism that server job routines do, hence DEFFUN declarations are inappropriate. Parallel routines are not readily called from job control code, since parallel routines are written in a different language (C++) from job control code (DataStage B...
- Wed Mar 01, 2006 6:44 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pass yesterday's date as parameter
- Replies: 9
- Views: 2488
Code: Select all
dsjob -server <host> -user <userID> -password <passwd> -run -jobstatus -param name=value <projectname> <job>You can have as many -param name=value options as needed.
- Wed Mar 01, 2006 6:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hashed file optimisation and removing fields
- Replies: 5
- Views: 1177
- Wed Mar 01, 2006 6:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: REG: Hash File Creation Error
- Replies: 9
- Views: 1787
- Wed Mar 01, 2006 6:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Pass yesterday's date as parameter
- Replies: 9
- Views: 2488
- Tue Feb 28, 2006 10:04 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: ETL errors while running batch schedule
- Replies: 13
- Views: 8681
- Tue Feb 28, 2006 4:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dividing '-20' by '-10' gives me 2, as i needed '-2'
- Replies: 7
- Views: 1015
Code: Select all
If Divisor = 0 Then 0 Else Abs(Dividend/Divisor) * ((If Dividend > 0 And Divisor > 0) Then 1 Else -1)- Tue Feb 28, 2006 4:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Degree of parallelism for Oracle Entreprise
- Replies: 5
- Views: 1711
- Tue Feb 28, 2006 4:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HFC.exe -> need it but don't have the Datastage CD
- Replies: 20
- Views: 5916
- Tue Feb 28, 2006 4:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Like Operator in Transform
- Replies: 4
- Views: 1153
- Tue Feb 28, 2006 4:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error when writing records to hash file
- Replies: 13
- Views: 3155
Hi ray, Thanks for your reply, can I resize dynamic 30 file to 64 bit and I read in one of the post that there is HFC.exe in client version of datastage. How can I use the HFC to see the type, modulus and seperation (I dont have HFC.exe with me) is there any other way than HFC and I have three key ...
- Tue Feb 28, 2006 4:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Dividing '-20' by '-10' gives me 2, as i needed '-2'
- Replies: 7
- Views: 1015
Code: Select all
If Divisor = 0 Then 0 Else Abs(Dividend/Divisor)- Tue Feb 28, 2006 4:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HFC.exe -> need it but don't have the Datastage CD
- Replies: 20
- Views: 5916
A couple of corrections. HFC does not actually create the hashed file; it generates a command that allows you to create the hashed file either from DataStage environment (a CREATE.FILE command) or from the operating system environment (a mkdbfile command). It does not calculate the average record si...