Search found 53125 matches

by ray.wurlod
Thu May 02, 2013 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to make Web Service call
Replies: 1
Views: 1584

Always track down the "fault string" (error message). In this case "Cannot invoke Call with null namespace URI for method null". Have you forgotten to provide a mandatory namespace reference?
by ray.wurlod
Thu May 02, 2013 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find Last sunday of a month
Replies: 4
Views: 1557

Then just use PreviousWeekdayFromDate() with a hard coded (or parameterised) date.
by ray.wurlod
Thu May 02, 2013 3:01 pm
Forum: General
Topic: Error writing to RT_STATUS76
Replies: 13
Views: 3533

Check also whether RT_STATUS76/DATA.30 or RT_STATUS76/OVER.30 has reached its 2GB size limit.
by ray.wurlod
Thu May 02, 2013 1:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find Last sunday of a month
Replies: 4
Views: 1557

Calculate the date of the last day of March as

Code: Select all

DateFromComponents(#jpYear#,3,31)
Use a similar technique for the last day of October.

Calculate the last Sunday of March as

Code: Select all

PreviousWeekdayFromDate(svLastDayOfMarch,'Sunday')
Use a similar technique for the last Sunday of October.
by ray.wurlod
Thu May 02, 2013 1:29 am
Forum: General
Topic: notiification
Replies: 2
Views: 785

A separate something ONLY.
by ray.wurlod
Thu May 02, 2013 1:27 am
Forum: General
Topic: Notification stage not working
Replies: 10
Views: 1824

Check that your SMTP mail client is OK and that the mail server is up and running.
by ray.wurlod
Thu May 02, 2013 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: alternative to Oconv
Replies: 5
Views: 1860

There is no easy alternate for the Parallel Transformer stage. You could build a list of all non-printing characters (using Char() functions) in the initialization expression of a stage variable and a corresponding list of that many dots in the initialization expression of another stage variable, an...
by ray.wurlod
Wed May 01, 2013 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading & Writing dataset with different number of nodes
Replies: 8
Views: 7882

Where the configuration of the reading job is different from that used in the job that wrote the Data Set, DataStage uses the configuration file embedded in the Data Set descriptor file; it makes a read-only copy of that configuration and uses it to read the Data Set and (necessarily) repartitions t...
by ray.wurlod
Wed May 01, 2013 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bulk Load to SQL Server(ODBC)
Replies: 1
Views: 1656

The delay here may be the network between your DataStage engine and the SQL Server machine.
by ray.wurlod
Wed May 01, 2013 2:33 pm
Forum: General
Topic: Notification stage not working
Replies: 10
Views: 1824

How long are you waiting before you decide that the Notification activity has hung? It can take as long as a minute or two.
by ray.wurlod
Wed May 01, 2013 2:32 pm
Forum: General
Topic: Transformer Stage Doubt
Replies: 2
Views: 901

You can do anything in any expression (stage variable initialization, loop variable initialization, constraint, loop variable derivation, stage variable derivation, output column derivation) that the expression editor allows. You will note that If..Then..Else is one of the options on the operand men...
by ray.wurlod
Wed May 01, 2013 2:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel and Merge Stage
Replies: 2
Views: 1924

It depends what you mean by "combine". The analogies that you need are that the Funnel stage effects a UNION ALL of its input rows, while the parallel Merge stage effects a "master and updates" approach (which means that unmatched masters and unmatched updates may not make it int...
by ray.wurlod
Wed May 01, 2013 2:28 pm
Forum: General
Topic: IBM Datastage Parallel JOB
Replies: 1
Views: 706

I'm not sure what you mean by "View". If you mean read-only, the answer is that this is driven by DataStage roles. A DataStage Developer opens jobs in read-write mode, but a DataStage Super Operator opens jobs in read-only mode. A Developer attempting to open a job already opened for editi...
by ray.wurlod
Tue Apr 30, 2013 3:09 pm
Forum: General
Topic: Email notification for failed jobs in job sequence
Replies: 8
Views: 2729

After all the jobs have finished check the $JobStatus activity variable for each and, if any is not DSJS.RUNOK, generate your email.
by ray.wurlod
Tue Apr 30, 2013 3:08 pm
Forum: General
Topic: Mulit-instance px job: seq invoc id missing
Replies: 3
Views: 927

Loop shouldn't matter - $Counter is only available once per iteration.