Search found 53125 matches
- Wed Mar 19, 2008 6:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Different formats
- Replies: 3
- Views: 982
Start by consulting an ASCII table (there's one in the DataStage BASIC manual). Only if \013 is an octal representation is it equal to Ctrl-K. In decimal that's 11 so you specify the delimiter character as decimal 11 as 011, or in hexadecimal as 0x0B. To get multiple rows per input line, use a Pivot...
- Wed Mar 19, 2008 4:10 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: main_program: The section leader on apsp8507 died
- Replies: 2
- Views: 3253
- Wed Mar 19, 2008 4:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: What is theDifference Between Data Stage 7.5 & DataStage
- Replies: 9
- Views: 3995
- Wed Mar 19, 2008 4:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job running in a infinite loop
- Replies: 4
- Views: 1150
It's almost definitely NOT an infinite loop - it's much more likely to be a hang (wait) of some kind. What is the job doing? There are many reasons this behaviour may obtain. For example there may be an active session in a database and DataStage is waiting for this to complete. (You can kill the ses...
- Wed Mar 19, 2008 2:25 am
- Forum: General
- Topic: Using XML files as source
- Replies: 6
- Views: 1392
Think about it. If your source is XML documents there's a clear benefit of being able to read them and parse the data therein into rows and columns without needing to code it yourself. Using a Sequential File stage you would have (unnecessarily) to parse out all the XML tags, and recognize complex n...
- Tue Mar 18, 2008 11:45 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Look File Set and LookUp stage in job - Giving warning
- Replies: 1
- Views: 741
Search the forum. This message is innocuous.
- Tue Mar 18, 2008 9:22 pm
- Forum: General
- Topic: ODBC Connection Error
- Replies: 6
- Views: 2045
Getting into Lotus Notes via ODBC is sometimes very difficult - it's the added layers of security. Read the documentation that accompanied the driver very carefully and learn what you must do to get it to talk to Lotus Notes. Even though you won't be allowed to do this in a production environment, t...
- Tue Mar 18, 2008 9:20 pm
- Forum: General
- Topic: Pattern read in the DataSet Stage.
- Replies: 7
- Views: 1358
- Tue Mar 18, 2008 5:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Run the Extract in loop
- Replies: 6
- Views: 1979
Alternative solution for your specific example is to use a counted loop from 1 to 4, and use arithmetic expressions for your job parameters.
Code: Select all
StartLoop.$Counter * 1000000
(StartLoop.$Counter + 1) * 1000000- Tue Mar 18, 2008 5:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Run the Extract in loop
- Replies: 6
- Views: 1979
1000000|2000000,2000000|3000000,3000000|4000000,4000000|5000000
Comma delimited.
Assign values to your job parameters using the Field() function with "|" as the delimiter character.
Comma delimited.
Assign values to your job parameters using the Field() function with "|" as the delimiter character.
Code: Select all
Field(StartLoop.Counter$, "|", 1)
Field(StartLoop.Counter$, "|", 2)- Tue Mar 18, 2008 5:24 pm
- Forum: General
- Topic: Migration to Version 8
- Replies: 13
- Views: 4017
Migration to Version 8
There is, in my opinion, scope for an FAQ on the do's, don'ts, traps, pitfalls (and, just in case, successes) of migrating to version 8.
I have not done this upgrade yet. I have only installed version 8 "clean".
I have not done this upgrade yet. I have only installed version 8 "clean".
- Tue Mar 18, 2008 5:21 pm
- Forum: General
- Topic: Pattern read in the DataSet Stage.
- Replies: 7
- Views: 1358
This can not be done with a Data Set stage. You might have some luck with a File Set. "Similar" structure is not good enough - "identical" structure is required. If you are trying to read four Data Sets, however, this is an entirely different ball game. There is no multiple reader. Use a Funnel stag...
- Tue Mar 18, 2008 3:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: problem with Stored Procedure in datastage
- Replies: 6
- Views: 2350
- Tue Mar 18, 2008 3:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Insert hanging against Data warehouse
- Replies: 20
- Views: 4771
- Tue Mar 18, 2008 3:30 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Link Count
- Replies: 22
- Views: 6577