Search found 42189 matches
- Tue Oct 18, 2005 7:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Difference between ORABULK stage and RBDLOAD stage
- Replies: 8
- Views: 2463
No, they are not one and the same - they perform similar functions, but for two totally different databases. So, if your target is Oracle you could use the ORABULK stage. Similarly, if your target is Red Brick you could use the RDBLOAD stage. Stick with command line sqlldr. Just because you've got a...
- Tue Oct 18, 2005 6:54 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: runlocally()
- Replies: 6
- Views: 1941
- Mon Oct 17, 2005 1:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date conversion from time stamp to yyyy/mm/dd
- Replies: 10
- Views: 37081
- Mon Oct 17, 2005 1:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: First row reject Sequential to SQL(2000)
- Replies: 19
- Views: 3363
What 'update action' are you using in the DRS stage? Not something user defined, I hope? The error indicates you are having a problem converting character data to numeric data. Check this link for probably more details than you really wanted. In a nutshell: Character Source to Numeric Target Followi...
- Mon Oct 17, 2005 12:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: First row reject Sequential to SQL(2000)
- Replies: 19
- Views: 3363
- Mon Oct 17, 2005 12:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date conversion from time stamp to yyyy/mm/dd
- Replies: 10
- Views: 37081
What you posted is easy as it's exactly what it needs to look like for an Oracle DATE field declared as a Timestamp in DataStage: YYYY-MM-DD HH24:MI:SS So for that just send it on through - no conversion needed. For something coming in like '2005/04/15', it's just a matter of rearranging the bits us...
- Mon Oct 17, 2005 12:39 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Capture the SQL Code?
- Replies: 10
- Views: 2881
- Mon Oct 17, 2005 12:35 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: XML
- Replies: 1
- Views: 693
- Mon Oct 17, 2005 8:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Capture the SQL Code?
- Replies: 10
- Views: 2881
Welcome aboard, Jim. :D I'm not familiar at all with the DB2 API stage, but as long as it works like any other passive database stage you should be able to capture what you need. The first order of business would be to setup a 'reject' link to capture rows that have been spit back by your target dat...
- Mon Oct 17, 2005 7:56 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Releasing Read only
- Replies: 6
- Views: 1307
You use the LOGTO command when you have come in from the command line, not the Administrator window. When you click Command to open the 'TCL' window from the Administrator, you are automatically 'logged to' whichever project you had highlighted when you clicked the button. And, as you have discovere...
- Mon Oct 17, 2005 7:46 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: $CommandOutput
- Replies: 13
- Views: 7182
- Sat Oct 15, 2005 8:13 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Diff between server Job Parallel Job
- Replies: 30
- Views: 9759
This link does not seem to work ....... can any body view this link The link would have worked fine if it was posted properly as a link. The way it was done, it needed to be cut-and-pasted into the Address line of your browser to see. The URL tags allow you to link to other postings rather easily, ...
- Fri Oct 14, 2005 1:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to reject invalid records from a sequential file
- Replies: 5
- Views: 1643
- Fri Oct 14, 2005 1:40 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting a Date in An integer format
- Replies: 8
- Views: 2054
- Fri Oct 14, 2005 10:03 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Getting a Date in An integer format
- Replies: 8
- Views: 2054
Actually, was looking for a little more detail than that. Examples of input and output formats are always good. If what you mean is that you need to strip formatting characters from the date, look at - in no particular order - the Trim and EReplace functions. The latter can be used to replace a char...