Search found 53125 matches

by ray.wurlod
Fri Apr 13, 2007 2:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read And Wirte the same named pipe in different jobs
Replies: 5
Views: 1442

Only if you can report a problem.
by ray.wurlod
Fri Apr 13, 2007 2:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ouput to Excel on Multiple Sheets
Replies: 18
Views: 5517

Unless you can use ODBC you're screwed. It's the only way you can access worksheets in an Excel workbook. And even then they're system tables. Get someone to create the DSN for you.
by ray.wurlod
Fri Apr 13, 2007 2:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write a delimeted string in to a sequential file thru routin
Replies: 5
Views: 1394

Why a routine? It's easier with a command. Convert the ";" characters to line terminator characters, then append to the existing file. In a command you can use tr to effect the conversion and echo (with the >> redirection operator) to write to the file. In a routine you can use Ereplace() to effect ...
by ray.wurlod
Fri Apr 13, 2007 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using Named pipe with multiple links on diff jobs
Replies: 3
Views: 1157

You lost control. Every named pipe must have a reading process consuming whatever the writing process is putting into the pipe. A broken pipe occurs whenever either of these processes stops. You need to send coordination messages so that the reading process can shut down gracefully.
by ray.wurlod
Fri Apr 13, 2007 2:01 am
Forum: General
Topic: DSSendMail
Replies: 9
Views: 6286

Take a look at the demonstration routine DSSendMailTesterAttachment. Try it with your values. If it works, diagnose the differences. If it doesn't work, read the error messages (double click the Result cell in the test grid) carefully. Carefully.
by ray.wurlod
Fri Apr 13, 2007 1:58 am
Forum: General
Topic: Not able to import metadata from Oracle 10g to DS 7.5.1 Vers
Replies: 4
Views: 1889

My car won't start. Tell me what's wrong. We cannot diagnose problems reported as "there is an error". We need to know the precise error message. Copy/paste it from the log detail view - do not summarize, do not paraphrase. Why are you using the ODBC stage for your import? Why not use the Oracle plu...
by ray.wurlod
Fri Apr 13, 2007 1:55 am
Forum: General
Topic: How to use Oracle 10G through datastage 7.1?
Replies: 3
Views: 1413

Only via a scripted approach, unless you have an OCI stage that is documented as working with Oracle 9i - this will connect successfully to Oracle 10g.

Otherwise upgrade to version 7.5.
by ray.wurlod
Fri Apr 13, 2007 1:54 am
Forum: General
Topic: Timestamp to week day in String (mon, tue)
Replies: 5
Views: 1783

Should not INVENTORY_TIMESTAMP be qualified with the input link name? Try it a piece at a time. Does TimestampToDate() work? Then does applying WeekdayFromDate() work applied to that result? Only then apply the Field() function. Put the results into stage variables; put them on separate output colum...
by ray.wurlod
Fri Apr 13, 2007 1:51 am
Forum: IBM QualityStage
Topic: Running QS match job from DS
Replies: 12
Views: 3209

Try the job log for the job sequence that contains the Execute Command activity - there should be an entry there showing the command that was sent.
by ray.wurlod
Thu Apr 12, 2007 8:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi format flat file - handling occurs clause
Replies: 3
Views: 2310

I am failing to see six 05-level items to receive the flattened OCCURS item ABC-CLIENT-INFORMATION in your target record. 05 SPLTC-CLIENT-INFORMATION-01. 10 SPLTC-CLIENT-INFORMATION-01-CLIENT-TYPE PIC X. 10 SPLTC-CLIENT-INFORMATION-01-CLIENT-ROLE PIC X(2). etc. 05 SPLTC-CLIENT-INFORMATION-02. 10 SPL...
by ray.wurlod
Thu Apr 12, 2007 8:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HOw to call procedure in Datastage Oracle Stage
Replies: 6
Views: 7831

What kumar_s has in mind, I believe, is not a before/after subroutine (because Call, in the SQL sense, does not work there unless you wrap it in BCI function calls), but probably the Open/Close commands in the OCI stage.
by ray.wurlod
Thu Apr 12, 2007 5:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge Stage
Replies: 4
Views: 1398

Every stage in a parallel job works only with the virtual Data Sets associated with its links*. What's on the other end of that link is totally irrelevant, provided that the rows match the record schema. Look at the generated osh and the score to see this happening. * (With the single exception, nat...
by ray.wurlod
Thu Apr 12, 2007 5:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Generator
Replies: 4
Views: 1384

... only if the total number of rows is a whole multiple of the number of partitions.
by ray.wurlod
Thu Apr 12, 2007 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT config file error
Replies: 3
Views: 4074

You may be surprised to hear that you specify port numbers through APT... environment variables. If you did not know that, chances are that you are not using non-default port numbers. DataStage is probably still trying to use rsh to start the section leader processes on the other nodes. Check the st...
by ray.wurlod
Thu Apr 12, 2007 5:13 pm
Forum: IBM QualityStage
Topic: Running QS match job from DS
Replies: 12
Views: 3209

Shouldn't it (the second -ipe.env argument) be followed by a pathname? Could this be why your report file isn't getting written, because it doesn't understand the project environment? (Please note that I have no experience running QS jobs from the command line, so if I'm on the wrong track, feel fre...