Search found 69 matches

by ganesh123
Fri Apr 20, 2007 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reading data from Execl file
Replies: 5
Views: 1844

Time to mark your topic RESOLVED
by ganesh123
Mon Apr 02, 2007 8:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transform rows to columns end record value to null
Replies: 8
Views: 3437

I guess you have confused the gurus. So no replies...

Use "code" and then specify properly what you need. Then we may understand clearly what you want. :?
by ganesh123
Thu Mar 29, 2007 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype conversion
Replies: 2
Views: 1730

Its helpful that when you mark the topic resolved you should also provide the solution like how you did ?

Its helpful for other users.
by ganesh123
Wed Mar 28, 2007 6:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write Routine ?
Replies: 9
Views: 5294

There are two types of routines: 1) Transform routines 2) Before-After job sub-routines *Before-After routines could be used/written within Transformer or even Shell scripts are used/written. For transform routines in the repository just right click on Routines and make new server routines. You can ...
by ganesh123
Fri Mar 23, 2007 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date comparisons from Non-Transformer stages
Replies: 3
Views: 1556

You are in wrong section. Post it in Parallel and delete from here please.
by ganesh123
Thu Mar 22, 2007 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compare row then increase
Replies: 3
Views: 1717

Please mark the topic RESOLVED
by ganesh123
Wed Mar 21, 2007 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using API functions in parallel rouitne
Replies: 6
Views: 2948

Re: Using API functions in parallel rouitne

umamahes wrote:
#include <dsapi.h>

when i compiled this code i am getting the fowlling error

"dsApi.C", line 1.10: 1540-0836 (S) The #include file <dsapi.h> is not found.
make: 1254-004 The error code from the last command is 1.
Not sure but may be $INCLUDE DSINCLUDE DSAPI.H
by ganesh123
Wed Mar 21, 2007 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup
Replies: 4
Views: 1676

Using Hashed file stage or using shell script in before job subroutine.
by ganesh123
Wed Mar 21, 2007 1:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Designer Hanged
Replies: 8
Views: 3202

WOW :shock:

Thanks buddy for resolving otherwise it would have been a issue of the day. As KrazyKoolRohit said :

Something fishy with IBM :lol:

Blame it on Rio (IBM) :lol:
by ganesh123
Wed Mar 21, 2007 1:23 pm
Forum: General
Topic: whats going on?
Replies: 4
Views: 2460

Its becoz you were not here SIR :lol:

We missed you and even IBM :wink:
by ganesh123
Wed Mar 21, 2007 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Designer Hanged
Replies: 8
Views: 3202

nkln@you wrote:I noticed that only when I click the Oarcle Stage in my JOb, The designer is getting hanged.

What is the problem with Oracle Stage.
I was using ORA9i stage
Are you doing view data in ORA9i ?? If yes it will take some time to retrive the data, its not hanged then...
by ganesh123
Wed Mar 21, 2007 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Designer Hanged
Replies: 8
Views: 3202

Can you open Director and Manager ?
by ganesh123
Wed Mar 21, 2007 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem mapping SmallDateTime field to Timestamp
Replies: 10
Views: 3959

Can you post the generated SQL ? Check the TO_DATE() in it.
by ganesh123
Wed Mar 21, 2007 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Check existence of a file from a Transformer
Replies: 5
Views: 2467

I guess its possible from TX but you can check the existence of input file by using before job subroutine "DSWaitForFile"
by ganesh123
Tue Mar 20, 2007 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange Logic
Replies: 15
Views: 4852

I have sent you a PM check it out and respond. Try this in Shell script and run it- #Shell Script name ganesh.awk BEGIN { FS=OFS="|" } tolower($1) == "property" { _prop=$0 ; skip=0;next} $2 == "" {skip++;next} !skip { print _prop; skip++;next } 1 Run it using - nawk -f ...