Search found 6797 matches

by DSguru2B
Fri Jun 01, 2007 7:35 am
Forum: General
Topic: Problem while working with UV -admin -info
Replies: 9
Views: 2616

No, not .uvconfig, dsenv.
Do the following

Code: Select all

cd `cat /.dshome`
. ./dsenv
bin/uv -admin -info
by DSguru2B
Fri Jun 01, 2007 7:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fluctuating Performance from Enterprise ODBC stage
Replies: 9
Views: 2161

Well, your record size seems to be large and hence this might be the optimal performance that your might ever get. It also depends upon your network traffic.
Same goes for inserts and updates as well. What database are you accessing with the ODBC stage?
by DSguru2B
Fri Jun 01, 2007 6:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config file query
Replies: 5
Views: 1143

You guessed it right Ray, you are the man. :wink:
by DSguru2B
Thu May 31, 2007 1:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Specifying the Parameter
Replies: 4
Views: 786

Great. I actually meant to write "job parameter", but for some reason wrote "stage variable". I edited my original post.
by DSguru2B
Thu May 31, 2007 1:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Specifying the Parameter
Replies: 4
Views: 786

Transformer is the only place in a job where job parameters are recognized by thier name alone and not with hashes. Remove the hashes and the quotes.
by DSguru2B
Thu May 31, 2007 1:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: which stage to use
Replies: 3
Views: 683

A single stage wont be enough. But you can design a job to do this. Pass your dataset through filter stage and filter on the second column value = "ABC" . This will give you the entire record for every key that has ABC . Load into a lookup file set if data size is small else load it into a dataset (...
by DSguru2B
Thu May 31, 2007 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: which stage to use
Replies: 3
Views: 683

SO in the entire dataset, if you find ABC in col2, then change col3 value of all associated with identical first col, and the rest of the data will have zero? Did I understand you correctly?
by DSguru2B
Thu May 31, 2007 11:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: 50 warning!!!
Replies: 9
Views: 3687

You can stick the -warn 0 option anywhere after the -run and before the Project name. Setting warning limit for a sequence job is enough for all its subordinate jobs.
by DSguru2B
Thu May 31, 2007 10:54 am
Forum: General
Topic: Checking For Existing Rows In an Input File Before Executing
Replies: 4
Views: 1170

You can find different ways of checking the file size by doing a search. Keywords of search are "check for empty file". Depending upon the result, you can branch your execution.
PS: It does not have to be a script, even a BASIC routine will do the trick. Search for it.
by DSguru2B
Thu May 31, 2007 9:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fluctuating Performance from Enterprise ODBC stage
Replies: 9
Views: 2161

Thanks Ray, I will give that a go. Strangely enough, our retrieval from the tables is now displaying similar levels of poor performance. Cheers, Stu My reply was to your problem stated above. If the select on a table is horribly slow, its more than likely due to back pressure cause by your target d...
by DSguru2B
Thu May 31, 2007 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config file query
Replies: 5
Views: 1143

Your most welcome.
by DSguru2B
Thu May 31, 2007 9:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Config file query
Replies: 5
Views: 1143

It will. The dataset, when created, holds the node information as well (File Descriptor File contains this info.) Hence, you need to stick to the same configuration for creating and reading a dataset. I believe there is another post out there on the same discussion.
by DSguru2B
Thu May 31, 2007 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to import orchestrate schema definition from database
Replies: 6
Views: 1190

After making the changes, you need to stop and start the datastage engine.
by DSguru2B
Thu May 31, 2007 9:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: decimal to float
Replies: 9
Views: 2307

You know what, dont give the second argument. By default DecimalToDecimal() takes in trunc_zero. Do the same with DecimalToDfloat(). Take out the second argument.
by DSguru2B
Thu May 31, 2007 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: record propagation
Replies: 3
Views: 919

It does not matter what the target is. You can also stage your output to a flat file and then from there load to your database. It does not matter.