Search found 180 matches

by rafik2k
Fri May 04, 2007 1:49 am
Forum: General
Topic: Incremental load with no key field at source
Replies: 7
Views: 4488

It is a trick question. An incremental load is based on only selecting records in the source which have changed. You can do that without keys. All you need is last updated field in the source. What to update in the target may require keys. I also believe that it is trick question. That means if we ...
by rafik2k
Fri May 04, 2007 1:02 am
Forum: General
Topic: Incremental load with no key field at source
Replies: 7
Views: 4488

If you trust your load portion of ETL, you can compare yesterday's full load file with today's full load file to identify inserts, updates, and deletes. Look at the unix "comm" command to compare your load files. Thanks for your tips Though I can indentify changed records using unix utili...
by rafik2k
Fri May 04, 2007 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data load issue
Replies: 6
Views: 2269

This job is runnig fine while loading into db2 udb on windows environment which is same as DS server.
and it does not give any null related error.

It throws error only while loading into db2 udb on linux enviroment.
by rafik2k
Thu May 03, 2007 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data load issue
Replies: 6
Views: 2269

data load issue

I am getting different error while loading data into db2 on linux in the same job. "[DataStage][SQL Client][ODBC][DataDirect][ODBC DB2 Wire Protocol driver][UDB DB2 for Windows, UNIX, and Linux]OBJECT COLUMN TBSPACEID=2, TABLEID=635, COLNO=1 CANNOT CONTAIN NULL VALUES IN UPDATE OR INSERT SQLSTA...
by rafik2k
Thu May 03, 2007 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Putting condition in stage variable
Replies: 7
Views: 4372

Code: Select all

if code=A then name should be AAA
Basically what you want to do with this?

if code=B or C then what output you need :?:

Anyway go with Amit_111 approach
by rafik2k
Wed May 02, 2007 4:15 pm
Forum: General
Topic: Incremental load with no key field at source
Replies: 7
Views: 4488

Incremental load with no key field at source

This is one of the interveiw question. Source tables/files does not contain any key field. How to implement incremental load in the target tables? I was guesing using unix shell script commands like compare and other commmands, it be can be possible. Any other tips/solution would be a great help. Th...
by rafik2k
Wed May 02, 2007 3:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Meta Data mismatch
Replies: 7
Views: 3025

You source fieled is decimal(15,2).
You are performing sum operation(altering value) on this filed, DataStage is expecting the resultant value will be greater than big amount value of the source filed. I believe that is why datastage throws warning.
by rafik2k
Wed May 02, 2007 3:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: General Question about Websphere
Replies: 3
Views: 869

Welcome :)
by rafik2k
Wed May 02, 2007 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: General Question about Websphere
Replies: 3
Views: 869

Not Datastage Websphere, it is called IBM WebSphere DataStage in version 8.0 onwards.
Ascential was replaced by WebSphere in the new version of datastage 8.0
by rafik2k
Wed May 02, 2007 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Marking a Flag as "Y"
Replies: 5
Views: 1088

You can also put the constraint in the transformer like

Code: Select all

sourceLink.ID1= hashLink.ID1 and sourceLink.ID2 = hashLink.ID2 And sourceLink.ID3 = hashLink.ID3 
and put derivation of Flag as 'Y'

It will pass only matching rows.
Then update only these rows at target table
by rafik2k
Tue May 01, 2007 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Authentication problem in DataStage 8
Replies: 16
Views: 10239

Thanks :!:
by rafik2k
Tue May 01, 2007 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Authentication problem in DataStage 8
Replies: 16
Views: 10239

Hello DS experts,
Any other suggestion/idea for this issue?
I am still stucked on this.
by rafik2k
Tue May 01, 2007 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in loading a date
Replies: 10
Views: 49886

Also check the date format at the target database in both windows and unix environment.
As per target date format u need to customize the date() function accordingly.
by rafik2k
Tue May 01, 2007 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in loading a date
Replies: 10
Views: 49886

Also check the date format at the target database in both windows and unix environment.
As per target date format u need to customize the date() function accordingly.
by rafik2k
Mon Apr 30, 2007 2:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I don't understand!!
Replies: 9
Views: 1884

First check the date format in the target database.

Try to insert one record directly with date '01/01/2005' using sql command, see the output.

I believe your target table has different date format.