Search found 6797 matches

by DSguru2B
Tue Nov 07, 2006 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2/UDB Bulk Load
Replies: 1
Views: 522

Search is your friend. There are lots of posts discussed here which will help you set up the right properties. Also, there is a property help button on the stage itself which will help you identify the purpose of that particular property. You can go over the DB2/UDB Load Stage documentation. Try to ...
by DSguru2B
Tue Nov 07, 2006 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete the records from a table.
Replies: 2
Views: 535

You can also send a Delete from Table where <conditioin>, in the Before Sql tab of your database stage.
by DSguru2B
Tue Nov 07, 2006 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CheckPoints in Sequencer
Replies: 13
Views: 5689

You can do it yes. But there are limitations. If your database is partitioned then it becomes even more complicated. Do a select max(id) from table and store the result in a hashed file keyed on a dummy key. Reference that key in your transformer and specify the constraint In.Key > Max.key where In....
by DSguru2B
Tue Nov 07, 2006 7:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date time stamp difference in time stamp
Replies: 10
Views: 11974

I wrote a script for a friend of mine a while back to get the job elapsed time for all the jobs from a text file. The result is a comma delimitted file with job name and its elapsed time. Its fairly simple. If you are familiar with unix you will be able to figure it out. All you need to do is change...
by DSguru2B
Tue Nov 07, 2006 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with HashFile
Replies: 1
Views: 534

This postwill be of some help.
by DSguru2B
Tue Nov 07, 2006 7:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ERROR WHILE USING DB2 UDB LOAD STAGE
Replies: 2
Views: 840

Another reason might be that the database was down during that time. Try running the job again, if it still fails with the same error then try to log into the same database using your favourite tool. See if that connects.
by DSguru2B
Mon Nov 06, 2006 2:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 deadlock issue
Replies: 1
Views: 1998

Never kill a job that accesses a database, especially if its doing something like "clear table then insert rows". The job will abort, but the thread accessing the database stays alive and abandoned, hence keeping the table locked. If, at anytime, you have to stop a job, ask the dba to kill the threa...
by DSguru2B
Mon Nov 06, 2006 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to implement slowly change dimension..
Replies: 5
Views: 2069

True, there is an SCD stage in DataStage 8.0, but its not that hard to implement. As Ray pointed out, search this forum or even google to get the pseudocode. Then turn that into computational logic by use of different stages.
by DSguru2B
Mon Nov 06, 2006 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job takes very long time to run
Replies: 3
Views: 1182

There are clients that expect job sequencers containing 10 jobs to finish in 2 seconds, if not they blame the design, as well as the developer and at worst datastage. Hate such clients which expect rocket science from an ETL tool. They are better off writing thousands of lines of sqls and spending ...
by DSguru2B
Mon Nov 06, 2006 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading of Bulky Hash File
Replies: 1
Views: 823

Test it out. The processing will not start untill both source and hashed file for the transformer are ready. But as a standard practice, build hashed files in a seperate job. This way if you have to restart your job, the hashed files wont have to be built from scratch.
by DSguru2B
Thu Nov 02, 2006 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split one record into several records
Replies: 11
Views: 3355

talk2shaanc wrote:Note: 1. char(13) is carriage return


char(13):char(10) is the CR for dos.
by DSguru2B
Thu Nov 02, 2006 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CheckPoints in Sequencer
Replies: 13
Views: 5689

Or to simplify your life, set the transaction size to 0 which means all or nothing. In other words, if the job fails, the inserted rows will be rolled back. This way every time you restart your job, it will start loading afresh.
by DSguru2B
Thu Nov 02, 2006 7:07 am
Forum: General
Topic: General- DataStage Help
Replies: 2
Views: 2640

Herewould be a good start :P
by DSguru2B
Wed Nov 01, 2006 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg: Timestamp
Replies: 15
Views: 3897

Time shall tell. A person never knows. Demand is increasing day by day. I hear my boss asks me to do stuff equalent to rocket science. Tool/hardware limitations set in. But once this barrier breaks, you never know where we will head off too. :)
by DSguru2B
Wed Nov 01, 2006 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: replacing null column with some value and assigning a keyval
Replies: 20
Views: 4451

I agree. You need to test it out. Performance is a very vague term. It really depends upon your data size, processing window.