Search found 53125 matches
- Tue Jun 29, 2004 3:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable To Open Hash File - MultiInstance Job
- Replies: 3
- Views: 1959
It's the only way to fix this problem. Provided uvregen doesn't report a figure too close to the maximum shared memory segment size for your system, you could try increasing T30FILE to, say, 1500 or 2000. Each additional slot requires, as far as I can recall, just over 100 bytes of memory. The only ...
- Tue Jun 29, 2004 3:53 pm
- Forum: Site/Forum
- Topic: forum on datastage mainframe
- Replies: 2
- Views: 2532
It would be a good idea, but even better if accompanied by (automatic redirection to?) separate forums for server, parallel and mainframe jobs. Any possibility of filtering the posts already on the DataStage forum into these three categories, based on the header information? (Yes, I know some of it'...
- Tue Jun 29, 2004 3:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How do you use SAS in Enterprise Edition
- Replies: 6
- Views: 2754
In Designer, when you choose File > New, do you have the choice of creating a "parallel job"? If not, you do not have the Parallel Extender (now known as Enterprise Edition) installed/licensed. If you do have the Parallel Extender (Enterprise Edition) installed and licensed, you still need to instal...
- Tue Jun 29, 2004 4:02 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage "fault Tolerant"
- Replies: 7
- Views: 3392
- Tue Jun 29, 2004 4:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: User/pass
- Replies: 5
- Views: 2123
DataStage does not have its own users and passwords. You need someone with suitable authority to create a user ID - or reset your user password. DataStage security hinges on operating system groups, so you will need to be a member of an appropriate group, as was configured in the Administrator. You ...
- Tue Jun 29, 2004 3:57 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unable To Open Hash File - MultiInstance Job
- Replies: 3
- Views: 1959
Arun, "File descriptor table is full" refers to the in-memory table of concurrently open dynamic hashed files. The size of this tables is set by the T30FILE configuration parameter in the uvconfig file. Once you have increased this, you need to run the uvregen utility, then stop and re-start DataSta...
- Mon Jun 28, 2004 11:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframes
- Replies: 9
- Views: 2240
The whole point of DataStage is to have a graphical design metaphor. You draw a picture of what you expect to happen. There is no facility for taking existing COBOL and magically transforming it into DataStage's graphical format. Did you read the Chapter on the External Routine stage? It tells you t...
- Mon Jun 28, 2004 11:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Previous Weekday From Date
- Replies: 9
- Views: 7669
- Mon Jun 28, 2004 11:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Can a user-defined query looks up another user-defined query
- Replies: 12
- Views: 3342
With or without a primary key, a query on a reference input must have a WHERE clause. For example WHERE postalcd_wid = ? However, a reference input is expected by DataStage to have at least one column marked as the key column (note, too, that this does not necessarily mean "primary key", but usually...
- Mon Jun 28, 2004 4:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Previous Weekday From Date
- Replies: 9
- Views: 7669
- Mon Jun 28, 2004 3:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting Column Definitions
- Replies: 6
- Views: 2085
Some time back I published (here, I think) a routine for dumping a table definition from the Repository. See if you can find it. Otherwise I'm sure I can dig it out. However, you'd have to have the table definition in the Repository; the routine does not read it from a stage (actually link) definiti...
- Mon Jun 28, 2004 3:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence number for multi valued data
- Replies: 11
- Views: 3407
- Mon Jun 28, 2004 3:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: mainframes
- Replies: 9
- Views: 2240
There is no import capability. You can re-design the logic using DataStage, which will generate COBOL from scratch. If your existing COBOL functionality can be packaged as a callable routine, then DataStage has the capacity, through External Routine stages, to invoke these. Both static and dynamic i...
- Fri Jun 25, 2004 6:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: lookup not unique
- Replies: 4
- Views: 1393
If you WANT multi-row lookup capability, use either ODBC or UV stage. How any other stage type works depends on what the database server delivers, but typically it's the first match found that DataStage uses. A hashed file, necessarily, has UNIQUE primary key values. If you want a secondary key look...
- Fri Jun 25, 2004 6:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: pick up a string
- Replies: 4
- Views: 1135
If that doesn't work, try
or possibly
Code: Select all
Matchfield(TheString, "0X'?-'0X", 3)or possibly
Code: Select all
TrimF(Matchfield(TheString, "0X'?-'0X", 3))