Search found 53125 matches
- Wed Dec 06, 2006 6:47 pm
- Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
- Topic: Calling Web Service from DS Routine
- Replies: 5
- Views: 3290
- Wed Dec 06, 2006 5:27 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error in creating fixed length sequential file
- Replies: 5
- Views: 5215
- Wed Dec 06, 2006 5:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Order By Clause or Explicit Sort Stage
- Replies: 18
- Views: 7574
- Wed Dec 06, 2006 5:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine Reqd. For Incremetal Load
- Replies: 2
- Views: 1035
Re: Routine Reqd. For Incremetal Load
I need help on urgent basis and i would be greatful if you can provide me the solution. Etiquette Note We don't do urgent here. We are all volunteers, no-one is paid for posting. If you want urgent, sign up for premium service with your support provider, and learn the true cost of urgent. As for "p...
- Wed Dec 06, 2006 5:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to capture job log into text file
- Replies: 10
- Views: 7496
- Wed Dec 06, 2006 5:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to deal with char(1) in datastage
- Replies: 9
- Views: 2798
- Wed Dec 06, 2006 5:09 am
- Forum: General
- Topic: Automatic Job Generator - does one exist??
- Replies: 39
- Views: 18825
- Wed Dec 06, 2006 2:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Wierd Transformer Compiler Error
- Replies: 5
- Views: 2474
- Wed Dec 06, 2006 2:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Change Job Parameters at run time(middle of execution)
- Replies: 1
- Views: 674
- Wed Dec 06, 2006 2:42 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Order By Clause or Explicit Sort Stage
- Replies: 18
- Views: 7574
If you don't put in a Sort stage, DataStage will insert tsort operators, because the Join stage requires sorted inputs. If you have an ORDER BY clause, you can make the Sort stage specify "don't sort (already sorted)" so that it does nothing, but the existence of the Sort stage will prevent DataStag...
- Wed Dec 06, 2006 2:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link Order for Deleting Records
- Replies: 3
- Views: 1107
If your job design takes all three links into a single ODBC stage then you can use the Transaction Grouping feature of that stage. Transformer stage allows you to control output link execution order, so that's not where the problem arises. Whether it waits or not is largely a factor of whether row b...
- Wed Dec 06, 2006 12:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: error handling
- Replies: 5
- Views: 1381
- Wed Dec 06, 2006 12:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to call a value from Text file?
- Replies: 2
- Views: 1239
You appear to be confused. At least you've confused me. You are using user-defined SQL to interrogate a text file? Is this perhaps via an ODBC stage referring through an ODBC driver for text files? A smarter mechanism would be to read the entire file into your job using a Sequential File stage, then...
- Tue Dec 05, 2006 11:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: architectural difference in the repositories.
- Replies: 8
- Views: 1422
- Tue Dec 05, 2006 11:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: how to deal with char(1) in datastage
- Replies: 9
- Views: 2798
Check that the column really IS Char(1) in Oracle, not Char(4). Debug the job, and view the actual data values being selected. Does any of them have more than one character? If the error message includes a row number (or if you trap the input row number on the reject-handling link), you can go strai...