Search found 42189 matches

by chulett
Fri Apr 06, 2012 5:58 pm
Forum: General
Topic: Error with istool deploy finding package file
Replies: 4
Views: 1464

For grins, can you post the actual error message you are seeing?
by chulett
Fri Apr 06, 2012 1:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Rangelkup failure message "Updatable lookup requires so
Replies: 5
Views: 3087

They're not 'passed' but but they are inherited because they are all running under one environment - the one established by the Sequence. And if your jobs rely on certain values being set, don't assume they are already set in the environment, explicity set them in your jobs. That way a Master Sequen...
by chulett
Fri Apr 06, 2012 1:26 pm
Forum: General
Topic: ActiveBatch scheduler
Replies: 5
Views: 2627

You already know the secret sauce: make sure the scheduling user has the PATH to dsjob in their profile. Sounds llike your scheduler isn't using bash so I would suggest you create a .profile with just the bits you need for this and see if that helps.
by chulett
Fri Apr 06, 2012 9:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error: Not bounded length
Replies: 10
Views: 7621

'Related' doesn't cut it, you need to start your own topic rather than jump on the end of someone else's resolved topic.

Split and linked.
by chulett
Fri Apr 06, 2012 9:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is the output of the aggregator stage sorted ?
Replies: 5
Views: 2405

ps. I added the

Code: Select all

 tags around your ASCII art so it's closer to what you intended but I'm not about to spend my time cleaning it up so everything lines up perfectly.

You're welcome to do that, however. Edit the post and make liberal use of the 'Preview' option.
by chulett
Fri Apr 06, 2012 7:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing header and footer using datastage without unix cmd?
Replies: 7
Views: 8780

What have you tried? In the Parallel Sequential File stage, it can as simple as using the metadata for the detail records and the header/footer will automagically be rejected. Of course, that depends on how generic your metadata is. Can you post any FD information, what do your header/detail/footer ...
by chulett
Fri Apr 06, 2012 5:34 am
Forum: General
Topic: Conencting DS 7.5.3 server from my 7.5.2 Client version
Replies: 10
Views: 4536

I know exactly what you mean, and it only looked like it worked. Sometimes also known as 'mostly works'. Had several run-ins with support over the issue... they were very insistent - don't do it. Just say no. :wink:
by chulett
Fri Apr 06, 2012 5:31 am
Forum: General
Topic: Multiple parameter values
Replies: 3
Views: 1929

8)
by chulett
Thu Apr 05, 2012 2:30 pm
Forum: General
Topic: Multiple parameter values
Replies: 3
Views: 1929

You could pass a parameter value of A','B (since you hard-coded the outer quotes) and then set the new magic environment variable that tells DataStage to not strip out the quotes. Sorry, don't remember the name, just the fact that it exists. :(
by chulett
Thu Apr 05, 2012 2:27 pm
Forum: General
Topic: how to get end timestamp in DSJOB
Replies: 7
Views: 2290

Me, personally, I would never build anything like that into a job. I prefer a separate process that runs after all jobs have completed that queries them for things like their ending timestamp, links counts, etc and outputs all of that to a flat file. Then another process can simply pick up that file...
by chulett
Thu Apr 05, 2012 2:21 pm
Forum: General
Topic: need unix script
Replies: 20
Views: 5568

You can view it in UNIX, you'd just need to enclose the filename (spaces and all) in single quotes to do so. In order to remove the spaces, you'd need something to retrieve the current timestamp before the job starts and then use a routine to remove everything but the numbers. A Sequence job could b...
by chulett
Thu Apr 05, 2012 12:59 pm
Forum: General
Topic: need unix script
Replies: 20
Views: 5568

Are you sure you're ok with that? From what I recall, the output from that macro has spaces in it, which can confuse things when used raw like that in a filename. The colons can also cause issues... but if it works for you like that, then we good.
by chulett
Thu Apr 05, 2012 12:57 pm
Forum: General
Topic: how to get end timestamp in DSJOB
Replies: 7
Views: 2290

The transformer would be 'too soon' as the job would still be running. Technically, the job is still running when it hits the 'After Job' section but you could get it there using the API - look at the documentation for DSGetJobInfo() and one of the InfoType values should get you the ending timestamp...
by chulett
Thu Apr 05, 2012 12:13 pm
Forum: General
Topic: need unix script
Replies: 20
Views: 5568

You don't need a script for that, just the 'move' command does a rename in UNIX. At its most basic: mv <old_name> <new_name> You'd have to be more specific as to exactly how you want it renamed to get more specific help. You could also pass in the 'timestamp' to use as a Job Parameter and then inclu...
by chulett
Thu Apr 05, 2012 12:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem of data trunction
Replies: 11
Views: 3674

I asked if you saw the 'truncation' outside of DataStage, not what 'View Data' shows.