Search found 23 matches

by cmueller
Tue Apr 05, 2005 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running/Restartable job hanging
Replies: 2
Views: 1779

In Director, select the job and then go to Job menu and then "Clear Status File" which will reset the status of the job to compiled.
by cmueller
Wed Jun 02, 2004 5:09 am
Forum:
Topic: metastage issues
Replies: 12
Views: 6318

Thanks Tom.
by cmueller
Thu May 27, 2004 11:49 am
Forum:
Topic: metastage issues
Replies: 12
Views: 6318

"What I have done to circumvent this limitation is to create several MetaStage repositories and then use the SendToDB feature to export critical meta data from each to a DB2 Central Repository which holds a custom meta model. " Tom, How did you get the send to database to go to one central...
by cmueller
Tue Mar 02, 2004 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML output with just a closing tag -- Urgent.
Replies: 2
Views: 1779

Do you mean an empty closing tag: <balance/>

If so, in the xmloutput stage, stage/transformation setting tab, set replace nulls with empty values and set empty element style to single tag(<tag/>)
by cmueller
Mon Jan 12, 2004 8:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS and XML
Replies: 4
Views: 2358

For DataStage 6 and later, there is a XMLPack with XMLInput, XMLOutput and XMLTranform stages. You may have to install this separately. There are also two older versions, XMLReader and XMLWriter which should have been installed with the product.
by cmueller
Mon Dec 29, 2003 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write XML tags which occur more than 1 time
Replies: 4
Views: 4330

Pipe any non repeating data to a hashed file stage, using serialno for the key. Then pipe repeating tags to the an xmloutput stage, and then to another hashed file stage to which you will write the repeating tags as xml chunks and use the serialno as key. It may look like this SerialNo:1 TotalPaymen...
by cmueller
Sun Oct 26, 2003 8:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Moving the VERSION Project
Replies: 7
Views: 4373

In addtion to copying the hash files, don't forget to copy the DICT for each file ( i.e., D_APM.VERSION).
You will need to create VOC entries for the three files, for example for APM.VERSION :

Line 1: F
Line 2: APM.VERSION
Line 3: D_APM.VERSION
by cmueller
Sat May 03, 2003 9:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage and ClearCase usage for change control?
Replies: 9
Views: 10634

I have been using DataStage with Clearcase to handle promotions from development to integration testing, user acceptance ( and eventually production). We have been checking in DataStage components by functional categories into Clearcase using XML. XML gives better visibility as to what has been chec...
by cmueller
Mon Jan 20, 2003 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To check for the Date Formats
Replies: 2
Views: 1520

Try: If Not(Arg1 Matches "2N":"/":"2N":"/":"4N") Then...
by cmueller
Thu Jan 09, 2003 8:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Forum Upgrade
Replies: 0
Views: 983

Forum Upgrade

The Tools4DataStage Discussion Forum has just been upgraded. The primary reason for the upgrade, other than keeping up with latest version, was password encryption.

If you run into any issues, please email forum@tools4datastage.com.

Please excuse the downtime and thank you for your participation.
by cmueller
Sun Aug 04, 2002 7:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference
Replies: 3
Views: 2004

Yes, that is correct.
by cmueller
Tue Jul 30, 2002 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecTCL in before job subroutine
Replies: 1
Views: 1351

There is no way I know of to access the result set of a before job command. You may try running that routine/command in a transformer stage variable using : IF @INROWNUM = 1 THEN ...run my routine...the result set then could be accessed through the stage variable or using named commons in DataStage ...
by cmueller
Tue Jul 30, 2002 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference
Replies: 3
Views: 2004

@INROWNUM is the number of rows coming in and @OUTROWNUM is the number coming out per link.If all rows go through then they will be the same. But if you put a constraint for example on an output link, then they will be different.
by cmueller
Tue Jul 30, 2002 7:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using sort stage
Replies: 16
Views: 14370

The sort specification in the sort stage is case sensitive, check your input sequential stage, specifically 'DSLink3.date'.
by cmueller
Mon Jul 29, 2002 2:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting records in a hash file
Replies: 4
Views: 2591

The normal command for accessing hashed files require that they have a pointer in the project VOC file. Below, is a routine that takes the path of the hashed file as argument, then creates a temporary entry in the VOC, counts the hashed file and then deletes the pointer. I tried using the openpath s...