Search found 53125 matches

by ray.wurlod
Wed Apr 02, 2008 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2-ODBC Connectivity Issue (AIX 5.3)
Replies: 3
Views: 1612

The names are spelled differently in the two files. Is it DB2_SEMATST or DB2_SEMSTST ?
by ray.wurlod
Wed Apr 02, 2008 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HOw to force DataStage to ignore a database warning
Replies: 3
Views: 1525

I don't think there's anything in DataStage (obviously you can demote or suppress the warning with a message handler). Is there an environment variable for the database server that prevents generation of this particular message?
by ray.wurlod
Wed Apr 02, 2008 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log error in the sequence with exact error name
Replies: 6
Views: 1380

Only by reading the job log, either with a routine or a command. In the routine, use DSGetNewestLogId() to determine the most recent Fatal error(s) and DSGetLogEvent() to retrieve the detail of that event.
by ray.wurlod
Wed Apr 02, 2008 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reste the Surrogate File
Replies: 6
Views: 1084

What do you mean by "surrogate file"? Is this a state file?
by ray.wurlod
Wed Apr 02, 2008 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to connect to host: error code 39125
Replies: 20
Views: 7877

This is the first time you have reported success from UV_SCHEMA and UV.ACCOUNT. It was necessary to wait for that confirmation, and eliminate that possibility, before looking further. Queries are read-only, and do not affect (change) anything, particularly not other projects. You must now turn to th...
by ray.wurlod
Wed Apr 02, 2008 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: scratch disk Q
Replies: 4
Views: 1182

As a general rule you are correct.
by ray.wurlod
Wed Apr 02, 2008 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer not aborting with custom condition
Replies: 2
Views: 905

Use "automatically handle activities that fail" in all sequences or send your Failure triggers to a Routine activity that invokes UtilityFatalToLog.
by ray.wurlod
Wed Apr 02, 2008 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue
Replies: 8
Views: 2011

A preparatory question - what is "performance" in an ETL context?
by ray.wurlod
Wed Apr 02, 2008 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: resource limit being exceeded
Replies: 2
Views: 3376

The limit is one set in DB2, not one set in DataStage. Discuss with your DBA about increasing the limits, and/or try to create a query that uses fewer resources.
by ray.wurlod
Wed Apr 02, 2008 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need to Tune Datastage Job
Replies: 2
Views: 1304

What are you doing with the result of the join? I daresay that's where the slowness is arising. Create a job that performs the joins and sents the result through a Transformer stage to a sequential file. Add the constraint @FALSE to the Transformer stage output link. Run this job. How long does it t...
by ray.wurlod
Wed Apr 02, 2008 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connecting to VSAM from Datastage Server Edition
Replies: 1
Views: 929

Welcome aboard. :D Etiquette Note We do not do "ASAP" or "urgent". DSXchange is an all-volunteer site whose participants post as and when they can, and usually only if they have something useful to contribute. If you need urgent help, sign up with your support provider for priority service, and lear...
by ray.wurlod
Wed Apr 02, 2008 4:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Illegal Variable name/number
Replies: 9
Views: 2024

In that case you probably need
WHERE LKP_DD_015_03_S_PROD_INT.T1_ROW_ID = :3
by ray.wurlod
Wed Apr 02, 2008 4:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Discrepancy in the execution of the unix comnmand
Replies: 7
Views: 2135

Is DataStage executing from the same user ID that you used in UNIX?
by ray.wurlod
Wed Apr 02, 2008 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to connect to host: error code 39125
Replies: 20
Views: 7877

Code: Select all

SET-FILE UV UV.ACCOUNT UV.ACCOUNT
creates a pointer to the UV.ACCOUNT table, which pointer does not exist in your project by default.