Search found 53125 matches
- Tue Mar 27, 2012 2:48 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Creating a single Record
- Replies: 3
- Views: 1016
- Tue Mar 27, 2012 2:46 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to find last day of the monthyear in server jobs
- Replies: 4
- Views: 2163
- Tue Mar 27, 2012 3:32 am
- Forum: General
- Topic: Using job having paramter set from command prompt
- Replies: 2
- Views: 1067
Refer to parameters in Parameter Sets using "dot notation".
Use values file by specifying the values file name as the "value" of the parameter set.
Code: Select all
-param setname.paramname=valueCode: Select all
-param setname=valuesfilename- Tue Mar 27, 2012 3:30 am
- Forum: General
- Topic: Execution Order...
- Replies: 1
- Views: 823
- Mon Mar 26, 2012 11:02 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Process id (12345) appears to have hung
- Replies: 12
- Views: 4558
What a piece of luck to have struck process ID 12345! The problem may not be with your configuration file, it's with the setting of the TMPDIR environment variable. What is the value of %TMPDIR%? Are the scratch disks identified in the configuration file local, or NFS mounted? Local disks for scratc...
- Mon Mar 26, 2012 9:41 pm
- Forum: General
- Topic: what is diferrence between 8.0 and 8.5
- Replies: 2
- Views: 1003
Re: what is diferrence between 8.0 and 8.5
0.5srinivasudatastage wrote:what is diferrence between 8.0 and 8.5
- Mon Mar 26, 2012 9:37 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Compiler settings for new installation
- Replies: 27
- Views: 15654
I have a new 8.7 installation on Windows Server 2008 R2 INCLUDE=E:\IBM\SQLLIB\INCLUDE;E:\IBM\SQLLIB\LIB;C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\include;C:\Program Files\Microsoft SDKs\Windows\v7.0\Include LIB=C:\Program Files (x86)\Microsoft Visual Studio 9.0\VC\lib;E:\IBM\SQLLIB\LIB; ...
- Mon Mar 26, 2012 9:24 pm
- Forum: General
- Topic: Parameter Set usage?
- Replies: 2
- Views: 1032
- Mon Mar 26, 2012 3:37 pm
- Forum: IBM QualityStage
- Topic: Explicible UNCERT result?
- Replies: 4
- Views: 2534
- Mon Mar 26, 2012 3:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Auto Purge of Log Files
- Replies: 10
- Views: 4737
- Mon Mar 26, 2012 3:11 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Auto Purge of Log Files
- Replies: 10
- Views: 4737
- Mon Mar 26, 2012 3:10 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Substring in Filter
- Replies: 8
- Views: 5320
- Mon Mar 26, 2012 3:08 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to find max sal using remove duplicate stage
- Replies: 4
- Views: 1812
Re: How to find max sal using remove duplicate stage
That's like asking how to join water pipes using a screwdriver. What ever happened to "the right tool for the right job"? Why using this particular stage type, whose function - I should not have to say - is NOT about finding maximum values.nravikrishna wrote:to find max sal using remove duplicate stage
- Mon Mar 26, 2012 3:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Convert multiple records in to single record
- Replies: 5
- Views: 1516
Please tidy up your Code so that everything's aligned properly. Use the Preview button till you have it right, then Submit. Is there always five weeks worth of data? That is, five rows in the input stream? If so there's an easy solution using a Transformer stage to construct the wide record, and an ...
- Mon Mar 26, 2012 3:01 pm
- Forum: General
- Topic: Metadata, Universe & TCL
- Replies: 4
- Views: 1392
EVAL always needs double quotes, and particularly if the contained expression uses single quotes.
works fine for me. (Note that field #1 is always "" because CATEGORY always begins with "|".)
Code: Select all
SELECT DISTINCT EVAL "FIELD(CATEGORY,'\',2,1)" FROM DS_JOBS;