Search found 5168 matches

by kumar_s
Thu Feb 08, 2007 11:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job using dataset files is slower than sequential files
Replies: 25
Views: 4638

Arnd, Even in sequential mode Dataset, shouldn't be quicker than the Sequential file, atleast theoretically? Dataset will be written in native format and not necessary to convert into Ascii. splayer, more over recording benchmark for data worth of processing within few seconds will not give out exac...
by kumar_s
Thu Feb 08, 2007 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records are wrongly rejected for Unique key
Replies: 3
Views: 997

Varchar(50) is capable of holding the given data.
You may need to check the data is been truncated, particularly last digit during transformation.
You need to explain more of your job design and the method of load.
by kumar_s
Thu Feb 08, 2007 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse Lookup query
Replies: 3
Views: 977

First available record in the lookup table's records set will be passed to the output along with incomming record set, if no lookup key is specified.
Else the matched row is processed among the existing record set. In your case, the available only row is the next sequence number.
by kumar_s
Thu Feb 08, 2007 2:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query Regarding Column Generated query in OCI stage
Replies: 5
Views: 1000

user 'Synchronise Columns' Option available in Query tab.
by kumar_s
Thu Feb 08, 2007 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Doubt in - Sequence of records processed by DataStage
Replies: 10
Views: 3389

Though the combinable option is enabled, its not guaranteed that the operators will be combined. Unless Dump score is overviewed. And more over this option will not affect the order of the row processing across nodes.
by kumar_s
Thu Feb 08, 2007 2:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse Lookup query
Replies: 3
Views: 977

Query in Sparse lookup will be executed every time when each row enters the stage. And hence you get the new sequence number generated.
Increment of the sequence number is the job of Database not Datastage.
by kumar_s
Thu Feb 08, 2007 1:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Query Regarding Column Generated query in OCI stage
Replies: 5
Views: 1000

Date in Oracle has timestamp portion in it. Where as Datastage dosen't have one. Hence the Data data type is mapped to timestamp data type in datastage, with to_char() during select and to_date() to perform the vice versa during insert.
by kumar_s
Thu Feb 08, 2007 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in TrimLeadingTrailing
Replies: 10
Views: 3381

As Ray mentioned, if you got your problem solved, drop a word on how you manage to do it. So that it helps the other searchers.
by kumar_s
Thu Feb 08, 2007 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in TrimLeadingTrailing
Replies: 10
Views: 3381

If input data has empty spaces, the trim function will trim it and produce null. Based on the padchar property that was set in project level.
If the table columns are not null, the data will not be inserted.
by kumar_s
Thu Feb 08, 2007 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem with oracle stage
Replies: 2
Views: 690

What is the stage that been used?
Constraints need to be disabled for Oracle Bulk Load to function. In Oracle Enterprise stage you have an Option called "Disable Constraints" which can be set to true or false. But still, you exact question need to be understood. :roll:
by kumar_s
Thu Feb 08, 2007 12:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job using dataset files is slower than sequential files
Replies: 25
Views: 4638

Your server might be busy with other stuff when you are testing with dataset and might be comparatively idle when you process sequential file. This will make your dataset preparation to run slower. You can measure the CPU usage on both the cases.
by kumar_s
Wed Feb 07, 2007 11:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script for Cleaning the Log Files
Replies: 21
Views: 5667

Or the code provided by Ray. Open "DS_JOBS" To DSJobs.fvar Then ClearSelect 9 SSelect DSJobs.fvar To 9 Loop While ReadNext JobName From 9 If JobName Matches "1A0X" Then ReadV JobNumber From DSJobs.fvar, JobName, 5 Then LogName = "RT_LOG" : JobNumber Open LogName To Log....
by kumar_s
Wed Feb 07, 2007 11:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script for Cleaning the Log Files
Replies: 21
Views: 5667

Or you can tweak and use Kim's code for this purpose.
by kumar_s
Wed Feb 07, 2007 11:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Script for Cleaning the Log Files
Replies: 21
Views: 5667

Setting up the auto purge option in the director will be the best approach. If CLEAR.FILE option is used, it will remove the autopurge property.
Also clear the %PH% directory regularly. Delete the orphaned jobs.
by kumar_s
Wed Feb 07, 2007 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic FileName
Replies: 4
Views: 1499

Yes, as Craing asserted, not atleast in the same job. One Job/ExecuteCommand Activity to read the field in the file and pass it as parameter for filename to the job which creates the file.