Search found 42189 matches

by chulett
Thu Oct 21, 2010 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Autosys and datastage interaction
Replies: 3
Views: 1669

You would need to write one yourself. And this would be a script, so run at the operating system level in korn or bash or your shell of choice. Hmmm.... there is at least one posted here, probably way more than most people need but let me see if I can turn it up... Here: http://www.dsxchange.com/vie...
by chulett
Thu Oct 21, 2010 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source target mapping
Replies: 6
Views: 2135

Simply don't include D and E in your target stage. Either that or specifically map NULL to them.
by chulett
Thu Oct 21, 2010 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Journaling AS/400 tables
Replies: 3
Views: 1725

Sounds more like a DBA question. If you ask them and let us know the syntax you would need for that, we can help you get it into the stage properly...
by chulett
Thu Oct 21, 2010 10:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UNIQUE KEY constraint
Replies: 1
Views: 1171

You really can't compare Access behaviour with other databases like that. You should pre-screen your data and only issue the update for rows you know won't violate that contraint.
by chulett
Thu Oct 21, 2010 10:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic password in odbc.ini
Replies: 7
Views: 2993

I don't believe so, have never heard of such capability... but then I've never done a crap-ton of ODBC. Anyone?
by chulett
Thu Oct 21, 2010 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Autosys and datastage interaction
Replies: 3
Views: 1669

DataStage is just another application that AutoSys (or any other Enterprise scheduler) can control. And by 'control' I mean launch and monitor jobs and control dependancies between scheduled events - DataStage or otherwise. Most of us have some kind of "start DataStage job" script that wra...
by chulett
Thu Oct 21, 2010 8:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Xml output stage
Replies: 2
Views: 1208

Set the 'Data Element' to XML for the chunk data so it knows it is already XML and doesn't make that conversion.
by chulett
Thu Oct 21, 2010 8:04 am
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Passing user defined Header to WebService
Replies: 6
Views: 10346

What version would that be? Perhaps a fix pack or six is in your future. :wink:
by chulett
Thu Oct 21, 2010 8:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic password in odbc.ini
Replies: 7
Views: 2993

Leave them blank there, no need to expose them. Create job parameters (or a parameter set) for the required information - database, user, password (etc) - and then leverage those parameters in your database stages, ODBC or otherwise.
by chulett
Thu Oct 21, 2010 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Stage issue
Replies: 5
Views: 11321

I have no idea if this is the issue or not, but there seem to have been quite a number of patches for Connectors from what I've read here - are you up-to-date on your fix packs?
by chulett
Thu Oct 21, 2010 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Close command-UPDATE
Replies: 4
Views: 1230

"Any table" - as long as it is in the connected database and you have the required permission, of course. Not necessarily "any SQL", however.
by chulett
Thu Oct 21, 2010 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Filter stage date condition
Replies: 3
Views: 3142

I don't know if it is "better" or not, but if their requirement is to do it "in job" then as anbu noted (with the caveat regarding their string format) what they are doing is just fine - dashes or no dashes.
by chulett
Thu Oct 21, 2010 7:21 am
Forum: General
Topic: Read-Only access to Director
Replies: 3
Views: 1510

So... you are looking for a way to... view job logs? Check job status? What are you after with this access?
by chulett
Thu Oct 21, 2010 7:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to add an header and trailer to a file through datastage
Replies: 4
Views: 3374

adityavarma wrote:Can we write an unix script and call through the execute command activity?
Sure, but you don't even "need" a script for this - just do the cat work directly there.
by chulett
Thu Oct 21, 2010 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Call a sql script in ds job
Replies: 4
Views: 1547

If they are worried about not 'seeing' anything on the canvas, put an annotation there stating where/what is going on. Otherwise you'll need a single record source, a routine to call DSExecute() and then some kind of a target which could be a flat file directed to /dev/null, I suppose.