Search found 53125 matches

by ray.wurlod
Fri Jul 07, 2006 5:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff between Server and parallel job in case or multiple CPU
Replies: 14
Views: 4351

Define performance. 500,000 rows is not really many for this kind of test. Try with 5 crore rows and you will begin to see some differences. It is probably also the case that at least one of your stages (Oracle) is operating in sequential mode. Are you using the Oracle enterprise stage? Is the Oracl...
by ray.wurlod
Fri Jul 07, 2006 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sparse lookup is giving different results?
Replies: 1
Views: 781

The row count on a sparse lookup link will depend on exactly which key values the job looks up. Presumably, on different runs, you are looking for a different set of key values.
by ray.wurlod
Thu Jul 06, 2006 9:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Supress extra Carriage returns
Replies: 21
Views: 4172

Code: Select all

Ereplace(InLink.TheString,svCRLF,svLF,1,Count(InLink.TheString,svCRLF))

where stage variable svLF is initialized to Char(10) and stage variable svCRLF is initialized to Char(13):Char(10).
by ray.wurlod
Thu Jul 06, 2006 9:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Sequence from command line
Replies: 11
Views: 2662

kduke wrote:It is well documented perhaps over documented.
Done properly there is no such thing as over-documented, imho.
by ray.wurlod
Thu Jul 06, 2006 9:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HTML to XML transform
Replies: 4
Views: 777

DataStage is really row-oriented. Perhaps you could re-format the page into a single row (or at least some appropriate chunk between starting and ending tags) then use appropriate techniques (for example lots of Ereplace() invocations in a routine) to substitute tags and the like. Do you have the co...
by ray.wurlod
Thu Jul 06, 2006 9:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Select access to sys.dba_extents
Replies: 9
Views: 2756

Because it needs to determine/verify from this table how the partitioning of the table is organized (or, indeed, if there is any).
by ray.wurlod
Thu Jul 06, 2006 5:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i convert foxfro tables into text file's
Replies: 9
Views: 2152

Do you have an ODBC driver for FoxPro? If so the way forward is clear.
by ray.wurlod
Thu Jul 06, 2006 5:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Instance Job viewing in Director
Replies: 4
Views: 1251

Code: Select all

CREATE.FILE DICT RT_STATUS 3 1 4


What happened to it? You might also be able to restore it from backup.
by ray.wurlod
Thu Jul 06, 2006 5:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs not releasing
Replies: 7
Views: 2001

When you say "restarting the server" do you mean restarting DataStage or re-booting the operating system? The latter is pretty much guaranteed to work (since locks are held in memory) unless your Repository database(s) have been corrupted.
by ray.wurlod
Thu Jul 06, 2006 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regular Exp in Where clause of Filter Stage
Replies: 4
Views: 3437

You can use SQL wildcards (% or _). The ^ character is not an SQL wildcard (based on the SQL CAE Access Group's 1992 standard) so would be interpreted literally.
by ray.wurlod
Thu Jul 06, 2006 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running Sequence from command line
Replies: 11
Views: 2662

There is no "compile from the command line" utility in the product.
by ray.wurlod
Thu Jul 06, 2006 5:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need information on resizing dynamic hash file
Replies: 3
Views: 1356

No idea. Try it from a telnet connection.
by ray.wurlod
Thu Jul 06, 2006 5:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: not a valid load module:
Replies: 4
Views: 2658

As soon as it finds a function of the name for which it is searching it stops looking. That's why you need to have the 32-bit libraries first for DataStage processes, since DataStage (except on a very few platforms) is a 32-bit application.
by ray.wurlod
Thu Jul 06, 2006 5:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem while restartting datastage server
Replies: 3
Views: 964

Take more time. Check with netstat that there are no active connections.
by ray.wurlod
Thu Jul 06, 2006 5:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage / Error 911
Replies: 4
Views: 3644

Re: Abnormal termination of stage / Error 911

JeroenDmt wrote:This problem occurs in every project though, including projects that have been running without any problem.

What has changed? "Nothing" is not the correct answer.