Search found 48 matches

by ejazsalim
Wed Jun 07, 2006 10:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pick the first record
Replies: 7
Views: 1826

Re: Pick the first record

Use the built in routine under

routines/sdk/RowProc/RowProcCompareWithPreviousValue

using this you can pick the first one and drop the rest

dont forget to sort data before doing this.
by ejazsalim
Wed Jun 07, 2006 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSendMail is not in your VOC
Replies: 4
Views: 1351

Re: DSSendMail is not in your VOC

from command line use
"dssmtpmail"

dssmtpmail -server <smtp server ip address> -from xyz@abc.com -subject test -message c:\test\testmail.txt to@yahoo.com
by ejazsalim
Tue Jun 06, 2006 4:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Line Export
Replies: 3
Views: 854

kcbland wrote:The whole project only, but not specific categories. ...
Thanks everybody and a slight correction to what KC correct me if I am wrong.

The whole project for DSX or individual jobs for XML but nothing for category level backup
by ejazsalim
Mon Jun 05, 2006 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Line Export
Replies: 3
Views: 854

Command Line Export

Guru's is it possible to do a command line export of the project or categories ?
by ejazsalim
Thu Apr 29, 2004 1:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage aborts when error encountered in look-up stage
Replies: 3
Views: 1836

What exactly are you trying to do ?

1. Try running your job with the "No Limit" option.

2. If the format of your date field is not in Oracle format simply reject the record before doing the lookup.

Hope that helps
by ejazsalim
Wed Apr 21, 2004 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: implied decimals
Replies: 4
Views: 1633

Why dont you just multiply by 100 and write out to a CHAR field I assume what you want to do is


Code: Select all

Input = 12345.67       Output = 1234567
Look at the FMT function

Code: Select all

Fmt (string, format)
by ejazsalim
Wed Apr 21, 2004 9:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage %s
Replies: 8
Views: 2764

This is what Ray was talking about http://www.dsxchange.com/viewtopic.php?t=87389 Thanks once again Ray Hi!Ray i didn't get - how can we see the "See new thread on capturing output of "UniVerse" commands".can yu be elaborate explicitly . Thanks and Regards Hemant See new thread o...
by ejazsalim
Tue Apr 20, 2004 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Droping multiple UniVerse Tables
Replies: 3
Views: 895

Which is a better way of doing it paragraph or using a routine ? :?:

Ray how do you get those neat formating in your message :shock:
by ejazsalim
Tue Apr 20, 2004 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Droping multiple UniVerse Tables
Replies: 3
Views: 895

Droping multiple UniVerse Tables

I need to drop 2 Universe Tables before the job runs I am trying to use the Before Job sub-routine set to "ExecTCL" and the input value as "DROP TABLE table1; DROP TABLE table2" as you can see the syntax is wrong please help me with the right one. Is there any better way of doing...
by ejazsalim
Tue Apr 20, 2004 9:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Runtime error occured within the OLE server itself
Replies: 5
Views: 1396

What is the configuration of your system ? Does it have enough resources
by ejazsalim
Tue Apr 20, 2004 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage %s
Replies: 8
Views: 2764

That's what I assumed to Hemant but I was wrong with my past experiences I was thinking this to be a diskspace/memory issue but what it turned out to be was that one of the derivation was turned to not null while the value going in was a NULL changing that fixed my problem and thanks to Ray for the ...
by ejazsalim
Tue Apr 20, 2004 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage %s
Replies: 8
Views: 2764

That worked great Ray. Thanks

I used the VLIST command on the DataStage Administrator Command Output Window is there any way to spool the output to a file or cut and paste.
by ejazsalim
Mon Apr 19, 2004 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage %s
Replies: 8
Views: 2764

Abnormal termination of stage %s

When I run a job it Aborts with the following warning xGDW00MPRMatBillCost..AgGDWStandMatUsgVar: %s Abnormal termination of stage xGDW00MPRMatBillCost..XFmGDWValidateMatlPlant detected -------------------------------------------------------------------------------------------------------------------...
by ejazsalim
Wed Apr 14, 2004 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File Update Time
Replies: 1
Views: 705

Hash File Update Time

How do I find out the last update date time on a Hash File(Default Type30 Dynamic).

I am running DataStage 6 on Unix.

I tried looking for this in the forum didn't find anything.

Thanks in advance.
Ejaz
by ejazsalim
Tue Mar 23, 2004 12:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file - caching attributes
Replies: 2
Views: 1430

Re: Hash file - caching attributes

Caching Attribute is is an option that you have when you are creating the Hash File by default it is "NONE" but it can be "WRITE IMMEDIATE" OR "WRITE DEFFERRED"

Hope that helps