Search found 3329 matches

by Sainath.Srinivasan
Tue Jun 14, 2005 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datetime and Timestamp
Replies: 5
Views: 983

I think smalldatetime is the datetime within a restricted period.

You need to supply the default timestamp format.

Check whether the column is a timestamp and also whether you are doing a cast in it.
by Sainath.Srinivasan
Tue Jun 14, 2005 5:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge 2 files but remove duplicates
Replies: 3
Views: 675

First-of-all, why are you specific about merge?

You can achieve your requirement by using an outer join in merge followed by constraints in transformer.
by Sainath.Srinivasan
Tue Jun 14, 2005 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: limitations of datastage
Replies: 5
Views: 1547

There are many combinations and options. The solution will be specific to each customer.

In this case, are you asking for professional services?
by Sainath.Srinivasan
Tue Jun 14, 2005 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: limitations of datastage
Replies: 5
Views: 1547

There are limitations in any software or tool. Any limitation can be counteracted by alternative means such as knowledge in other software linked to DataStage.

Can you provide more information as to what you are looking for and why.
by Sainath.Srinivasan
Tue Jun 14, 2005 1:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validate all the column data in a Table
Replies: 9
Views: 2440

I agree with keftos. If you want to update change to even one column, you may be better-off performing 'insert new or update existing rows' or vice-versa as that will give you the flexibility to track any change in any column.
by Sainath.Srinivasan
Tue Jun 14, 2005 1:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The job is hanging??
Replies: 3
Views: 761

Check for the file size (>= 2Gb).

Also check whether you have any stages / process following the one writing to a sequential file.

What happens when it hangs? Does the row count increase at a slow rate or does it completly stall?

Did you check the seq file in these cases?
by Sainath.Srinivasan
Tue Jun 14, 2005 1:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with AS400 Query
Replies: 5
Views: 823

Did you check whether you are receiving any warning?

Also can you constraint the output so it will not write anything. This will give you the read performance.

Do you do any lookups in the job?
by Sainath.Srinivasan
Tue Jun 14, 2005 1:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC LOOK UP ERROR
Replies: 6
Views: 1172

You can write the rejected rows in a separate file and manually verify their occurance in the hash file.

Also check the constraint logic to reject the rows.
by Sainath.Srinivasan
Tue Jun 14, 2005 1:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Spurious Hash File Allocation message
Replies: 2
Views: 622

Your error appears to do with operating system permissions to create the hash file.

You may probably be using a script to move the hash-files around.

Also check whether you use any parameter(s) embedded in the hash-file names and ensure that the values are passed correctly.
by Sainath.Srinivasan
Mon Jun 13, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Masked Data
Replies: 6
Views: 1340

If all you want is a few rows in the file, you can generate yourself using the transformer and a stage variable and make it to write them out in any file you want.

You can pass your SSN to EmpName to match them during testing.
by Sainath.Srinivasan
Mon Jun 13, 2005 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with AS400 Query
Replies: 5
Views: 823

There can be several reasons for the delay. Some are
1.) network traffic
2.) target db having space problem
3.) source extraction is slow
by Sainath.Srinivasan
Mon Jun 13, 2005 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: what is the plug in for loading data to SAP CRM?
Replies: 3
Views: 1187

Does your SAP CRM run on SAP R/3 or SAP BW?
by Sainath.Srinivasan
Mon Jun 13, 2005 10:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validate all the column data in a Table
Replies: 9
Views: 2440

Even then, you can search for that topic as it contains the steps to achieve your requirement.

You may have to decide on which columns you wish to track because finding changes on even one column - especially if it is a varchar - can be tedious and time consuming during execution.
by Sainath.Srinivasan
Mon Jun 13, 2005 10:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help! Duplicate rows in target!
Replies: 4
Views: 1546

Check the columns used to reference the lookup and ensure that they are the same columns used in the 'where' clause for update.
by Sainath.Srinivasan
Mon Jun 13, 2005 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validate all the column data in a Table
Replies: 9
Views: 2440

Are you performing a slowly-changing-dimension?

Search for that topic in the forum for more info.