Search found 53125 matches

by ray.wurlod
Fri Jun 08, 2007 8:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Details
Replies: 3
Views: 1288

In a job create a single Varchar column called NAME. Mark it as key. Use a UniVerse or Hashed File stage to read from DS_JOBS. Constrain so that you only get names beginning with other than "\" or "/" - these are control records, recording the existence of categories and the next available job number.
by ray.wurlod
Fri Jun 08, 2007 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Benchmark for DB2/UDB Enterprise Stage
Replies: 3
Views: 1189

The main bottleneck will be how fast the DB2 direct write can handle the rows. You can automatically effect parallel loading into partitioned tables. 2000 rows/sec ought not to be difficult at all.
by ray.wurlod
Fri Jun 08, 2007 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extracting required string from routine return value
Replies: 11
Views: 2434

Because you posted in the server forum, you got answers that will work in server jobs.
by ray.wurlod
Fri Jun 08, 2007 8:16 am
Forum: General
Topic: An error occured while invoking a Create New Plugin
Replies: 2
Views: 951

Templates are saved on the client machine, in a folder called Templates. For example C:\Program Files\Ascential\DataStage\Templates.
I suspect you lack write permission to this folder. Check.
by ray.wurlod
Fri Jun 08, 2007 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find the files in the particular path specified in un
Replies: 4
Views: 1766

Welcome aboard.

This particular forum exists so you can heap praise upon the cogent answers you receive from it.

You need to post your question in the forum specifically for parallel jobs.

Once there I'm sure it will be answered.
by ray.wurlod
Fri Jun 08, 2007 1:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Join
Replies: 3
Views: 1499

Plan how you would do it in SQL. That will suggest the number of Join stages that you will require. Join stages can be cascaded.
by ray.wurlod
Fri Jun 08, 2007 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restarting Datastage Services
Replies: 3
Views: 2451

A lock on RT_CONFIGnnn usually indicates that someone has a Monitor open on job number nnn. This will properly prevent the job from being recompiled, which would overwrite the RT_CONFIGnnn table from which the Monitor is obtaining some of its information.
by ray.wurlod
Fri Jun 08, 2007 1:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Timestamp - Metadata Import
Replies: 2
Views: 788

No, because it's just inaccurate. It's also inaccurate with some Decimal data types. Prefer the Orchestrate orchdbutil utility. This advice is even give in IBM training classes.
by ray.wurlod
Fri Jun 08, 2007 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 7
Views: 2263

However these functions are not exposed in C++ and so are not available in parallel routines or Build stages.
by ray.wurlod
Fri Jun 08, 2007 1:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SIGPIPE signal caused by closing of the socket on port x
Replies: 3
Views: 1424

Welcome aboard. :D The underlying architecture is radically different in version 8.0 and chances are that more processes, possibly on separate machines, will be involved. There is the repository database (Information Server), there is a WebSphere Application Server exposing services such as the meta...
by ray.wurlod
Fri Jun 08, 2007 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to read a paragraph data(clob datatype)
Replies: 4
Views: 1661

If it's a text file, simply mark the column "contains line terminators" (scroll right in the Columns grid to find this setting).
by ray.wurlod
Fri Jun 08, 2007 1:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Edition of Windows Vista that support DataStage Server
Replies: 8
Views: 2874

Check the IBM web site. At the date of this post, no version of DataStage (client OR server) is supported on any Vista operating system, irrespective of the fact that it may work. Monitor the IBM web site, or have your vendor advise when one becomes available. Don't hold your breath - the first patc...
by ray.wurlod
Fri Jun 08, 2007 1:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL for datastage
Replies: 7
Views: 1502

The generated SQL in an ODBC stage will be fully compliant with the grammar specified in the ODBC 3.0 standard. User-defined SQL can be anything legal for the database, as it is passed through unchanged by the driver. However, the parameter markers must correctly bind to the columns in the Columns g...
by ray.wurlod
Fri Jun 08, 2007 1:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extracting required string from routine return value
Replies: 11
Views: 2434

Code: Select all

Ans = Field(Output, @FM, Count(Output,@FM) + 1, 1)


It appears that DCount() can not be used in this syntax.
by ray.wurlod
Fri Jun 08, 2007 1:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file question
Replies: 9
Views: 1819

Did you mean "hashed" file?
:roll: