Search found 42189 matches

by chulett
Mon Oct 21, 2013 1:55 pm
Forum: General
Topic: Automation run time column propagation
Replies: 6
Views: 1889

Sure... you should be able to pretty easily script something to pull the names from a file and loop through the list, launching the job via dsjob each time. Or build a Sequence job with the Start / End Loop stages to do the same thing.
by chulett
Mon Oct 21, 2013 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All records not loading into hash file
Replies: 8
Views: 3421

Then you need to use a stage that allows a 'multi-row result set' which means either the UV or ODBC stages. The former is a bit of a pain to setup and use so I'd suggest the latter set to lookup directly against the (apparently small) source table rather than trying to build an intermediate data set...
by chulett
Mon Oct 21, 2013 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All records not loading into hash file
Replies: 8
Views: 3421

Answer this question first - what do you want to happen when you do a lookup against a key value with duplicates? What should be returned?
by chulett
Mon Oct 21, 2013 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data string '20090102' does not match format '%yyyy-%mm-%dd'
Replies: 10
Views: 15654

Check the syntax for IsValidDate... I'm assuming it is taking a default since you don't mention the date's format, try adding "%yyyy%mm%dd" to it as well.
by chulett
Mon Oct 21, 2013 11:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: All records not loading into hash file
Replies: 8
Views: 3421

Hashed files do not allow duplicates and do a 'destructive overwrite' when a duplicate key value is encountered. I suspect this is your issue.
by chulett
Mon Oct 21, 2013 10:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data string '20090102' does not match format '%yyyy-%mm-%dd'
Replies: 10
Views: 15654

Your warning does not match up to the code you posted... meaning the error shows you using "-" delimiters between the date elements and yet your code as posted does not.
by chulett
Mon Oct 21, 2013 7:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting import error for date field
Replies: 6
Views: 3516

record ex :: 20110101, 20120606 YYYYMMDD This is a complete and accurate example of a record from your file? It actually includes the "YYYYMMDD" part? You've also said the field delimiter is a 'pipeline' by which I assume you mean pipe or '|' and yet there is not such character in your ex...
by chulett
Sun Oct 20, 2013 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage
Replies: 5
Views: 1575

Stage variables work the same in Parallel and Server, what was 'not successful' about your attempt? What exactly did you try? Did you run the Parallel job on a single node? While not required it does simplify things.
by chulett
Sun Oct 20, 2013 8:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting import error for date field
Replies: 6
Views: 3516

Post some input records and detail for us the settings you are using in the Sequential File stage.
by chulett
Sun Oct 20, 2013 8:48 am
Forum: General
Topic: Job abort message as an attachement in email notification
Replies: 9
Views: 2063

The Notification Activity stage will do that automatically in a Sequence job if you enable the 'Include status' option. Now, it won't be an attachment but you should have the basic information you need with very little effort. If what you 'need' to pull are the actual error message(s) from the job's...
by chulett
Fri Oct 18, 2013 8:04 pm
Forum: General
Topic: How to Check old job log
Replies: 3
Views: 1687

Not sure about the new console tools but the Director has a "Filter..." entry on the menu or you can press Ctrl-T to open up the Filter dialogue box. There are several different criteria available but the basic one is the number of entries to show - the last 100 lines, for example. As to h...
by chulett
Fri Oct 18, 2013 5:55 pm
Forum: General
Topic: How to Check old job log
Replies: 3
Views: 1687

Actually, it keeps logs for as far back as you allow it to. Don't forget you also have a Filter when you view that may be restricting you to only seeing the last few days. However, once logs have been purged (either automatically or manually) they are gone. That is the primary reason so many people ...
by chulett
Fri Oct 18, 2013 5:50 pm
Forum: General
Topic: COMPARE TWO PROJECT: PROD AND TEST
Replies: 5
Views: 1292

Yah, if you have an 'intelligent' comparison tool you might have better luck. I own a perpetual license for UltraCompare which is quite nice.
by chulett
Fri Oct 18, 2013 2:53 pm
Forum: General
Topic: COMPARE TWO PROJECT: PROD AND TEST
Replies: 5
Views: 1292

... but that way leads to madness. :shock:
by chulett
Fri Oct 18, 2013 2:52 pm
Forum: General
Topic: datastage jobs migration from 8.1 to 9.1
Replies: 15
Views: 20967

I'd be shocked if foundation functions like OConv and IConv changed in any 'breaking' manner. Perhaps they would add additional optional parameters or functionality but they would be doing themselves some major damage if those functions behave differently in any detrimental sense. Do you have any de...