Search found 18 matches

by natashab
Fri Nov 12, 2010 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: parameter name --> Password
Replies: 9
Views: 3705

Yes,you can use the parameter
by natashab
Wed Nov 10, 2010 1:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Runtime Error
Replies: 16
Views: 8260

Table name has additional characters like space at the end of it.so check the table name given in the oracle stage.
by natashab
Tue Nov 02, 2010 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation Error
Replies: 6
Views: 3522

Check if all links are linked in the job.Some link in the job is not linked to any stage.
by natashab
Tue Nov 02, 2010 4:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to get Reject records
Replies: 10
Views: 5900

In the transformer stage, give the constraint to check for isNotnull() of all 7 columns.[ IsNotNull(col1) And ...IsNotNull(col7) ] .
by natashab
Fri Oct 08, 2010 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence aborts with no such file or directory
Replies: 3
Views: 2138

The error message is:
Sequential_File_1,0: Unable to open /data/etldata/etl_parameter: No such file or directory.

The path is not parameterized.it's simply given as /data/etldata/etl_parameter
by natashab
Fri Oct 08, 2010 3:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence aborts with no such file or directory
Replies: 3
Views: 2138

Sequence aborts with no such file or directory

The main Sequence aborts with 'no such file or directory' error.The sequence calls a job which loads to a sequential file.The file update mode is set to Overwrite. The sequence has failed this time only with 'no such file or directory' error.we recompiled and re-executed the sequence ,it executed su...
by natashab
Mon Sep 20, 2010 1:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Tuncation Error
Replies: 4
Views: 3003

what should be done to make the job run without the truncation failed error?
by natashab
Mon Sep 20, 2010 12:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Tuncation Error
Replies: 4
Views: 3003

Datastage Tuncation Error

A job is designed with a source oracle stage loading to a target oracle stage through a transformer stage.When the job is executed it aborts with the below error. Target: Table truncation failed for "SCHEMA.TABLENAME". Is it a database issue, i.e - Privilege to truncate the table is not gi...
by natashab
Thu Sep 09, 2010 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: improving the performance in transformer stage
Replies: 4
Views: 3374

Which stage are you using to extract the data?If it's Oracle OCI stage then the array size can be set to the maximun value(32767) to improve the performance of the job
by natashab
Wed Sep 01, 2010 1:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Insert and Update
Replies: 2
Views: 2532

Yes,a single job can be designed to both insert and update records
by natashab
Fri Aug 27, 2010 12:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: source type dfloat to result type int32
Replies: 7
Views: 14333

When performing an aggregation using the aggregator stage,the output column's datatype will be dfloat by default(internally) though you have mentioned the DUPLICATE_REC_COUNT field's datatype as Integer(10) . So, mention the aggregation field's output datatype as Double(20) and then use a transforme...
by natashab
Fri Aug 27, 2010 11:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returned timestamp format not recognised
Replies: 2
Views: 2017

For INT_DATE field & WCOUNT fields you must have used some derivation in the transformer stage which doesn't return a timestamp value(yyyy-mm-dd hh24:mm:ss) or an integer value for those fields respectively.Check what values are generated for those fields.
by natashab
Fri Aug 27, 2010 2:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion error from ustring to string
Replies: 2
Views: 6531

The Unicode property for COL1 is set in the input link while it's not set in the output link in a particular stage.So either use it or remove it throughout the job flow(from src to trg ) .
by natashab
Tue Aug 17, 2010 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to generate unique keys for the same customer?
Replies: 8
Views: 4337

The sequence runs once everyday.Then will not the same customer having 2 incoming records with the amount deposited and amount withdrawn details be looked up and considered as 2 new records?If so, how to generate unique records for the same customer?
by natashab
Wed Aug 11, 2010 12:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to set not null column to null
Replies: 16
Views: 11204

If you want to set a Not Null field to a blank space then you can simply give " " in the transformer stage.It's a blank space. Or if you want to set a blank space when the input column's data is Null/no data use the below derivation in the transformer stage : If IsNull(inputcolumn) Then &q...