Search found 459 matches

by rasi
Thu Mar 02, 2006 6:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null date in transformer
Replies: 14
Views: 8849

Mat If IsNull(<Date Field>) Then If Condition X Then #DefaultDate# Else SetNull() Else <Date Field> In your statement the first IsNull will not have any problem. But in your "Condition X" if you still use the <Date Field> without having null handling then the records will be dropped. Make ...
by rasi
Wed Mar 01, 2006 9:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Re-Organizing DataStage jobs
Replies: 8
Views: 3571

I agree with Kim doing it in Manager is easier. Also you can do that using designer....Or another way is to right click the job in designer and select the properties. Inside that you can go to Category tab and type your new category.....
by rasi
Wed Mar 01, 2006 7:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job abort code
Replies: 2
Views: 1009

Reddy

Do a search on "Access violation" it was covered before in this forum
by rasi
Tue Feb 28, 2006 9:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleanse/Confirm Question ?
Replies: 25
Views: 8079

This functionality is well handled in Datastage by using hash file and having the pre-load memory option enabled
by rasi
Tue Feb 28, 2006 8:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Surrogate Key Assignment
Replies: 16
Views: 24856

You need to pass in the unique name for which it gets the next surrogate key. The value is stored in hash file and you can always reset the value by updating the hash file
by rasi
Tue Feb 28, 2006 7:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project Locking
Replies: 4
Views: 2555

Hi

Do a search on this forum with the keyword project currently locked this topic was covered before


[/url]
by rasi
Tue Feb 28, 2006 7:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge columns from 2 seq. files with different metadata.
Replies: 3
Views: 1557

Is there any specific reason you need to use Merge stage. If it is just one value you can store it in a hash file and do a lookup. Or you can write your date value to a sequential file and before running this job read the sequential file and pass the value as parameter
by rasi
Tue Feb 28, 2006 7:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message handler
Replies: 7
Views: 3831

Hi After creating message handler you can use it for individual jobs. Go to the job properties and choose a message handler to be included in your job. The list will show you all the message handlers currently defined in your project. The message handler gets compiled with the job and becomes part o...
by rasi
Tue Feb 28, 2006 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: timestamp format
Replies: 8
Views: 2457

Hi Double click you sequential file stage and click the output button and then Columns tab. Inside that right click and select properties inside that you will find Extended column in Position 4
by rasi
Tue Feb 28, 2006 6:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets having 30 M worth of data
Replies: 5
Views: 2162

Having database table as lookup is another option which you can consider. I never tried with 30 Million records. I hope someone would have done this and can comment
by rasi
Tue Feb 28, 2006 12:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: [Oracle][ODBC][Ora]ORA-01861: literal does not match format
Replies: 4
Views: 2319

Hi

This error occurs when you mistyped the formats especially in your datetime. Post your SQL it will give us more info.
by rasi
Mon Feb 27, 2006 11:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fundamentals of Basics Routines
Replies: 21
Views: 7590

Thanks for mentioning that Craig. I did skipped all previous thread.
by rasi
Mon Feb 27, 2006 10:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleanse/Confirm Question ?
Replies: 25
Views: 8079

Calling a function for each of your column and every row will slow down your entire process. Now days tools are available and improved alot.
by rasi
Mon Feb 27, 2006 10:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lookup Table vs Hash file
Replies: 6
Views: 2752

Hi trokosz

This is a server question and not related to Parallel Jobs. In server job you can have reference links can be a table or a hash file. Thats what manoj is asking which one is more efficient
by rasi
Mon Feb 27, 2006 10:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Fundamentals of Basics Routines
Replies: 21
Views: 7590

Go to Routines Folder in the Designer. By default you won't see the routine folder. You need to enable this by clicking Tools/options and inside that go to appearance/Repository Tree. Click Show routines. A good start is to look at the existing routine codes. Double any routine and inside that click...