Search found 53125 matches

by ray.wurlod
Tue May 31, 2005 4:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server connections
Replies: 9
Views: 6663

It might be the class A IP address. Can you ping 18.37.20.20 from the DataStage server machine? Given that both databases are SQL Server, and that they are identically configured (same driver, same port) it's got to be something about the connectivity. Also check that MYS_SIEBEL_DB really is using p...
by ray.wurlod
Tue May 31, 2005 12:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parse Header, Trailer and Detail using CFF
Replies: 6
Views: 2109

... and how do you think the tail command works out which are the final lines in the file? :roll:
by ray.wurlod
Mon May 30, 2005 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to import the job with the difference client code page?
Replies: 5
Views: 2837

Open the DSX file with any text editor and change the CharacterSet property (it's very near the top of the file) to the appropriate value.

Export files are always made on the client, so that the operating system of the server should be irrelevant.
by ray.wurlod
Mon May 30, 2005 11:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to generate sequence no
Replies: 4
Views: 1379

You've changed your mind! In your first post you specified "After completion this job, I want to generate one more seq no in second job i.e max no in the first job+1." That's the solution I provided. To begin from 1 each time, you can use @INROWNUM or @OUTROWNUM as Craig suggested, or reset the sequ...
by ray.wurlod
Mon May 30, 2005 11:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dscmdexport standalone deployment
Replies: 5
Views: 1269

Surely at the very least it would need dsobjects.dll. That the one through which a connection is made to projects. Doubtless there will be others on which dscmdexport.exe depends, either directly or indirectly. Not sure how much can be deployed without paying for extra licensing; you should obtain a...
by ray.wurlod
Mon May 30, 2005 11:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I want to replace the value in a particular position
Replies: 7
Views: 1551

Philosophical

Surely, then, it was I who solved your problem? :?
by ray.wurlod
Mon May 30, 2005 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compilation error - Error when checking composite operator
Replies: 6
Views: 3690

Linux version and compiler version are VERY sensitive! Hopefully someone with precise knowledge will post exactly what can and can't be done. Have you posted this on Ascential Developer Net ? Does your Sequential File stage have a rejects link? What is the value of the rejects handling property?
by ray.wurlod
Mon May 30, 2005 11:42 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Primer for Web Services
Replies: 4
Views: 3131

That's one for my Favorites page! :D
by ray.wurlod
Mon May 30, 2005 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to generate sequence no
Replies: 4
Views: 1379

You must keep knowledge of where the first job left off. The easiest way is to design so that this is kept in a file (text file or hashed file). Before the first run, initialize the value in this file to 0. From your job, maintain your sequence however you like. Create an output link that passes onl...
by ray.wurlod
Mon May 30, 2005 7:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improving Performance
Replies: 9
Views: 2786

Don't do anything you don't have to. This includes: Be selective when extracting data to process; only select the rows you need from source, rather than grabbing them all then discarding some in DataStage. (This is not applicable for sequential files, where you necessarily have to read them sequenti...
by ray.wurlod
Mon May 30, 2005 7:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Parse Header, Trailer and Detail using CFF
Replies: 6
Views: 2109

That one's easy: you can't. With no way of determining the record type from within the data, and no a priori knowledge of the number of lines in the file, you're stuck. An easy mechanism, however, is to have a little routine that captures the number of lines (be exeuting wc -l command, for example) ...
by ray.wurlod
Mon May 30, 2005 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference between SAS Stage and SAS dataset stage
Replies: 1
Views: 729

I doubt that the server forum is a good place to ask this question. :oops:

In summary, the SAS stage accesses SAS "directly", whereas the SAS Data Set stage creates a persistent Data Set in a format compatible with SAS.
by ray.wurlod
Mon May 30, 2005 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort after 999.999 warning
Replies: 7
Views: 1848

Warning!! Warning!!

In a production environment, one warning is too many imho. One should always seek to design server jobs so that they do not generate any warnings. Then, if one ever does occur, it means that something truly unusual has occurred. In parallel jobs it's more difficult to eliminate certain specific warn...
by ray.wurlod
Mon May 30, 2005 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: STAGE has unexpected STATUS value
Replies: 6
Views: 1427

Recompiling, among many other things, does have the effect of resetting stage information in the status file. Or causing another wave number to be used next time the job is run, depending on internal conditions, which I'd prefer not to discuss.
by ray.wurlod
Mon May 30, 2005 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delay accessing properties of a sequencer
Replies: 4
Views: 1288

Do you have eighteen squillion jobs in the project? When you open a Job Activity in a job sequence, a sorted list of all jobs in the project has to be requested from the server, sent to the client, and used to populate the drop-down list of job names inside the Job Activity. There's probably some tu...