Search found 15603 matches

by ArndW
Fri Nov 17, 2006 8:40 am
Forum: General
Topic: Universe Stage
Replies: 11
Views: 5868

Lol - I was thinking of complex solutions and locking that is done differently in SQL for hashed files... and the answer was so simple!
by ArndW
Fri Nov 17, 2006 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MetaData Mismatch Warning
Replies: 30
Views: 6086

Let's see... you remove the SUMT() and it works, add the SUM() and you get a DS warning... so wouldn't it seem that this is what DS is doing?
by ArndW
Fri Nov 17, 2006 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: All objects in the Job become PLUG objects.
Replies: 9
Views: 3122

I've seen that limit hit here with just over 3,000 jobs. This is because of all the other type 30 (Dynamic) files created. The temporary solution was to change all LOG and STATUS type hashed files to type 2 - then go about making the project smaller. Too many CopyOfCopyOfCopy... jobs out there.
by ArndW
Fri Nov 17, 2006 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MetaData Mismatch Warning
Replies: 30
Views: 6086

Sure, you can sign up for premium content at any time you wish to see a lot of informational and (hopefully) helpful content. AMT(SUM) is a new column and not in your DDL, it can have different metadata. When you are sure that a warning message is handled appropriately, you can demote it to informat...
by ArndW
Fri Nov 17, 2006 5:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MetaData Mismatch Warning
Replies: 30
Views: 6086

abhilashnair,

TheBird is using an aggregator stage, so the direct solution there does not apply, but it does illustrate what could be your problem. The metadata of "AMT" is not guaranteed to be the same as that for "SUM(AMT)" from the DB.
by ArndW
Fri Nov 17, 2006 5:17 am
Forum: General
Topic: Universe Stage
Replies: 11
Views: 5868

My first thought is that your job is waiting on locks that it will never get. I vaguely recall having had a similar problem in the past. It is easier in this case to use a hashed file stage and change the query syntax around a bit to read "WITH NAME UNLIKE \\... AND READONLY EQ 'NRO'" in the selecti...
by ArndW
Fri Nov 17, 2006 5:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP Enterprise stage error
Replies: 5
Views: 1736

does your windows box have an active FTP server?
by ArndW
Fri Nov 17, 2006 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switch v/s filter stage
Replies: 8
Views: 3143

In this case the switch stage is exactly tailored to what you want to do and will be more efficient. If you have a large percentage of records that are dropped then the filter stage will be more appropriate, but if each row that comes in to the stage is passed on depending upon the values in one col...
by ArndW
Fri Nov 17, 2006 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: E TFDR 000001 (002)- not able to view the data loaded
Replies: 2
Views: 1254

I tend to ignore the link colors in the Designer as I've had cases where the run information in the Designer and that in the Director log are different. The log file information is correct. The error message is pretty clear, the data set you are trying to read does not exist. What error message do y...
by ArndW
Fri Nov 17, 2006 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pass valus to UNIX script fromDS control job
Replies: 9
Views: 1711

Das, the documentation is really helpful in cases like this, look at the Ascential DataStage BASIC Guide on pages 6-158 and 6-159
by ArndW
Fri Nov 17, 2006 4:57 am
Forum: General
Topic: How to export the job log of a particular job?
Replies: 5
Views: 3921

the dsjob program is called from your UNIX shell. You will need to have your environment set up correctly in order to do this; i.e. issuing the ". ./dsenv " command in your DataStage home directory and either ensuring that $DSHOME/bin is in your path or calling dsjob with an absolute path.
by ArndW
Fri Nov 17, 2006 4:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not being able to import data from a fixed width flat
Replies: 6
Views: 1662

Could you explain "not working"? Your errors should be different with fixed width columns.
by ArndW
Thu Nov 16, 2006 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: fttp script
Replies: 6
Views: 1248

my thoughts are that mput is not in your path
by ArndW
Thu Nov 16, 2006 11:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Roundup routine
Replies: 7
Views: 1639

I would just use simple math; you can write your own roundup routine:

Roundup(Value,Places)

Code: Select all

   Shift = 10**Places
   Ans = INT(Value*Shift)/Shift


Hmmm, this could actually be an inline transform as well.
by ArndW
Thu Nov 16, 2006 10:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Roundup routine
Replies: 7
Views: 1639

The INT() function will return 1 for 1.499 and 2 for 1.50001. Is this what you are looking for?