Search found 42189 matches
- Tue Jul 16, 2013 2:51 pm
- Forum: General
- Topic: Need to use date to run certain jobs in a Sequence
- Replies: 8
- Views: 2019
- Tue Jul 16, 2013 2:06 pm
- Forum: General
- Topic: Need to use date to run certain jobs in a Sequence
- Replies: 8
- Views: 2019
If "evdate" is a job parameter in the Sequence job then you may need to encase it in hash marks '#' so it knows that.
See if that helps at all.
Code: Select all
#evdate#[4,2] >= '02' and #evdate#[4,2] <= '05'- Tue Jul 16, 2013 11:04 am
- Forum: General
- Topic: Need to use date to run certain jobs in a Sequence
- Replies: 8
- Views: 2019
- Tue Jul 16, 2013 9:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Create output file names based on data in a column
- Replies: 21
- Views: 7827
- Tue Jul 16, 2013 7:29 am
- Forum: General
- Topic: Incorrect Parameter passed
- Replies: 2
- Views: 846
- Tue Jul 16, 2013 7:26 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: OUTOFMEMORY-DSObjects Out of Memory
- Replies: 2
- Views: 2343
- Tue Jul 16, 2013 7:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Can I use DataStage to backup records?
- Replies: 6
- Views: 2021
- Tue Jul 16, 2013 7:13 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Create output file names based on data in a column
- Replies: 21
- Views: 7827
As noted in the linked post and the docs, yes it takes a single record so if you have multiples you need to get them all concatenated together with a record delimiter between each. Do that in a stage variable and then send it to an aggregator set to 'last' before the Folder stage. Sorry but I don't ...
- Mon Jul 15, 2013 11:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How Can I make use of Parameters in Server jobs
- Replies: 8
- Views: 3546
You could start from somewhere like here which is the official 8.5 documentation. Close enough, especially considering that most of the older 8.1 documentation needs to be purchased for several hundred dollars each. :shock: Problem is the Developer's Guide is a Parallel Guide but you may find it use...
- Mon Jul 15, 2013 4:17 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How Can I make use of Parameters in Server jobs
- Replies: 8
- Views: 3546
- Mon Jul 15, 2013 1:59 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to handle Blob ?
- Replies: 10
- Views: 3034
- Mon Jul 15, 2013 11:30 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to process Variable Length File
- Replies: 5
- Views: 2018
- Mon Jul 15, 2013 10:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How Can I make use of Parameters in Server jobs
- Replies: 8
- Views: 3546
- Mon Jul 15, 2013 9:46 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How Can I make use of Parameters in Server jobs
- Replies: 8
- Views: 3546
- Mon Jul 15, 2013 7:38 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Convert Dates
- Replies: 5
- Views: 2806
Server is very forgiving and technically everything is a string under the covers. If you want the year from a date I would just substring out those 4 characters. Or use the Field() function. I think OCONV requires the argument in the internal format as generated by ICONV Yes, it does require an inte...