Search found 14 matches

by baabi_26
Tue Jun 21, 2005 7:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LinkCollector Issue
Replies: 14
Views: 4533

Vinay,

Can you delete the merge file (created by previous run) before running the job and let me know what message you get. I suspect transformer might be reading incomplete data (even before the file is loaded) which, ofcourse, should not happen. Just want to make sure that is not the case.

- Nav
by baabi_26
Mon Jun 13, 2005 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target database insert errors
Replies: 3
Views: 1629

One setting you want to make sure is that the target stage's array size should be "1" if you want to capture the rows rejected by target.
by baabi_26
Tue Jun 07, 2005 7:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Checking for updates in a database then migrating data
Replies: 6
Views: 2980

If a row gets added in your DB2 every min, should you update your oracle table immediately? Or Can you accumulate rows, say, for 1 day and start your update process and update all the rows changed in that day?
by baabi_26
Tue Jun 07, 2005 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Union All statement
Replies: 6
Views: 3349

As i said earlier..why not trigger the stmt in Database itself. Ofcourse, you cannot avoid Union with this approach. But what you can avoid is all the read and write operations that you are doing when you are fetching the data into the Datastage server. Have a sequential file with a single col (say ...
by baabi_26
Fri Jun 03, 2005 6:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determine whether to use condition in SQL based on parameter
Replies: 12
Views: 5583

Ray, Just wondering what problems are you talking about. Can you please elaborate?

I thought CASE stmt can only be included in select list not as a part of your where clause. Am i wrong?
by baabi_26
Fri Jun 03, 2005 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Union All statement
Replies: 6
Views: 3349

Didn't understand your requirement. Can you explain a little bit. Do you have to execute this Insert..select stmt on your taget database so your menu_record table gets loaded. Is that it? To do that you can trigger the stage with a single row, single col source which will fire this SQL on the Target...
by baabi_26
Fri Jun 03, 2005 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Determine whether to use condition in SQL based on parameter
Replies: 12
Views: 5583

Sure there is a way to handle this. Comment out the last part in your SQL based on the Parameter value. Where <condition> #Paramcommstrt# AND ToDate = to_date('#ToDate#',<formatstring>) #paramcommend# and in your sequencer uservariable activity check the value of the date. If it is null then set #Pa...
by baabi_26
Fri Jun 03, 2005 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing CRC values
Replies: 16
Views: 10930

Thanks a lot. http://img240.echo.cx/img240/7100/crc7ih.jpg Please click on the link above for my job design. It works this way.. I'll assume file has col1, col2 and col1 is the key column. 1. I'll feed Afterset through a TRX and add a column to the existing columns and the value of the column is &qu...
by baabi_26
Thu Jun 02, 2005 11:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing CRC values
Replies: 16
Views: 10930

I am trying to show my job design to handle the change capture. How can I paste/attach my job design in the forum/message.
by baabi_26
Thu Jun 02, 2005 9:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing CRC values
Replies: 16
Views: 10930

Hey..how do i copy paste my job design..any help please...[/code][/url]
by baabi_26
Wed Jun 01, 2005 7:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Storing CRC values
Replies: 16
Views: 10930

We have a scenario wherein we have to capture the change record information. This may or may not help you much..but this is how we are doing it. Every week we get a source file which has old as well as changed record information. We compare old file with new file and identify what are inserts, updat...
by baabi_26
Tue Jan 25, 2005 3:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiload utility in Parallel mode
Replies: 16
Views: 11396

Hi Nivas, I have tried the same in one of my jobs. If the execution mode is parallel the job will always fail when run on two or more nodes. The workaround is to make it sequential and run the job. I have to agree that the job will be slow. Multiload stage would become bottle-neck.But i am not sure ...
by baabi_26
Tue Jan 25, 2005 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Merge
Replies: 5
Views: 2807

Hi, Definitely there is a difference between sort merge and round robin collection methods. Sort Merge uses your columns (one or more that you have specified) to decide the order of collecting the results. Round-Robin, as you know, just collects the records in an orderly round robin fashion. Since y...
by baabi_26
Mon Jan 24, 2005 5:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: multiload utility in Parallel mode
Replies: 16
Views: 11396

Execution mode should be set to Sequential

Hi, The reason why you are facing this problem is already explained in previous posts. This might help you. 1. Change the Execution mode of Multiload stage to Sequential mode. 2. Drop all the log table, error tables and work tables that you have specified. 3. On the main table you are trying to mult...