Search found 53125 matches
- Thu Oct 30, 2003 2:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Data source does not support transactions.
- Replies: 10
- Views: 3459
DataStage reports all messages generated by database servers. DataStage is not geared to work to non-transactional databases (except UniVerse and UniData), so it sends a COMMIT. Or more than one. IDS responds to COMMIT on a non-logging database with the indicated message. Can you suggest a generic s...
- Thu Oct 30, 2003 2:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Design Spec Template Wanted
- Replies: 3
- Views: 2317
Since you're in the beginning of your project, can I also recommend that you plan what things ought to be parameterized? Job parameters offer insurance against values that may change over time, and values that may be different in development, testing and production environments. For example: authent...
- Thu Oct 30, 2003 2:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Design Spec Template Wanted
- Replies: 3
- Views: 2317
Over the years I have created a number of these. Essentially they are a five-column table. There is one row for each table.column in the target (for example the tables in the star schema in a data warehouse). The first two columns are the table name and column name from the target. The next two colu...
- Thu Oct 30, 2003 6:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC list doesnt display all DSN
- Replies: 5
- Views: 1446
- Thu Oct 30, 2003 6:23 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Write failed for Hashed File
- Replies: 2
- Views: 2138
- Thu Oct 30, 2003 6:10 am
- Forum: General
- Topic: A script to export individual Datastage components?
- Replies: 4
- Views: 4979
No and no. What you might be able to do is to intercept all traffic between your Manager client and server while you're exporting one component. Do this by enabling server-side tracing before opening Manager. Then you could follow the calls to helper subroutines and replicate this in a DataStage BAS...
- Thu Oct 30, 2003 6:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting Top 4 rows - Rank Data
- Replies: 8
- Views: 2200
Well, since we're sharing, here's how Red Brick Warehouse does it. The WHEN clause is used to restrict rows based on display functions such as RANK, NTILE, CUME, MOVINGAVG, MOVINGSUM, RATIOTOREPORT and so on. <pre>SELECT col1, col2, col3 FROM table WHERE any_other_conditions WHEN RANK(expression) <=...
- Thu Oct 30, 2003 6:01 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: parellel job-multiple instances
- Replies: 6
- Views: 1979
- Wed Oct 29, 2003 9:53 pm
- Forum: Enhancement Wish List
- Topic: QualityStage field widths longer than 8 characters.
- Replies: 1
- Views: 1194
Alas (for your wish), the eight character limit comes from INTEGRITY (and, presumably, from the fact that that product also has to execute on OS/390, where file name components have an eight character limit). It's a given. Remember that there are ex-Vality customers out there, who only use INTEGRITY...
- Wed Oct 29, 2003 9:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Just for Teej
- Replies: 7
- Views: 2514
Just for Teej
Here's Teej's special server routine. Use the test grid! FUNCTION Teej(Arg1) * Arg1 is ignored. Cmd = "SELECT @ID FROM VOC WHERE TYPE = 'K' AND OP.CODE = 16 FIRST 1 COL.SUP COUNT.SUP;" Call DSExecute("UV", Cmd, Output, Code) Ans = Field(Trim(Trim(Outpu...
- Wed Oct 29, 2003 4:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Are multiple versions of DS Client possable?
- Replies: 21
- Views: 8757
- Wed Oct 29, 2003 4:30 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Delta Extraction
- Replies: 6
- Views: 1613
- Wed Oct 29, 2003 4:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Are multiple versions of DS Client possable?
- Replies: 21
- Views: 8757
- Wed Oct 29, 2003 4:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Controlling Jobs
- Replies: 4
- Views: 1269
That's a good answer. As it's a slightly customized approach to what DataStage job sequences do, you may be better off creating custom job control code, in the Job Control tab of a (controlling) job's job parameter window. Use even more parameters. Parameterise the start date (default 1 Jan) and the...
- Wed Oct 29, 2003 4:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extracting Top 4 rows - Rank Data
- Replies: 8
- Views: 2200