Search found 29 matches

by kiran_kom
Thu Jan 06, 2005 1:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue
Replies: 5
Views: 2696

Re: Performance Issue

Hello there, I designed a job which has about 20 stages in it. From the performance stand-point, would it be a good idea to design a job with so many stages especially when I can break this job into small jobs. Thanks in advance. -Yamini Depends...... Assuming you have enough CPU, and all your inte...
by kiran_kom
Wed Dec 29, 2004 8:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error 904 Occured
Replies: 5
Views: 2864

Aswini wrote:thanks a lot for the welcome.
I am not able to get anything, this is the info i got after resetting the job, please let me know if there is a palce i should look for.......right now this is the error log, please review the attachment.
Which job is it?
by kiran_kom
Fri Nov 19, 2004 10:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 AS/400 Connectivity Issue
Replies: 2
Views: 1580

thanks for your reply Peter...unfortunately that wasnt our problem. I changed that setting in the DSN properties, made sure I was entering the right password, but the problem is still there :(
by kiran_kom
Thu Nov 18, 2004 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 AS/400 Connectivity Issue
Replies: 2
Views: 1580

DB2 AS/400 Connectivity Issue

We are acessing a DB2 database on a AS/400 box using the client access ODBC driver. We were able to setup the connectivity and continue development, but all of a sudden Datastage was not able to connect to that dtabase anymore. The jobs would simply hang when trying to connect to it. I was however a...
by kiran_kom
Thu Oct 28, 2004 1:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automatically handle activities that fail
Replies: 11
Views: 11457

thats cool... let me restate so that i can confirm if I am understanding it right.. 1) so if I have this in the sequence Routine-->Job 2) I put the trigger in the routine as otherwise 3) enable the "automatically handle the activities that fail.." in the sequence. Then the sequence would ...
by kiran_kom
Wed Oct 27, 2004 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Columns to rows - pivot stage ?
Replies: 5
Views: 3103

Try a self join....3 times...
by kiran_kom
Thu Sep 30, 2004 11:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSMigrate - Has Anyone heard about it ?
Replies: 10
Views: 6405

thanks for the information guys..... I hoping it was publicly available
by kiran_kom
Wed Sep 29, 2004 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSMigrate - Has Anyone heard about it ?
Replies: 10
Views: 6405

DSMigrate - Has Anyone heard about it ?

Hi,

Has anyone heard about a Job migration tool called DSMigrate ? I want some information about this tool.
by kiran_kom
Tue Jun 08, 2004 4:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing a Plugin???
Replies: 2
Views: 1950

Quite easy if u were on Unix...Just use named pipes to do your job.......Write into the pipe using DS. Read from that pipe using another application.. write back to another pipe from the application...Read from DS.... I dont think it is possible to implement a similar application under windows. Wind...
by kiran_kom
Wed Jun 02, 2004 5:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pivot Column to Row.
Replies: 7
Views: 5345

you can do it using a SQL stmt. You will need a two-part key to accomplish it. Assuminng your data is of the type: col1 col2 data 1 1 "ABC" 1 2 "BCD" You can compress it into one row using a self join. select a.col1, a.data, b.data from tablename a Left outer join tablename b ON ...
by kiran_kom
Fri May 28, 2004 6:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with DS Calls
Replies: 13
Views: 7153

There is a bug in DS windows that causes it to crash if you are using lots of hash file stages at the same time. Can you please elaborate, ideally providing a reference to the support case number? Or is it just that you didn't set the T30FILE tunable large enough? the support case number is 385112*...
by kiran_kom
Fri May 28, 2004 6:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with DS Calls
Replies: 13
Views: 7153

There is a bug in DS windows that causes it to crash if you are using lots of hash file stages at the same time. Can you please elaborate, ideally providing a reference to the support case number? Or is it just that you didn't set the T30FILE tunable large enough? Umm no...This is a known issue wit...
by kiran_kom
Fri May 28, 2004 1:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with DS Calls
Replies: 13
Views: 7153

I've had the same problem this morning. It might be because your are using the "reset if required" option. I had inadvertedly used it in my sequence and ran into the same issue. Try taking it out. It seemed to have solved mine, but im not a 100% sure, my jobs are still running. Also are yo...
by kiran_kom
Mon May 10, 2004 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the smallest number
Replies: 4
Views: 2176

Re: How to get the smallest number

Use the aggregator stage. Pretty easy to use. Hi All ... I've been trying to fit this requirement into a hash file without success. I know I can solve this with a temporary table, but I'd rather do a hash: I will create a series of rows out of my Transform. These rows will contain a column named sma...
by kiran_kom
Fri Apr 23, 2004 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do I use the sendmail within a transformer
Replies: 1
Views: 1321

Datastage provides a "command stage" which lets you invoke an OS command. Issue the sendmail command when your criteria is met.

I dont recall exactly how you invoke sendmail, but im pretty sure you can figure it out yourself :-)