Search found 53125 matches

by ray.wurlod
Thu Sep 02, 2010 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix log and Director log
Replies: 4
Views: 1897

Code: Select all

SELECT @ID FMT '40L', EVAL "FIELD(@ID,'_',3,1)" CONV 'D-YMD[4,2,2]' FMT '10R' AS RUN_DATE, EVAL "FIELD(@ID,'_',2,1)" CONV 'MTS' FMT '8R' AS RUN_TIME, EVAL "FIELD(@ID,'_',4,1) FMT '8R' AS PID FROM "PH&";
by ray.wurlod
Thu Sep 02, 2010 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01400: cannot insert NULL
Replies: 17
Views: 9087

What has changed between when it was running successfully and when it is not running successfully? I can not accept "nothing" - you have to find what has changed, even if it's the data.
by ray.wurlod
Thu Sep 02, 2010 5:32 am
Forum: General
Topic: Sequencer ALL or Any - I need both
Replies: 11
Views: 5841

The three sequencers achieve nothing, your job design would still have the originally-reported problem.
by ray.wurlod
Thu Sep 02, 2010 5:30 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: IA error: Invalid username and password
Replies: 6
Views: 4894

In the configuration of IA are you using a static DataStage credential user and, if so, might that user's password have expired or otherwise have become invalidated/locked?
by ray.wurlod
Thu Sep 02, 2010 12:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference between load methods of ABAP extract stage
Replies: 3
Views: 1663

Not me. But accessing Help from within the stage will probably provide you with some clues.
by ray.wurlod
Thu Sep 02, 2010 12:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing the Data format - Columns to Rows
Replies: 9
Views: 3542

Excellent.

(My server job background came through for a bit, there.)
by ray.wurlod
Thu Sep 02, 2010 12:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-01400: cannot insert NULL
Replies: 17
Views: 9087

Something is clearly different. Find out what it is. It might be in the operating system, the database(s), the authentications, anything.
by ray.wurlod
Thu Sep 02, 2010 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs in ready state for APT_NO_JOBMON=FALSE
Replies: 3
Views: 2738

JobMonApp is a Java application. It should be started the same way on Windows as on UNIX (JobMonInit). See this DeveloperWorks article for example.
by ray.wurlod
Wed Sep 01, 2010 10:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting error when compiling the Datastage job
Replies: 12
Views: 14841

No. Only the parallel Transformer stage requires the C++ compiler. The server Transformer stage (and the BASIC Transformer stage) compile within the DataStage server engine environment. It is vital that the four environment variables APT_COMPILER, APT_COMPILE_OPTIONS, APT_LINKER and APT_LINKER_OPTIO...
by ray.wurlod
Wed Sep 01, 2010 10:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs in ready state for APT_NO_JOBMON=FALSE
Replies: 3
Views: 2738

Stuck at ready state is rarely related to the job monitor (which is an independent application) but is usually related to waiting for some resource, such as a large, sorted extraction query to complete or for a database or table lock to be released.
by ray.wurlod
Wed Sep 01, 2010 10:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Changing the Data format - Columns to Rows
Replies: 9
Views: 3542

Transformer stage with two outputs followed by a Funnel stage. The key goes to both output links. The first three columns go to the first output link, the other three columns go to the second output link.
by ray.wurlod
Wed Sep 01, 2010 10:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Logic in Datastage
Replies: 14
Views: 8662

RANK is a display function, not a selection function. As a general rule it's not something I'd ask an ETL tool to do - it's something I'd ask a reporting (or business intelligence tool) to do.

While it can be done in ETL, you need to decide in advance how you're going to handle tied values.
by ray.wurlod
Wed Sep 01, 2010 10:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cannot view any jobs anymore
Replies: 4
Views: 1620

Never running DS.REINDEX without exclusive access to the project would be favourite.
by ray.wurlod
Wed Sep 01, 2010 10:45 pm
Forum: General
Topic: Sequencer ALL or Any - I need both
Replies: 11
Views: 5841

Cool Thanks Ray - I was thinking User Varibles - but this is much simplier - do you have examples of this type of coding? - I am guessing Innovocation ID and Job Status - as you said - check on the three possible streams after exiting the Any Sequencer - with a wait type loop on those jobs running ...
by ray.wurlod
Wed Sep 01, 2010 10:43 pm
Forum: General
Topic: Sequencer ALL or Any - I need both
Replies: 11
Views: 5841

Ray - what about a sub sequence - that gets passed the current Nested Condition triggers - to run a Nest_Condition within the Sub sequence - when any or all jobs finish in the sub Sequence it returns to the calling Sequence - no routine necessary - will test and advise results I thought (briefly) a...