Search found 142 matches

by prabu
Wed Oct 19, 2005 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff between server Job Parallel Job
Replies: 30
Views: 13026

Parallel jobs -C dependency...

Server routines force you to know DataStage BASIC. And there are probably a lot more C programmers out there than there are DataStage/UniVerse BASIC programmers. What's the point? If you're going to program, you need to know/learn the programming language of choice for the application. Ray, i agree...
by prabu
Wed Oct 19, 2005 1:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: understanding SQL*Loader ctl file in OE stage...
Replies: 10
Views: 2862

i can uderstand that i can use Write Method as Upsert and edit the generated SQL. from the definition of upsert Insert if update fails OR Update if insert fails , whereas i want to do only insert i can say Upsert Order "Insert then update" and change the generated update statement to updat...
by prabu
Wed Oct 19, 2005 1:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: understanding SQL*Loader ctl file in OE stage...
Replies: 10
Views: 2862

understanding SQL*Loader ctl file in OE stage...

Hi DS folks, can some kind soul point out to me the fundamentals in which the control file is generated. is there any way i can control the defitions for some of the columns. scenario: i am loading the data in Load-append mode in a Oracle Enterprise Stage (ver 7.5) scenario 1: the idea is i want the...
by prabu
Mon Oct 17, 2005 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff between server Job Parallel Job
Replies: 30
Views: 13026

Comments about Parallel routines

what about Parallel routines , which forces the DataStage folks to know C?? comments please
by prabu
Fri Oct 14, 2005 2:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff between server Job Parallel Job
Replies: 30
Views: 13026

logic wrote:Hi rekha,
Search the forum , you will find lot of stuff Also read the following post,

Code: Select all

http://www.dsxchange.com/viewtopic.php?t=95903&highlight=search+posting
A quick answer to your question would be performance
:lol:
by prabu
Thu Sep 01, 2005 11:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash key lookup with an EXTRA key ...
Replies: 5
Views: 1269

It won't work using a Hashed File stage. A Hashed File stage can only perform a lookup against the entire key. Hi ray, thanks a lot for the help. trying to get more clarity , can't i peform something like 1=1 , reference3rdKey=reference3rdKey in the keyExpression to notify the DS to perform the par...
by prabu
Thu Sep 01, 2005 11:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash key lookup with an EXTRA key ...
Replies: 5
Views: 1269

[quote="ray.wurlod"]It won't work using a Hashed File stage. A Hashed File stage can only perform a lookup against the entire key. [/quote] Hi ray, thanks a lot for the help. trying to get more clarity , can't i peform something like 1=1 , reference3rdKey=reference3rdKey in the [b]keyExpre...
by prabu
Wed Aug 31, 2005 10:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash key lookup with an EXTRA key ...
Replies: 5
Views: 1269

hash key lookup with an EXTRA key ...

Hi DS folks, i have 2 hash files . one is called streamhash and the other is called referencehash. there are 2 keys in streamhash and 3 keys in referencehash . i mapped stream K1 to reference K1 and stream K2 to reference K2. i need the K3 in referencehash for some other purpose. so to shut up DS i ...
by prabu
Wed Dec 29, 2004 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Implementing SCD type-II in DataStage
Replies: 4
Views: 3400

Re: Implementing SCD type-II in DataStage

source Key-> lookup target Key if targetkey is null (meaning this is a new record) insert into target else -- target key is available in target if NO ( checksummatch(all other columns other tahn status flag)) then update target set status='Inactive' insert new record with status as 'Active' else non...
by prabu
Wed Dec 29, 2004 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job log
Replies: 12
Views: 5539

DSGetLogSummary(hJob1,DSJ.LOGANY,DSGetJobInfo(hJob1,DSJ.JOBSTARTTIMESTAMP)[1,10]:' 00:00:00', DSGetJobInfo(hJob1,DSJ.JOBLASTTIMESTAMP),0) the above code will give the etntries for the last run day and the below code only the last run (and not the last run day) DSGetLogSummary(hJob1,DSJ.LOGANY,DSGet...
by prabu
Wed Dec 29, 2004 11:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job log
Replies: 12
Views: 5539

You quoted their requirements: Can anybody give an idea on how to get the log for only the last run and not for the entire day. Searching the forum will turn up lots of advice on this, including this post. :wink: The Code Sridhar has given does exactly what he wants , ie, if there are 10 runs on a ...
by prabu
Wed Dec 29, 2004 10:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Capturing Job log
Replies: 12
Views: 5539

Re: Capturing Job log

Hi all, We have a requirement in our project to capture job log for each job in a sequential file. The following routine returns the log for a particular job for the last ran day. DSGetLogSummary(JobHandle,DSJ.LOGANY,DSGetJobInfo(JobHandle,DSJ.JOBSTARTTIMESTAMP),DSGetJobInfo(JobHandle,DSJ.JOBLASTTI...
by prabu
Wed Dec 01, 2004 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a File Header
Replies: 4
Views: 985

Re: Creating a File Header

I have created two after job routines. One adds a trailer to the output file from a job and the other is meant to add a header. The problem is that although the Write Trailer works fine, the Write Header routine is adding the line at the bottom of the file and not the top. Is there a way of using a...
by prabu
Wed Nov 24, 2004 9:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix redirection issue when using echo/print
Replies: 2
Views: 1102

kcbland wrote:You are probably getting fouled up with the quotes.
Works like hell , if the quotes are removed :P . lesson learnt : Dont play with Quotes. thanks for the suggestion
by prabu
Wed Nov 24, 2004 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unix redirection issue when using echo/print
Replies: 2
Views: 1102

Unix redirection issue when using echo/print

Hi All DS Folks, i am creating a file by re-directing the output of UNIX echo/print command. the command goes thr' (Meaning there is no error after the command is executed) but no file is getting cerated. i would very much appreciate any help on this is. sample code like UNIX_COMMAND='echo "':F...