Search found 53125 matches
- Fri Jan 11, 2008 12:40 am
- Forum: IBM<sup>®</sup> DataStage TX
- Topic: New to WTX
- Replies: 11
- Views: 7119
The main difference is that they are completely different products. Ill-advised marketing lumped them together under the same name. DataStage server edition began life as DataStage, a UniVerse-based application, vendors VMark, Ardent, Informix, Ascential, IBM. DataStage enterprise edition began life...
- Fri Jan 11, 2008 12:35 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Removing ^M Charecters in DS Job
- Replies: 2
- Views: 970
- Thu Jan 10, 2008 11:26 pm
- Forum: Site/Forum
- Topic: The Training Center
- Replies: 4
- Views: 2681
- Thu Jan 10, 2008 11:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine Help
- Replies: 8
- Views: 1832
Code: Select all
Oconv(Date(), "D-YM[4,2]") : "-01"- Thu Jan 10, 2008 11:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Cron entries for DS jobs run scripts
- Replies: 1
- Views: 690
- Thu Jan 10, 2008 11:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: datastage
- Replies: 1
- Views: 702
Welcome aboard. In my experience it's not possible to schedule anything from UNIX when it's stopped. Would you like to elaborate on what you mean? If it's the job that has been stopped (rather than UNIX), you will need to reset the job before it can run again. The easiest way to do this is to create...
- Thu Jan 10, 2008 11:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Oracle insert statement with ORACLE sequence.
- Replies: 14
- Views: 7064
Your job must not deliver the key column to the OCI stage. Then you only have the two non-key columns, so you require precisely two parameter markers in your INSERT statement.
Code: Select all
insert into table_dbt (A,B,C) VALUES (dt_seq.nextval,:1,:2)- Thu Jan 10, 2008 11:11 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance Issue
- Replies: 6
- Views: 1968
Look outside of DataStage too. You have (apparently) a ten-way join happening in DB2. Is this being properly assisted by indexes? Are there some rows that would never be needed that could be eliminated by other WHERE constraints, also assisted by indexes? Make a little job that does nothing else tha...
- Thu Jan 10, 2008 11:06 pm
- Forum: Site/Forum
- Topic: Duplicate Posts
- Replies: 22
- Views: 9977
- Thu Jan 10, 2008 11:03 pm
- Forum: Site/Forum
- Topic: The Training Center
- Replies: 4
- Views: 2681
Other material has been prepared, and more is being prepared. Since DSXchange lost its excellent webmaster (Walter), the remainder of the crew there have been floundering a bit. More than one attempt has been made to replace Walter, none successful yet. Please be patient. To whet your appetite, here...
- Thu Jan 10, 2008 7:02 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine Help
- Replies: 8
- Views: 1832
Identify the first day of the month. Lots of ways to do this - for example look at the MONTH.FIRST Transform. Determine the day of the week of that day. Again, lots of ways to do this, but Mod(TheDate, 7) is probably the most efficient. 0 is Sunday, 6 is Saturday. Add the right number of days to the...
- Thu Jan 10, 2008 6:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Placing a constraint in transformer
- Replies: 9
- Views: 3203
- Thu Jan 10, 2008 6:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Copy input row
- Replies: 1
- Views: 804
Welcome aboard. The easiest is to use a Copy stage or a Transformer stage with 24 outputs. Use a Copy stage if there are no columns to be added; use a Transformer stage if there are. You could bring all 24 links back together using a Funnel stage, or - if the time is a key column in the target table...
- Thu Jan 10, 2008 6:52 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to avoid new line in XML output
- Replies: 3
- Views: 1262
- Thu Jan 10, 2008 6:49 pm
- Forum: General
- Topic: XML-to-DB schema manager
- Replies: 1
- Views: 744
I wrote a job eons ago - to dump table definitions in various formats - that was adapted by Kim Duke into a function called KgdCreateDdlMetadata; information about it can be found here and the function itself can be downloaded from Kim's web site