Search found 297 matches

by jhmckeever
Tue Apr 11, 2006 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling a windows application
Replies: 11
Views: 3635

For what it's worth, on my current project we're connecting HP-UX and Windows using a pair of custom sockets applications (client and server) each written in C. The client (running on HP-UX) is wrapped as a custom stage for DataStage use, and the server (which just sits awaiting a connection request...
by jhmckeever
Tue Apr 11, 2006 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help rectify the Warning
Replies: 2
Views: 1023

praburaj, You would better serve yourself by starting with the <a href="http://www.dsxchange.com/search.php">SEARCH</a> functionality on this site. Because I'm a helpful kinda guy here's two results to get you started ... :wink: http://www.dsxchange.com/viewtopic.php?t=99569 http://www.dsx...
by jhmckeever
Mon Apr 10, 2006 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting name into title, forename, surname
Replies: 4
Views: 2430

This is precisely the task that QualityStage performs, almost out of the box. You can invoke a QualityStage standardization task through a QualityStage stage in a DataStage job. The USNAME/GBNAME rulesets achieve this with little or no customization effort required. You can play with your examples ...
by jhmckeever
Wed Mar 15, 2006 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Mq Fatal error
Replies: 3
Views: 1843

ray.wurlod wrote:Presumably one of the MQ Series manuals would have decoded that error code (2031) to mean incorrect user ID or password. :wink:
... like one of the MQ manuals located here:

http://www-306.ibm.com/software/integra ... index.html

J. :)
by jhmckeever
Tue Mar 14, 2006 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any tool for DS work as "diff" command for unix?
Replies: 3
Views: 2109

Hi tomato (... now THERE's a line you don't type everyday)

The simplest solution would be to use a tool to compare the DSX files of each job - exported using DataStage Manager.

There are plenty of decent shareware tools ('ExamDiff' being one) that will perform the job.

HTH,
John.
by jhmckeever
Tue Mar 07, 2006 6:41 am
Forum: IBM QualityStage
Topic: Miscellaneous queries on QualityStage ( also DataStage)
Replies: 1
Views: 2518

Hi aaikat, 1.Can we define new rule set (other than the ones we have for Name,Address,Area) in QS .If 'yes' how ? In QualityStage Designer, go to menu option "Rules" -> "Standardization Rules Management". From the dialog you can copy an existing ruleset which will create a new fo...
by jhmckeever
Fri Feb 03, 2006 2:58 am
Forum: IBM QualityStage
Topic: Problem starting QSRTMNGR
Replies: 3
Views: 3574

Re: Problem starting QSRTMNGR

Thanks Ray.

For anyone being troubled by this issue, I found the following post invaluable:

viewtopic.php?t=92026&highlight=netstat+ipcs

I don't think I need any more reasons to sign up for Charter Membership! Now, where's my credit card ...

J.
by jhmckeever
Thu Feb 02, 2006 6:35 am
Forum: IBM QualityStage
Topic: Problem starting QSRTMNGR
Replies: 3
Views: 3574

Re: Problem starting QSRTMNGR

<h1> DOH! </h1> I had a phantom process hanging around which was preventing the correct starting of qsrtmngr. Killed the process and started qsrtmngr without problems. Thought I'd leave this mini-thread here (rather than delete it) in case anyone encounters the same problem in the future. Keep up th...
by jhmckeever
Thu Feb 02, 2006 6:15 am
Forum: IBM QualityStage
Topic: Problem starting QSRTMNGR
Replies: 3
Views: 3574

Problem starting QSRTMNGR

Hi Folks, Has anyone encountered the following problem when starting QSRTMNGR? I've been running QS jobs from DataStage 7.1r2 without problems but this morning I suddenly found the QSRTMNGR is no longer running and I can't get it restarted - hence I can't use the QS-for-DS plugin. Here's the output:...
by jhmckeever
Tue Aug 16, 2005 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapper Command Line Parameters
Replies: 0
Views: 890

Wrapper Command Line Parameters

Hi All, I'm building (as a test) a wrapped called stage using the following code: int main( int argc, char **argv ) { for ( int j=0 ; j < (argc) ; j++ ) { printf ("%s ", argv[j]); } printf ("\n"); return 0; } ... which as you'll see simply writes the command line arguments to std...
by jhmckeever
Tue Aug 02, 2005 7:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp using shared library
Replies: 3
Views: 2506

Welcome aboard! :D You nailed it with "it doesn't matter so long as it's somewhere in $SHLIB_PATH". Thanks Very Much for that Ray. I got my paths sorted out but am still having issues! :( I suspect my problem lies in my compiler options. In the Build/Advanced tab I'm specifying my linker ...
by jhmckeever
Mon Aug 01, 2005 11:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BuildOp using shared library
Replies: 3
Views: 2506

BuildOp using shared library

Hi All, I'm attempting to integrate QAS Batch (address cleaning) in DSEE using a BuildOp. This is done using a QAS supplied shared library and header file. My BuildOp references the header file and generates without any problems but gives me the following error when I try and execute it: main_progra...