Search found 42189 matches

by chulett
Thu Jan 15, 2009 8:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Columns
Replies: 17
Views: 5346

Hmmm... on the Server side, there is an option to "Ignore row truncation warnings" which would give you that very behaviour - read the first x columns as defined in the stage and ignore the fact that there are more in the file. Is there an equivalent on the PX side? :?
by chulett
Thu Jan 15, 2009 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: list project\jobs from clientside - dsjob.exe
Replies: 7
Views: 5260

You'd have to fully spell that out on the command line - server, user, password, etc. or take advantage of the -file option. Come to think of it, I don't believe I've ever actually tried to run a job from my PC but have scripted it into things to list project and job names, for instance.
by chulett
Wed Jan 14, 2009 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter for XML Output File Path
Replies: 6
Views: 2368

No need, just use the parameter(s) directly in the stage.
by chulett
Wed Jan 14, 2009 6:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run UV SQL via DataStage
Replies: 11
Views: 5392

Right, missed that. INSTANCE not INTERFACE.
by chulett
Wed Jan 14, 2009 6:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compared DS server version 8 with version 7.5
Replies: 3
Views: 1719

Of course you did. :wink:
by chulett
Wed Jan 14, 2009 6:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: list project\jobs from clientside - dsjob.exe
Replies: 7
Views: 5260

I wonder what in the heck I was thinking of. I distinctly remember having to 'borrow' something from another colleague who's server was on Windows, I'll need to go back thru my email archives. :? I'm wondering if I'm thinking of older versions of the client, 6.x perhaps. I believe the inclusion of d...
by chulett
Wed Jan 14, 2009 5:59 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Do you actively use an RSS Reader?
Replies: 10
Views: 5518

I'm using a Trillian Pro plugin called Good News.
by chulett
Wed Jan 14, 2009 4:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg. Inter process row buffering
Replies: 6
Views: 7746

Separately, inter-process row buffering can have a positive performance impact on "some" Jobs..... but apply sparingly and carefully. I would never use it as a default at the Project level. :!: Heed these words, children. And in my own personal experience, I've found "some" to m...
by chulett
Wed Jan 14, 2009 4:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run UV SQL via DataStage
Replies: 11
Views: 5392

You removed (or did not add) the "ON MODS" part of my posted sql, hence the error.
by chulett
Wed Jan 14, 2009 4:13 pm
Forum: General
Topic: Check to see if a file exists
Replies: 3
Views: 11287

You could use the Execute Command stage to do (off the top of my head) a "test -f filename" on the file and then conditionally run the job based on the result. Or perhaps "-s" if you need to check if it exists and is not empty as well.
by chulett
Wed Jan 14, 2009 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Run UV SQL via DataStage
Replies: 11
Views: 5392

Try...

Code: Select all

SELECT INSTANCE, DTM, MODIFIER, REASON FROM UNNEST DS_AUDIT ON MODS WHERE CLASS = '2' AND INTERFACE = 'MYJOB'
Not sure why there was a second 'where' in there. :?
by chulett
Wed Jan 14, 2009 3:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project warning count environment variable
Replies: 4
Views: 2113

As noted, there isn't one. The only "override" setting is done at the client (individual PC) level as an option in the Director. There is no project level equivalent.

ps. Didn't really answer my tangential question as to exactly what you're doing in this script, but that's ok.
by chulett
Wed Jan 14, 2009 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project warning count environment variable
Replies: 4
Views: 2113

There isn't one... but that doesn't mean you can't create one for that purpose, I suppose. I'm curious, what 'project setting values' are you fetching in your script and how are you using them? Seeing as how they are project level environment variables, those variables are automatically created in e...
by chulett
Wed Jan 14, 2009 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enterprise FTP - truncating columns
Replies: 6
Views: 1934

You really need to try it from your DataStage server, not your local PC. And was this an ASCII or binary transfer?