Search found 180 matches

by rafik2k
Thu May 10, 2007 12:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: rollback
Replies: 11
Views: 4239

The sequential file contains three rows. In the second row I created an error( placed a character value to be loaded to a numric column) It seems second row never went into database using odbc. May be DataStage ifself throws that error for second row. That is why rollback not happening in your case...
by rafik2k
Thu May 10, 2007 12:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simple if statement
Replies: 7
Views: 2835

Hope you have written routine like following NullChecking: if ((Trim(Arg1, ' ', 'B') = '') Or (isnull(Arg1))) Then Ans = 1 end Else Ans = 0 end Trimlt: Ans=Trim(Arg1, ' ', 'B') What is svNullIdst?? is this stage variable? what is it's value?? if svNullIdst Then 112 Else Remove this line and check it.
by rafik2k
Wed May 09, 2007 6:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Phantom Error
Replies: 3
Views: 1636

Phantom error is not specific error, it can be for serveral issue.
Please post more log information.

Basically what ur job does here??
by rafik2k
Wed May 09, 2007 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join multiple DB2 tables
Replies: 7
Views: 2136

It all depends on ur requirement. For example Table A = 50,000 records Table B = 300,000 records If u have one to many or many to one or both relationship on above two table the the result u will get a cartesian product from both which may differ from your expected result set, when u fire the query ...
by rafik2k
Wed May 09, 2007 4:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simple if statement
Replies: 7
Views: 2835

it is giving result value 1. Is this related to @TRUE

Yes 1 means @true in the transformer
by rafik2k
Wed May 09, 2007 4:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot Rollback changes when loading to ODBC stage
Replies: 3
Views: 1778

Array Size = number of records being loaded. not like that.

Parameter array size =the number of rows written at a time.

What Isolation level you set in Transaction Handling tab?

Check with defaullt value like
Isolation level=None,
Row per transaction=0
and Parameter array size=1
by rafik2k
Tue May 08, 2007 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Creation.
Replies: 4
Views: 2074

1) as long as your server identifies Network drive, you can easily create and access hash file using "Use directory path"
2) I believe clear file before wrting is faster that delete file before create as in later option it invloves overhead of deleting and creating the file.
by rafik2k
Tue May 08, 2007 10:07 am
Forum: General
Topic: Sequential File
Replies: 11
Views: 6081

What do you want? Be more specific.

Do you want latest information based on date or flag for a employee or the information chulett mentined in his reply?
by rafik2k
Mon May 07, 2007 4:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transpose the table
Replies: 2
Views: 977

Initially I thought that pivot stage would help, but having checked privot stage I found that it's for different requirement.
by rafik2k
Mon May 07, 2007 3:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transpose the table
Replies: 2
Views: 977

Transpose the table

Hi, I am in process of creating one job where I need to transponse a table i.e. row into column and column into row. For example, input is like this Table col1 col2 col3 row1 10 20 30 row2 15 35 45 row3 25 55 65 output would be like this: Table col1 col2 col3 row1 10 15 25 row2 20 35 55 row3 30 45 6...
by rafik2k
Fri May 04, 2007 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data load issue
Replies: 6
Views: 2269

The error is in the network. There is not enough information about it generated to produce any meaningful diagnosis. Have your network administrator, possibly with the DBA involved, investigate wher ... As per DBA this is not network issue. When I ping the remore system, it's responding fine. One m...
by rafik2k
Fri May 04, 2007 6:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregator Totals Mismatch
Replies: 4
Views: 1681

so you requirement is to get only 2 digits after decimal point. Either you can use round off function to get nearest values after decimal point or write a small basic rountine and call it in tranformer stage. You need to manipulate column value using basic function. Use string or field funtion to ge...
by rafik2k
Fri May 04, 2007 5:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data load issue
Replies: 6
Views: 2269

[b]Strange error[/b]

The job aborts at halfway and giving following error message while loading db2 in linux. The same job runs perfect while loading on db2 in windows enviroment. Can you please let me what the issue is going on? I am really stuck on this. Any help will be highly appreciated. CUS_Load_Customer_Mst..TRN_...
by rafik2k
Fri May 04, 2007 3:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot drop constraint - nonexistent constraint
Replies: 4
Views: 3560

Which update action you set in target table stage?

This is error shows you are tying to alter the table constraint.
by rafik2k
Fri May 04, 2007 2:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Columnvalue in unix file truncated and rejected
Replies: 5
Views: 1808

Also check after setting same nls map at both the stages(Sequential file and Oracle stage)