Search found 53125 matches

by ray.wurlod
Wed Sep 23, 2015 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information Server DataStage operator logic error
Replies: 9
Views: 10121

You might also consult the Message Reference Guide to see whether IIS-DSTAGE-ABAP-E-00746 is there. I'm not currently at a location where version 11.3 manuals are available.
by ray.wurlod
Wed Sep 23, 2015 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information Server DataStage operator logic error
Replies: 9
Views: 10121

Again, read your errors carefully.

This time the main problem seems to be ABAP background job time-out occurred as defined using BG_JOB_TIMEOUT property.

Work with your SAP administrators to verify and probably suggest a better value for this property.
by ray.wurlod
Tue Sep 22, 2015 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can't read a seq. file created in a server job in a Px job
Replies: 9
Views: 3227

Verify that the date format produced by the server job is identical to that expected by the parallel job. If it isn't, change the format string for the date data type columns in the parallel stage that reads the file.
by ray.wurlod
Mon Sep 21, 2015 5:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Information Server DataStage operator logic error
Replies: 9
Views: 10121

Welcome aboard.

Tip #1 is to read the error messages in detail.

In this case the really important piece of information is ERROR connection to partner '192.168.168.158:3310' broken

You need to work out, possibly involving your network team, why the connection got broken.
by ray.wurlod
Mon Sep 21, 2015 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata connector - Bulk load/stream/update
Replies: 1
Views: 1106

Have you read the Connectivity Guide for Teradata manual? It explains the alternatives and gotchas.
by ray.wurlod
Mon Sep 21, 2015 5:33 pm
Forum: General
Topic: Server routine
Replies: 3
Views: 1195

Also ditch the RETURN function. RETURN(Ans) is automatically created.
by ray.wurlod
Mon Sep 21, 2015 5:32 pm
Forum: General
Topic: To susbtract hours from DATETIME field
Replies: 3
Views: 1437

Send me an email I'll send you a DSX. Website is under redevelopment in my copious free time (yeah.).
by ray.wurlod
Sun Sep 20, 2015 10:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Selecting fields using Schema files
Replies: 7
Views: 2931

It is the very nature of sequential files that you must read every column. You must, indeed, read past every single byte to get to the next. Using a schema file does not get around this requirement, though you may be able to leverage the "Drop on Import" property - something I've not seen ...
by ray.wurlod
Sat Sep 19, 2015 10:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merger two csv files as two seperate worksheet
Replies: 6
Views: 1887

Given that you're running on Windows you should be able to use the Microsoft ODBC driver for Excel to write to an existing (even if empty) worksheet. Alternatively write to a CSV file that can be opened using Excel. With a common key it should be a simple join. Start with a full outer join so that y...
by ray.wurlod
Sat Sep 19, 2015 4:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merger two csv files as two seperate worksheet
Replies: 6
Views: 1887

Never assume.

The stated requirement is to merge two CSV files into one CSV file. That can be done easily with DataStage once the rules for merging are comprehended.

But why was "worksheet" mentioned in this case?
by ray.wurlod
Sat Sep 19, 2015 1:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merger two csv files as two seperate worksheet
Replies: 6
Views: 1887

Not enough information, though the answer is probably yes. Are the metadata of the two CSV files identical? What does the resultant CSV file have to look like in terms of its columns? What has "worksheet" got to do with anything?
by ray.wurlod
Fri Sep 18, 2015 4:24 pm
Forum: General
Topic: Cognos Data Manager to DataStage
Replies: 7
Views: 5687

Where did you hear this? Pump THEM for more information.
by ray.wurlod
Fri Sep 18, 2015 4:19 pm
Forum:
Topic: IGC content and multiple languages
Replies: 4
Views: 4577

Tres formidable!

Hey, DSXchange can do it too! :D
by ray.wurlod
Fri Sep 18, 2015 4:17 pm
Forum:
Topic: IGC content and multiple languages
Replies: 4
Views: 4577

Tres formidable!
by ray.wurlod
Thu Sep 17, 2015 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing a specific character from string
Replies: 9
Views: 3312

For each row processed all stage variables are evaluated before the loop is executed.