Search found 66 matches

by dstest
Mon May 26, 2008 6:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding In Link sort
Replies: 3
Views: 1189

I have a file which contains 40million records and i need to sort the file 5 times using different keys and then take the unique record for each group. So what is the best way to acheive this whether to use inmemory sort and take unique record or sort by using external sort stage and keed unique rec...
by dstest
Mon May 26, 2008 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding In Link sort
Replies: 3
Views: 1189

Regarding In Link sort

Is in link sort use datastage scratch space or memory.

Thanks
by dstest
Tue May 20, 2008 9:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: viewing data from lookup fileset stage
Replies: 2
Views: 1065

viewing data from lookup fileset stage

Is there any command to view data from lookup fileset stage.

Thanks
by dstest
Sun May 11, 2008 5:44 pm
Forum: General
Topic: Setting Compiler options
Replies: 3
Views: 2335

Now i installed VisualC++ 2005 express editiotion.Still I am getting the following error. Output from transformer compilation follows: ##I IIS-DSEE-TFCN-00001 16:39:11(000) <main_program> IBM WebSphere DataStage Enterprise Edition 8.0.1.4458 Copyright (c) 2001, 2005-2007 IBM Corporation. All rights ...
by dstest
Sun May 11, 2008 3:21 pm
Forum: General
Topic: Setting Compiler options
Replies: 3
Views: 2335

Setting Compiler options

I installed Visual Studio .NET 2008 Express Edition C++ .Still i am unable to compile parallel jobs with transformer.Can any one please tell what are the values i need to user for the following env variables.


APT_COMPILEOPT
APT_COMPILER
APT_LINKER
APT_LINKOPT

Thanks for your help
by dstest
Wed May 07, 2008 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Division
Replies: 2
Views: 1432

Division

Hi,

I want to divide 364/30 and i am expecting valu 12.13,But when i did in a transformer by putting data type as decimal i am getting 12.00.What i need to do to get the exact value instead of zeros.

Thanks
by dstest
Sun May 04, 2008 9:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: universe query to get all stage names used in a job
Replies: 4
Views: 1582

universe query to get all stage names used in a job

HI,

Is there any way to get the stage names like (oracle,Tranformer,Aggregator,Join,Lookup) used in a particular job.

Thanks
by dstest
Mon Feb 04, 2008 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need logic
Replies: 7
Views: 3250

need logic

I have 6 columns in my file.

ID,CODE1,CODE2,CODE3,CODE4,CODE5
123,300,200,500,600,20
123,400,40,30,300,20

I need the output like below

ID,CODE1,CODE2,CODE3,CODE4,CODE5
123,300,200,500,600,20,400,40,30,300,20

Can any one have any idead about how to do this in datatsage

Thanks
by dstest
Thu Jan 24, 2008 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do i check whether a particular patch installed or not
Replies: 3
Views: 1101

How do i check whether a particular patch installed or not

Hi,
we applied a patch on our dev system and in test i need to check whether the same patch is applied or not.Is there any way to find out ?

Thanks
by dstest
Sun Dec 09, 2007 9:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing COlumn name as parameter
Replies: 1
Views: 2241

Passing COlumn name as parameter

I need to pass Column name as a parameter to do some claculation.

Ex : Linkname.Columnname.

Here Linkname is always same but Column name is different.I want to Pass this as a parameter.Is it possible in datastage if i use Runtime column propagation and with out RCP also.

Thanks
by dstest
Sun Nov 18, 2007 6:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how can we check password is encrypted in a job
Replies: 1
Views: 896

how can we check password is encrypted in a job

HI,

Is there any way we can query DS tables to check whether password is encrypted in jobs or not, because i need to check all the jobs before moving into PROD .

Thanks
by dstest
Thu Nov 08, 2007 11:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exporting particular category of jobs using command line
Replies: 4
Views: 1671

By using dsjob command can we get list of jobs in a particular category?
by dstest
Wed Nov 07, 2007 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: exporting particular category of jobs using command line
Replies: 4
Views: 1671

exporting particular category of jobs using command line

Hi,

I want to export specifi category of jobs through command line.Can you one tell what is the command line for that.

Thanks
by dstest
Tue Nov 06, 2007 4:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem calling routine using routine activity
Replies: 2
Views: 1201

Problem calling routine using routine activity

I created a routine and in the routine i have a code like below. Ans=1 when i call this routine using routine activity i am getting the following warning and is aborting. seqTest.Test.JobControl (@Routine_Activity_38): Routine DSU.Test did not finish OK, return code = '1' seqTest.Test.JobControl (@R...
by dstest
Sun Nov 04, 2007 9:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating same sequence number for a similiar group values
Replies: 2
Views: 884

Generating same sequence number for a similiar group values

Hi, I have a input data like below ID,ID1 5,100 5,200 5,300 6,400 6,500 6,600 1,600 1,700 I need the output like below. SEQID,ID,ID1 1,5,100 1,5,200 1,5,300 2,6,400 2,6,500 2,6,600 3,1,600 3,1,700 For similar IDs i need to assing same sequence number.Can any one please help me how to implement this ...