Search found 48 matches

by oracledba
Tue Mar 31, 2015 9:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage in parallel mode?
Replies: 4
Views: 4010

i second that.. As a general rule, Datastage Enterprise Edition automatically combines pipelining, partitioning and parallel processing. The concept is hidden from a Datastage programmer. The job developer only chooses a method of data partitioning and the Datastage EE engine will execute the partit...
by oracledba
Tue Mar 31, 2015 9:32 am
Forum: General
Topic: OPTION to parameterize different jobs in the Sequence JOB
Replies: 1
Views: 1637

OPTION to parameterize different jobs in the Sequence JOB

We have two versions of the code a generic version of the code already developed that applies across all clients (makes use of the generic stage) a traditional method specific for each client I developed. In the existing generic method the sequence job calls the file extraction job, followed by data...
by oracledba
Fri Mar 27, 2015 9:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Table NO RCP
Replies: 6
Views: 5274

ok found the error...in the target ODBC connector the table name was referencing an old table since this job was copied from an older job. replaced with the current table name. reran the job with no problems.

Still this error from the log is very misleading and inaccurate. :roll:
by oracledba
Fri Mar 27, 2015 8:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Table NO RCP
Replies: 6
Views: 5274

each column to be mentioned in the WHERE clause is identified in the metadata as Key which is the reason i am confused that I am getting this error.
by oracledba
Thu Mar 26, 2015 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Table NO RCP
Replies: 6
Views: 5274

tried replacing the parameter with the actual table name and the error doesn't go away (same error)
by oracledba
Thu Mar 26, 2015 12:57 pm
Forum: General
Topic: JobControl Job aborted
Replies: 6
Views: 3132

this is the sequence job error. Post the abort message from the parallel job. Master failed because one of the jobs it is calling is aborting.
by oracledba
Thu Mar 26, 2015 12:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update Table NO RCP
Replies: 6
Views: 5274

Update Table NO RCP

Source stage (Flat File): Target stage (ODBC Connector) Usage: Write mode = Update; Generate SQL = Yes; Table name = #target_table# NO RCP with this job.. I have the primary key I want to update on selected in the target ODBC connector stage which matches the primary key in the database table At run...
by oracledba
Thu Mar 26, 2015 9:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel job reports failure (code 139)
Replies: 8
Views: 6084

two possibilities

it could be related to a problem with your ODBC.ini file setup.
If you are using an ODBC setup then you may want to test the connection to ensure it is good.


it could also be related to the length of the filename. reduce the filename length and try again
by oracledba
Thu Mar 26, 2015 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trailing characters. Cant get rid
Replies: 8
Views: 5624

try this

TrimLeadingTrailing(Trim(input column, char(13), 'T'))
by oracledba
Mon Mar 23, 2015 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Order of Columns in Select Query and metadata!!!
Replies: 2
Views: 2269

Yes have the metadata in the same order.

As craig explained if you have set Generate SQL at runtime then you dont have to worry about it. 8)
by oracledba
Tue Mar 17, 2015 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TrimLeadingTrailing NULLS
Replies: 9
Views: 6697

any other suggestions??
by oracledba
Tue Mar 17, 2015 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TrimLeadingTrailing NULLS
Replies: 9
Views: 6697

if lookup doesn't happen then the fields from that link are set to NULL with the Continue option. That is the null i am talking about In Transformer I am checking and if it is null then set the internal error code (300) else 0 before i check the null I am trimming the value coming in the gender fiel...
by oracledba
Tue Mar 17, 2015 12:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TrimLeadingTrailing NULLS
Replies: 9
Views: 6697

i am not doing any transformations at this point so no need to convert null to value.

If IsNull(TrimLeadingTrailing(lnk_in_tfm.Gender)) Then 300 Else 0

will my function trim the null is what I need clarification on??

if it does then proper error code wont be outputted.
by oracledba
Tue Mar 17, 2015 10:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TrimLeadingTrailing NULLS
Replies: 9
Views: 6697

TrimLeadingTrailing NULLS

does TrimLeadingTrailing() remove nulls from lookup?? doing lookup upstream onb gender and if lookup fails then being set as continue. This means if lookup fails then the The fields from that link are set to NULL and Continues processing any further lookups before sending the row to the output link....