Search found 53125 matches

by ray.wurlod
Mon Dec 20, 2004 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get job name for list of hash file
Replies: 22
Views: 6642

The second column in your result set (in the SELECT clause) is not included in the GROUP BY part of the query or does not have a set function applied to it. But there's no reason to group; ORDER BY will work as well. Thus there are three possible solutions. I prefer the first. The others may need fi...
by ray.wurlod
Mon Dec 20, 2004 3:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Querying SQL Server binary fields via an ODBC stage
Replies: 3
Views: 950

Read the help on each, then tell me whether you discern any difference!
by ray.wurlod
Mon Dec 20, 2004 12:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic parameters.
Replies: 1
Views: 650

Seems to me that your best solution is a similar Job Sequence, but one which does not change the dates. Or, even better, runs a different routine to get the date parameter values from the log for the previous invocation of the job. In a production environment you should have no jobs or job sequences...
by ray.wurlod
Mon Dec 20, 2004 12:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get job name for list of hash file
Replies: 22
Views: 6642

Can't you simply omit and EVAL DS_JOBOBJECTS."@RECORD<6>" = 'MyHashFileName' so that all hashed file names are considered?
by ray.wurlod
Mon Dec 20, 2004 12:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Querying SQL Server binary fields via an ODBC stage
Replies: 3
Views: 950

Try

Code: Select all

Iconv(ThatResult, "MX0C")

0x30 (48 decimal) is the ASCII code for "0", 0x31 (49 decimal) is the ASCII code for "1".
by ray.wurlod
Mon Dec 20, 2004 12:49 am
Forum: Site/Forum
Topic: Premium Services on the DSXchange
Replies: 16
Views: 11128

And creation of custom code.

And specialised diagnosis services.

And a few others I'm too lazy (tired) to type up just now! :wink:
by ray.wurlod
Sun Dec 19, 2004 2:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use sftp
Replies: 2
Views: 852

Part of what makes sftp secure is that it does not allow redirection when supplying the password. You could try a "here script" (I've not done this so could not be certain). ftp $FTPHOST << -nomore $FTPUID $FTPPWD # other FTP instructions go here QUIT -nomore In this example I have used environment ...
by ray.wurlod
Sun Dec 19, 2004 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when Transformer included in Parallel Extender.
Replies: 5
Views: 1985

Good catch! I completely did not see that one. A blind spot, obviously.

But the lack of reject handling will continue to generate warnings too.
by ray.wurlod
Sun Dec 19, 2004 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Extender usage
Replies: 9
Views: 3413

I'm fully booked through to March. What you're seeking, and what we've made clear from our answers thus far to be a very difficult task to perform and requiring expert analysis, is not something that you would ordinarily expect to get for free. Would someone (some expert) volunteer to tune your data...
by ray.wurlod
Sun Dec 19, 2004 2:37 pm
Forum: IBM QualityStage
Topic: qsrtmngr - HELP!!!
Replies: 6
Views: 3635

We needed one because we used a non-default port number. It's expected to be in the QualityStage installation directory's bin sub-directory. $ find . -name mngr.cfg -print 2>/dev/null ./QualityStage/bin/mngr.cfg $ more ./QualityStage/bin/mngr.cfg # Quality Stage Real Time Manager Configuration File ...
by ray.wurlod
Sat Dec 18, 2004 5:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 201 Phantom 15431
Replies: 4
Views: 1524

I don't believe that validating jobs will create SDKSequences. This is because it is not represented as a stage in the job design. A better way to ensure that SDKSequences exists is to test one of the SDK Key Management routines. Open the routine, click the Test button, and fill in any value for the...
by ray.wurlod
Sat Dec 18, 2004 5:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuring Oracle Stage in Parallel Extender
Replies: 4
Views: 1639

I believe the check is to determine whether the table is partitioned.

Is there any reason why your DBA won't grant SELECT privilege? It's an entirely harmless privilege.
by ray.wurlod
Sat Dec 18, 2004 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Server Bulk Load Error
Replies: 4
Views: 1108

Well you've got a bit more. Row 10 is the culprit. Take a look at the data in row 10 of the load file, and see whether you can figure out why it can not be inserted. Perhaps a duplicate key value? Perhaps an invalidly formed date?
by ray.wurlod
Sat Dec 18, 2004 5:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Loading the Oracle Enterprise stage
Replies: 2
Views: 4753

A useful tool to know about is the oerr command, which can be used from the operating system prompt to determine the cause, and often a remedy, for a given error code. $ oerr ORA 604 00604, 00000, "error occurred at recursive SQL level %s" // *Cause: An error occurred while processing a re...
by ray.wurlod
Sat Dec 18, 2004 5:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when Transformer included in Parallel Extender.
Replies: 5
Views: 1985

The number of reject datasets "0"is less than the

The number of reject datasets "0"is less than the number of input datasets "1". This message is telling you that a DataStage PX design requires at least the same number of reject datasets as you have input datasets, even though the reject dataset may not be used, you have to specify it "just in cas...