Search found 91 matches

by dganeshm
Tue Mar 09, 2010 11:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Splitting of Values into 2 or more lines
Replies: 9
Views: 7102

In pseudocode..... If you find that 'n'th char is where you need to break, do it like keyField = keyField nonKeyField = nonKeyField[1, n - 1] : newlineChar : nonKeyField[n + 1, 9999] I will leave it to you to derive the value of 'n' and 'newlineChar' Need help to define the 'newlineChar' , if I giv...
by dganeshm
Tue Feb 16, 2010 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping logic based on multiple conditions to end loop
Replies: 11
Views: 5189

Have a shell script and a multi instance job, read the file name and invoke a instance of the job using dsjob command once your shell script reads the control file ..exit script...
by dganeshm
Wed Feb 10, 2010 4:09 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Working with XML Output and Web Services Transformer
Replies: 3
Views: 5305

Hi Ernie,

That worked like a charm , although instead of using two counters , I did a mod (@INROWNUM,500) = 0 then count +1 else count , to keep track of every 500 rows.. Thanks again Ernie..
by dganeshm
Tue Feb 09, 2010 10:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 15858

Thanks a lot Ray..
by dganeshm
Tue Feb 09, 2010 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 15858

I tried this :
FUNCTION DELAY(Arg1)
SLEEP Arg1
PRINT 'STARTING DELAY'
EXECUTE 'CS'
PRINT 'DELAY COMPLETE'
Ans = 1

and it worked, but yours is much more understandable, I will do it your way..
by dganeshm
Tue Feb 09, 2010 3:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 15858

Where can I use the sleep command , i dont see it in the transformer.., I have not created a routine , can you please help me.
by dganeshm
Tue Feb 09, 2010 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 15858

Re: Is there a sleep functionality in DataStage

For example, if the number of rows has reached 500 , create a 2 minute delay and then start processing the next set of 500 and then a 2 minute delay and so on..
by dganeshm
Tue Feb 09, 2010 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a sleep functionality in DataStage
Replies: 12
Views: 15858

Is there a sleep functionality in DataStage

I want to send rows to a Web Service transformer in a controlled format , is there a sleep functionality in DataStage Server Jobs...
by dganeshm
Tue Feb 09, 2010 2:35 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Working with XML Output and Web Services Transformer
Replies: 3
Views: 5305

Working with XML Output and Web Services Transformer

Hi All, I am loading data into IBM Maximo via web services transformer using WSDL call. In the current design if there are 100 records , it makes 100 calls to Web service and there by belting the server 100 times. (100 is just an example , records go as high as 2 million). So in those cases its real...
by dganeshm
Thu Feb 04, 2010 1:09 pm
Forum: IBM QualityStage
Topic: XMLOutput Stage
Replies: 1
Views: 1243

XMLOutput Stage

http://picasaweb.google.com/dganeshm/DS#5434456807639732514 I want the header in a separate columns and the content in the separate column ,here the header is non repeating but the content is repeating, I am not sure how to do it in separate columns , I am able to do it in a single column comprisin...
by dganeshm
Wed Feb 03, 2010 3:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: trunc a decimal number to the X position
Replies: 6
Views: 3361

Re: trunc a decimal number to the X position

Two ways :

Change the precision of the decimal to n,3
Treat as a string , do a substring from 1 to index of 1st occurence of '.' + 3.
by dganeshm
Fri Jan 29, 2010 11:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Setup - Empty DSN: list returned from host
Replies: 16
Views: 16234

Re: ODBC Setup - Empty DSN: list returned from host

AviETL wrote:On windows server there is no odbc.ini file. DataStage should pick up ODBC DSNs from windows registry
Oops !!! I conveniently ignored that.... :?
by dganeshm
Fri Jan 29, 2010 11:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Setup - Empty DSN: list returned from host
Replies: 16
Views: 16234

Re: ODBC Setup - Empty DSN: list returned from host

I have installed IBM Information Server (8.1) on Windows server. SQL server ODBC DSN created through windows ODBC setup. uvodbc.config in project directory modified with appripriate entry. But when I tried to import metadata using ODBC it gives error as "Empty DSN: list returned from host <ser...
by dganeshm
Thu Jan 28, 2010 5:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: web services error
Replies: 8
Views: 6253

chulett wrote:So, what was the resolution?
Yeah, it would be good to know the resolution..
by dganeshm
Thu Jan 28, 2010 1:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: web services error
Replies: 8
Views: 6253

Re: web services error

I agree. I re-ran the job after changing login information and the job aborted with a different error message, bad username and password exception. the server which is hosting the webservices itself is not up and running. whom do i contact to find out the server is not running. Thanks Mark If you k...