Read the error message.
There is a mandatory property called FKEYCOLS for which you have not supplied a value.
Search found 53125 matches
- Thu Apr 13, 2006 4:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with Idocload stage
- Replies: 3
- Views: 1246
- Thu Apr 13, 2006 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS_JOBOBJECTS & This item has no design time information
- Replies: 7
- Views: 3257
You MUST solve "cannot open DS_JOBOBJECTS" before an import can succeed. There is a current thread open on that problem.
- Thu Apr 13, 2006 4:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: architecture of 7.5
- Replies: 15
- Views: 4065
Re: architecture of 7.5
Can anybody tell the architecture of server 7.5 and 7.0 what? Talking to architecture falls into the same category as talking to trees, but is less satisfying.chandra wrote:can any body tell the architecture of server 7.5 and 7.0
- Thu Apr 13, 2006 4:31 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: LOG VIEW FAILS
- Replies: 4
- Views: 964
- Thu Apr 13, 2006 4:28 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: architecture differe between 7.0 and 7.5 server
- Replies: 2
- Views: 824
- Thu Apr 13, 2006 4:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: CHECKPOINT concept
- Replies: 7
- Views: 1616
- Thu Apr 13, 2006 4:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what is PUSH and PULL
- Replies: 5
- Views: 1528
These terms are mostly used when describing how data arrive from other sources (often mainframes). A PUSH means that a process on the other source initiates the transfer. DataStage will typically wait for a file to appear. A PULL means that DataStage initiates the transfer (perhaps via an FTP stage ...
- Thu Apr 13, 2006 4:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC Source- incorrect number of result columns.
- Replies: 13
- Views: 6785
- Thu Apr 13, 2006 4:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error while opening thejob, DS_JOBOBJECTS
- Replies: 16
- Views: 5723
Let's find out what the problem is. Open the Administrator client then open the Command window for the project. Execute the following commands one at a time, and post the results. Commands are case sensitive - use only upper case.
Code: Select all
COUNT DS_JOBOBJECTS
UVFIXFILE DS_JOBOBJECTS- Thu Apr 13, 2006 4:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date convertion
- Replies: 7
- Views: 1673
Markus, in case you are confused, the plethora of answers results from the fact that DataStage server edition does not have data type restrictions. So some of the answers use substring and concatenation techniques (OK if you can guarantee that your dates are always YYYYMMDD format), others use date ...
- Thu Apr 13, 2006 3:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Insert and Update
- Replies: 3
- Views: 887
You need separate Hashed File stages - one for lookups, one for writing - even though they refer to the same hashed file. Put an annotation on your design canvas to alert future developers to the fact that both stages refer to the same hashed file. HFStage1 HFStage2 | ^ | | V | ---> TransformerStage...
- Thu Apr 13, 2006 3:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Fuction
- Replies: 5
- Views: 1082
- Thu Apr 13, 2006 3:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Creating Header/Detail/Summary records in one output file
- Replies: 12
- Views: 4466
Apart from probably needing an extra job to process each detail file, to generate the value(s) for the summary, that's fairly close. A job sequence that contains a loop will help to construct the required files from the outputs of DS Job 3. Within the loop run DS Job 4 to calculate the summary for t...
- Thu Apr 13, 2006 3:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Moving Resized Hashed files
- Replies: 8
- Views: 2217
It's simply a matter of time shifting. By using MINIMUM.MODULUS when creating the hashed file you are pre-allocating the disk space required. If you use MINIMUM.MODULUS 1 (which is entirely legal) you incur the "hit" of extending the file while loading it, which means that your load will not be as e...
- Thu Apr 13, 2006 3:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash File Qtd Limits
- Replies: 10
- Views: 3770
The system-wide limit on the number of simultaneously open dynamic (Type 30) hashed files is set by the T30FILE configuration parameter. If this value is 200, then you will fail to open (a job that creates it probably tries to open it) the 201st. It is always a bad idea to perform lookups - of whate...