Search found 53125 matches
- 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...
- 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
- 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...
- 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
- 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
0x30 (48 decimal) is the ASCII code for "0", 0x31 (49 decimal) is the ASCII code for "1".
Code: Select all
Iconv(ThatResult, "MX0C")0x30 (48 decimal) is the ASCII code for "0", 0x31 (49 decimal) is the ASCII code for "1".
- Mon Dec 20, 2004 12:49 am
- Forum: Site/Forum
- Topic: Premium Services on the DSXchange
- Replies: 16
- Views: 11128
- 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 ...
- 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
- 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...
- 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 ...
- 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...
- 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
- 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
- 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
- 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...