What does the date look like in the text file?
What is your default date picture for Oracle?
Search found 53125 matches
- Sun Feb 18, 2007 8:58 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Link Collector - Union
- Replies: 12
- Views: 2966
- Sun Feb 18, 2007 8:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage 7.5 Connection problem
- Replies: 18
- Views: 5036
- Sun Feb 18, 2007 6:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Program Sources option in Job Export
- Replies: 2
- Views: 873
- Sun Feb 18, 2007 6:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Seconds to Time String Conversion
- Replies: 2
- Views: 1091
That's about it, though you might like to format the result. For example do you need no leading zeroes on the hour component?
Code: Select all
Oconv(InLink.Seconds, "MTS[Z,2,2]")- Sun Feb 18, 2007 6:53 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage 7.5 Connection problem
- Replies: 18
- Views: 5036
- Sun Feb 18, 2007 2:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Not able to write reject record
- Replies: 8
- Views: 2225
There is an additional property that you have to set to allow the use of a reject link. However, such a reject link can not capture bad rows from sqlldr. DataStage creates the control and data files then invokes sqlldr; control is actually passed to sqlldr. To determine what rows were rejected you n...
- Sun Feb 18, 2007 1:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage 7.5 Installation Error
- Replies: 8
- Views: 2912
- Sun Feb 18, 2007 1:57 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Datastage 7.5 Connection problem
- Replies: 18
- Views: 5036
- Sun Feb 18, 2007 1:55 pm
- Forum: General
- Topic: TMP vs Scratch disc?
- Replies: 2
- Views: 1654
TMPDIR is on the conductor node only, scratchdisk is per processing node. Scratchdisk is explicitly used by stage types that exceed their memory allocation; TMPDIR is more generically used, and occasionally is used for files unrelated to memory allocation. There is also UVTEMP, used by server job co...
- Sun Feb 18, 2007 12:09 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Multiple Job Compile Utility
- Replies: 6
- Views: 1246
Unless your test environment consists of protected projects there's nothing to stop you connecting to them with a client tool and effecting a multi-job compile that way. Of course, as others noted, you can obviate the requirement completely by exporting and importing the job and routine executables.
- Sat Feb 17, 2007 2:32 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Output of Agg stage sorted if input is sorted?
- Replies: 1
- Views: 836
If you use Sort mode it's a reasonable assumption, per partition. There's nothing to guarantee that the overall Data Set is sorted - you would need either a Sort Merge collector or a sequentially executed Sort stage to achieve that. If you use Hash mode it's not a reasonable assumption; the output o...
- Sat Feb 17, 2007 2:29 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Modify Stage- DaysSinceFromDate syntax
- Replies: 13
- Views: 8637
Code: Select all
NumDays:integer=days_since_from_date[source_date](date)DaysSinceFromDate() is a Transformer stage function, not a Modify stage function.
- Sat Feb 17, 2007 2:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Use of combine records stage
- Replies: 15
- Views: 6766
- Sat Feb 17, 2007 2:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSN,PLUGIN ISSUE
- Replies: 21
- Views: 10259
- Sat Feb 17, 2007 2:13 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to configure DSN for Oracle In unix (Server)
- Replies: 22
- Views: 8704
You don't seem to undertand how the command search path works. You must provide the pathname of the executable even if you are in its parent directory unless that parent directory is in your command search path (the PATH environment variable). Thus, if you are in /opt/product/Ascential/DataStage/DSE...