Search found 297 matches

by jhmckeever
Tue Dec 08, 2009 6:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IA installation
Replies: 11
Views: 3678

Have you tried uninstallling before attempting the reinstalll?
by jhmckeever
Wed Nov 18, 2009 5:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not map table file
Replies: 3
Views: 2095

For someone seeking assistance you're not giving us much to go on are you!? :-)

Are you perhaps seeking a windows binary file editor that will enable you to modify executable headers?

Try <a href="http://tinyurl.com/ygsfs3h">this</a>.
by jhmckeever
Tue Nov 17, 2009 8:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HTTP download stage
Replies: 4
Views: 2167

Perhaps something employing the 'wget' command?

For text files you could employ the external source stage with a 'wget {URL}; echo {file}' combination to fetch from the web then echo the file.
by jhmckeever
Tue Nov 17, 2009 6:54 pm
Forum: General
Topic: Problem with permission
Replies: 11
Views: 5313

Unable to determine current working directory

Sorry to open an old wound, but has anyone experiencing this problem found a reliable way to reproduce (or better, fix) this issue? We're 8.1.0 on AIX6.1. We have the symptom described by the OP visible in our Director log, but cannot reproduce the command-line du behaviour demonstrated by Ray. Ray ...
by jhmckeever
Tue Nov 17, 2009 6:49 pm
Forum: General
Topic: istool deploy package - problem with REPLACE option.
Replies: 5
Views: 6667

Thanks Ray - The -preview seems OK on its own, but use of -repl or -replace either with or without -preview doesn't work. jmckeeve@myServer> istool deploy package -domain myServer -username myUsername -password myPassword -verbose -package DeployConnector -label Build091118.2 -datastage MyServer/Sys...
by jhmckeever
Tue Nov 17, 2009 5:39 pm
Forum: General
Topic: istool deploy package - problem with REPLACE option.
Replies: 5
Views: 6667

istool deploy package - problem with REPLACE option.

Hi Everyone, I'm trying to use istool to deploy a package to a target project. I want to re-deploy the package, performing a replacement of any existing jobs in the target project but I'm having problems with the 'replace' option when using 'istools deploy package': $> istool deploy package -domain ...
by jhmckeever
Sun Aug 23, 2009 7:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What's the advantage of Modify stage?
Replies: 5
Views: 2874

You might want to look at Andy Sorrell's Modify Stage video in the Learning Center:

learningcenter/video/ModifyStage.php
by jhmckeever
Tue Aug 18, 2009 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with FTP & Telnet
Replies: 2
Views: 1751

Hi Wayne,

On the Stage -> Properties tab, what do you currently have defined for the Telnet Prompts?

John.
by jhmckeever
Wed May 06, 2009 9:52 pm
Forum: Site/Forum
Topic: DSXchange integration with Twitter
Replies: 4
Views: 5437

I was thinking of DSXchange generating a single tweet as a new post gets submitted. I think one tweet for each udpate would be superfluous. The tweet could contain just the post's subject line (usually enough to pique interest) along with a tinyurl link to the post. Dennis could create individual tw...
by jhmckeever
Wed May 06, 2009 7:46 pm
Forum: Site/Forum
Topic: DSXchange integration with Twitter
Replies: 4
Views: 5437

DSXchange integration with Twitter

Hi All, Like many people I'm increasingly using twitter to manage my communuications and thought it would be useful if DSXchange posts could be forwarded as tweets. Are there any plans to Tweet the posts submitted to DSXChange? I notice that Dennis has a DSXchange <a href="http://twitter.com/DS...
by jhmckeever
Fri May 01, 2009 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: if else logic
Replies: 6
Views: 3097

Assuming you mean in a parallel transformer:

Code: Select all

If Left(InLink.okcucl,1) = '5'  Then '020'
Else If Left(InLink.okcucl, 2) = '65' Then '030'
Else '001' 
by jhmckeever
Wed Apr 15, 2009 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use XML file as a source file
Replies: 9
Views: 4321

Hi, There are a number of ways, depending upon your requirements, although the easiest will almost certainly be to use the XML Input stage. <a href="http://www.dsxchange.com/search.php">Search</a> for it on dsxchange. You can also read Ernie's excellent blog entry on the topic: http://dsre...
by jhmckeever
Wed Mar 11, 2009 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Standardize,0: Error occurred on line 96 of file .\RT_QS8\V0
Replies: 2
Views: 1278

Hi vasubabu, I'm sure contributors to this forum would love to help, however they'll need a little more information than "Error occurred on line 96' to make a diagnosis. How about posting a description of your QualityStage job, and the pattern that produced the problem? Also note that there is ...
by jhmckeever
Tue Mar 03, 2009 5:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do to pattern matching in stage variable
Replies: 10
Views: 4350

You said "like owner ,occupier,customer ..."

How many of these values do you need to look for and substitute?

J.