Search found 42189 matches

by chulett
Mon Jul 03, 2006 11:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Levels of Sequences - Performance
Replies: 6
Views: 1601

I would imagine that 20 simultaneous jobs would kill a lowly P3/500 processor, that's positively ancient. You sure that's what you have on your server? Regardless, you need to figure out your threshold of pain - how many jobs it will support running at any given time. Then craft your job control to...
by chulett
Mon Jul 03, 2006 11:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Levels of Sequences - Performance
Replies: 6
Views: 1601

It's not about the 'levels of Seqeunces' - it's about the number of simultaneously running jobs. How many are we talking about here at any one time?
by chulett
Mon Jul 03, 2006 11:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Most efficient way to check a range of character values
Replies: 10
Views: 1917

Most efficient way to check a range of character values

I've seen plenty of inefficient methods but I'm looking for the most efficient way out there with the tools at hand. I've used match or alpha when I need to perform a simple alphabetic character check - but how about a range check? Something like when the field must be from 'A' to 'M' inclusive? Loo...
by chulett
Mon Jul 03, 2006 7:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Stage by itself
Replies: 8
Views: 2486

Re: Command Stage by itself

I am trying to have a Command Stage by itself without any links so that I can activate this DOS command, which I want to be a job by itself. If I am correct this is not possible, are there ways that I can have links to or from the Command Stage to stages that do nothing? Just for completeness, this...
by chulett
Mon Jul 03, 2006 6:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to configure Data Stage 7.5.1 A for Veritas Cluster(VCS)
Replies: 5
Views: 1617

What kind of help are you looking for? If you are asking if I have scripts to hand over, sorry but the answer is 'no', that having been over 4 years and a handful of clients ago. Interestingly enough, the primary architect of those scripts was my DBA, quite the Script Wizard. He required very little...
by chulett
Mon Jul 03, 2006 6:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to connect to the database - PASSWORD MISSING
Replies: 4
Views: 5019

Not familiar with how this all works for DB2, but it looks like this is the core of your problem. Not anything to do with a 'missing' password:

>DB2 Driver Embedded SQL message: SQL1024N A database connection does not exist. SQLSTATE=08003
by chulett
Sun Jul 02, 2006 2:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJE_REPERROR
Replies: 2
Views: 2413

Post your perl script.
by chulett
Sat Jul 01, 2006 7:13 am
Forum: Site/Forum
Topic: Two Tech Tips uploaded
Replies: 1
Views: 2513

Two Tech Tips uploaded

Sorry, not sure where else to put this such that it wouldn't almost immediately disappear in the deluge. And since I'm still getting pinged on this, I'm going to copy the relevant information from this post to here so it stands out a little more... Ok... as mentioned earlier, I'm not really excited...
by chulett
Sat Jul 01, 2006 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling SQLServer StoredProc
Replies: 6
Views: 2295

... depending on your exact 7.x version of DataStage. Initially it was only available for Oracle, with others like SQL Server added in a more recent release.
by chulett
Sat Jul 01, 2006 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a webservice from Datastage version 7.1
Replies: 7
Views: 5140

Re: How to call a webservice from Datastage version 7.1

Just to add some extra information: With Version 7.x there are additional packs you have to "buy", one for Java and one for Web Services. My understanding is that both are 2-way, meaning you can call a DataStage job "as a Web Service", or a DataStage job can call a Web Service (same description for...
by chulett
Sat Jul 01, 2006 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer in PX job
Replies: 23
Views: 11008

Thanks Hadi, always appreciated when someone posts solutions like that. :D
by chulett
Sat Jul 01, 2006 6:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML-Input
Replies: 4
Views: 1770

Unless the XML stages are different in PX, there's no way to supply anything like a filename or URL directly in the Input tab. You need to pass it in just like you've been doing in a specific field. However, the Folder stage in Server jobs doesn't provide any magical functionality other than reading...
by chulett
Fri Jun 30, 2006 6:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call a webservice from Datastage version 7.1
Replies: 7
Views: 5140

I was assuming they had added additional 'web service' related functions, but don't recall seeing anything like that documented anywhere. It sure looks like we've found some, cherry picking out of your pasted code: getWSStatusReport setWSSOAPAction setWSEncodingStyle setWSRequestNSTable setWSRespons...
by chulett
Fri Jun 30, 2006 6:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a left buffer on a column
Replies: 14
Views: 3001

You don't "have to" multiply by 100, although you certainly can. I know what I posted for the FMT command works as I tested it with your input and got your desired output. It's not like we've never helped people do this before. Of course you need to define the output as some sort of character field ...
by chulett
Fri Jun 30, 2006 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a left buffer on a column
Replies: 14
Views: 3001

Oh, trust me - I know what they want it to look like... and I said it was from memory. Simple enough to build a little test harness to check. Turns out we need to combine our answers: FMT(DSLink3.CURNT_BAL_AMT,"17'0'R02") From the help: n[m] n is a number, 0 through 9, that specifi...