Search found 5168 matches

by kumar_s
Fri Jan 05, 2007 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Job hangs for a while and then aborts
Replies: 10
Views: 2196

Welcome to Dsxchange!!! :D

Was the data that been fetched is more that 2GB?
Do a reset of the job and look for "From the Previous log..." event, which will give you more information which may not be available in the previous run log.
by kumar_s
Fri Jan 05, 2007 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Install Issue
Replies: 8
Views: 5873

With this stage, was the home directory home/dsadm/Ascential/DataStage/DSEngine been created?
Is seems like waiting for to press Return. Have you tried hitting Return at the last step?
by kumar_s
Fri Jan 05, 2007 1:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding wait for file activity
Replies: 3
Views: 1095

Delete C:\HashFiles\vijay before you trigger you job, and recreate the file while you job waits for the file. You ll find everything happening as expected. :wink:
by kumar_s
Fri Jan 05, 2007 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem using ODBC connection
Replies: 7
Views: 6184

As specified in the error, have you tried the user with full permission. Try with the user id through which you installed.
by kumar_s
Fri Jan 05, 2007 12:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Drop Index
Replies: 4
Views: 2685

If you are going for Upsert method, droping index before loading will inturns degrade the performance. Upsert should look for the presence of key in the table before loading into it. Index will help for this.
by kumar_s
Fri Jan 05, 2007 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What are the px and como directories in DS PX/EE editions
Replies: 6
Views: 1714

Log into $DSHOME if not set, use cd `cat /.dshome` to go to your Datastage Home directory. And find where your project been installed. You can find from your Adminstrator client by selecting the project. And try to explore. I ment exploration is just listing the existing directories. And noting else.
by kumar_s
Thu Jan 04, 2007 10:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: performance tuning
Replies: 2
Views: 842

If your requirement is to use the data for more that once, rather i would say twice in you job desing, you can approach the dataset. You need to populate dataset using one job, which will have its own i/o, dataset will also be read and written. But will parrellel execution. So first explain on whats...
by kumar_s
Thu Jan 04, 2007 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Limit the number of records
Replies: 4
Views: 1962

Force compile to reduce records :roll:
Are you getting confused with DumpSore?
What is your job desing?
While running the job, you will have the limits like 'Stop stages after n rows' you can use that.
by kumar_s
Thu Jan 04, 2007 10:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ExecCommand output value
Replies: 44
Views: 10563

May be your upstream jobs activity might produce some file For testing purpose, just check if you get the result as expected if you execute by commenting the file count. #!/bin/ksh typeset -i a=0 typeset -i b=0 #a=$(ls /path1/*.txt 2>/dev/null | wc -l) #b=$(ls /path2/*.txt 2>/dev/null | wc -l) if ((...
by kumar_s
Thu Jan 04, 2007 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generate multiple rows?
Replies: 11
Views: 3091

Hi Anu,
Again where you get these case from? Perhaps you havent mentioned here.
There are several other ways of acheiving this. http://www.dsxchange.com/viewtopic.php?t=88639 You can create a parallel routine as well.
by kumar_s
Thu Jan 04, 2007 6:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Node pools on SMP
Replies: 3
Views: 896

Still you ll end up in using all the CPUs.
by kumar_s
Thu Jan 04, 2007 6:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ExecCommand output value
Replies: 44
Views: 10563

What is your director log shows for the Command Output? If you give condition for 2, will that work to execute notification activity?
by kumar_s
Thu Jan 04, 2007 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ExecCommand output value
Replies: 44
Views: 10563

What is the output you are getting? If you try with A and B, where you getting B instead of A?
by kumar_s
Thu Jan 04, 2007 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ExecCommand output value
Replies: 44
Views: 10563

Try printing the values other that 0 and 1, say A and B and check for the same. It will help you identify if 0 is returned due to other chances. Check the output of the CommandOutput in datastage as well.
by kumar_s
Thu Jan 04, 2007 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Whats does this mean?
Replies: 13
Views: 3660

If the Modify stage is just of the give purpose, why cant't both transformer and Modify stage be clubbed? You can perform the task in Transformer stage itself.