Search found 53125 matches
- Thu Nov 04, 2004 12:30 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Naming a Job
- Replies: 8
- Views: 1937
Job, link and stage names can have underscores in version 7.1r1 (Engine release 7.0.1.1r4). :D They must, however, begin with an alphabetic character. There are no limits on the name of a hashed file other than what the operating system imposes. Even a single underscore is legal as a hashed file nam...
- Thu Nov 04, 2004 12:24 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Using different Oracle user
- Replies: 5
- Views: 1908
- Wed Nov 03, 2004 8:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: dsenv in windows???
- Replies: 2
- Views: 3311
- Wed Nov 03, 2004 8:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Using the same Sequence in multiple tables
- Replies: 6
- Views: 2269
Generate the next value into a stage variable using the KeyMgtGetNextValue function. Use that stage variable as the derivation for the output column on both output links (one to each table). Stage variables are evaluated once per input row. Column derivations are evaluated once per output row per ou...
- Wed Nov 03, 2004 8:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with DataStage Server installation
- Replies: 8
- Views: 3111
- Wed Nov 03, 2004 3:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: pivoting data
- Replies: 4
- Views: 1034
- Wed Nov 03, 2004 2:56 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem with DataStage Server installation
- Replies: 3
- Views: 892
How did you try to execute the job? Please describe your method explicitly and completely. Does the job have any parameters? Did the Job Run Options window (in which you can set parameter values, run and warning limits and tracing) appear? Are you sure you clicked OK and not Cancel in this dialog? I...
- Wed Nov 03, 2004 2:54 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Value of a generated key rolled over to 1
- Replies: 7
- Views: 2223
Did anyone reset your sequence, or change the name by which the sequence was being invoked? I would expect any roll-around to start generating negative numbers. Presumably the Oracle column is NUMBER(38), so the MAXINT value discussed above wouldn't be a problem. For the quick and dirty solution, ta...
- Wed Nov 03, 2004 2:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: HELP command in Administrator
- Replies: 5
- Views: 1440
If you're at the UV shell by the means indicated above, you need another step. You must move to your project. The command for doing this is LOGTO (approximately the equivalent of cd). LOGTO ProjectName Once there, you may need to use SETFILE to create a VOC pointer to the hashed file. To determine w...
- Wed Nov 03, 2004 2:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file normalization problem
- Replies: 3
- Views: 2098
Welcome aboard! Are all columns in the same association? If not, try putting them all in the one association, and normalizing on that. You may need to edit the file dictionary of the hashed file AND re-import the hashed file's table definition afterwards (or edit the Columns grid to record the fact ...
- Wed Nov 03, 2004 2:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Problem with DataStage Server installation
- Replies: 8
- Views: 3111
- Wed Nov 03, 2004 2:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Using the same Sequence in multiple tables
- Replies: 6
- Views: 2269
KeyMgtNextValue is a BASIC routine. There have been recent posts here about using BASIC Transformer stage in parallel jobs; the same may apply to BASIC routines. That said, KeyMgtNextValue and KeyMgtNextValueConcurrent do not have any link to anything except the argument value supplied. They can be ...
- Wed Nov 03, 2004 2:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Require Comments on work i m thinking to develop in DS-7.1
- Replies: 2
- Views: 1608
While DataStage can certainly do all that you specify (without needing great skills), it seems an expensive solution if that is your only task. On the other hand, if you're likely to have more data migration tasks, or are thinking of developing a data warehouse or similar, then it's probably a wise ...
- Tue Nov 02, 2004 7:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reset and run a job
- Replies: 5
- Views: 1595
- Tue Nov 02, 2004 3:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reset and run a job
- Replies: 5
- Views: 1595
Having been burned with "attach lock" errors I always detach and attach, as your code does. Because they're effectively in adjacent statements in the one routine, I don't really lose control, though I do have to set parameters afresh. So far I've avoided using DSPrepareJob. And I never use DSLogFata...