Search found 15603 matches

by ArndW
Mon Jun 28, 2010 1:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: even records one target,odd number records one target
Replies: 9
Views: 5953

lakNAR - he doesn't want to use a transform stage...
by ArndW
Mon Jun 28, 2010 1:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MKS Toolkit "Named Pipes" and RCP
Replies: 8
Views: 2278

In this case the input to the shared container is one of 80 or so DB2 tables so we can't simple get the schema or column names. I've opened up a MKS support question but if that comes back negative I'll have to bite the bullet and add the list of columns to the parameters or create and use schema fi...
by ArndW
Mon Jun 28, 2010 1:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Connector hangs for Dynamic Query
Replies: 5
Views: 1389

What database are you connecting to? I don't recall the particulars of ODBC connectors and how the parameters need to be passed. If you replace your custom query with something simple like "SELECT COUNT(*) FROM MyTable;" does that work as expected?
by ArndW
Mon Jun 28, 2010 10:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: even records one target,odd number records one target
Replies: 9
Views: 5953

Questions like this worry me. Either they are interview questions (which bothers me in any case) or someone is looking for a complicated solution to a simple problem. The transform stage would easily do this using @INROWNUM or, if parallel processing is being done, by @PARTITIONNUM + ( @NUMPARTITION...
by ArndW
Mon Jun 28, 2010 8:56 am
Forum: General
Topic: Running routines concurrently
Replies: 8
Views: 2090

Also, we should know what the conditions are for each link out of the original job.
by ArndW
Mon Jun 28, 2010 6:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MKS Toolkit "Named Pipes" and RCP
Replies: 8
Views: 2278

MKS Toolkit "Named Pipes" and RCP

My problem is that I have a shared container that uses runtime column propagation (what does that have to do with named pipes, you ask?) and it receives rows with 4 column names that are known and used for processing and an indeterminate number of other columns. I want to compute a single CRC32 or s...
by ArndW
Mon Jun 28, 2010 4:55 am
Forum: General
Topic: Running routines concurrently
Replies: 8
Views: 2090

I wanted to ensure that what the op was referring to was, indeed, the DB statistics package which, if I recall correctly, shouldn't be run in parallel but does have some concurrent option.
by ArndW
Mon Jun 28, 2010 3:44 am
Forum: General
Topic: Running routines concurrently
Replies: 8
Views: 2090

Routines can be run concurrently. What sort of a function is "gather_schema_stats" (is it a DataStage BASIC function, or a database function, or something else)? Does the RA1 function take 13 seconds to run?
by ArndW
Mon Jun 28, 2010 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to convert Square_feet into Square_meter
Replies: 9
Views: 2238

Doing it in a transform stage is the simplest way. You could write your own c++ buildop to perform this conversion but it would be a lot more work than using the transform stage.
by ArndW
Fri Jun 25, 2010 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsapi_slave.exe - Orphan process
Replies: 6
Views: 5130

You don't necessarily need to reboot your server (although it does give you a clean machine), you can use normal methods to kill those dsapi_slave processes. If no users are logged in and nothing is running, the Windows 2003 command line command of taskkill should do the trick.
by ArndW
Fri Jun 25, 2010 8:36 am
Forum: General
Topic: Datastage IIS8.1
Replies: 2
Views: 1167

Many people have installed 8.1 on LINUX to date.

What exactly is your problem?
by ArndW
Fri Jun 25, 2010 3:58 am
Forum: General
Topic: .isx format in Datastage export
Replies: 10
Views: 16633

I think I've used WinZip to uncompress the file, and just tested with my local compression tool at work, WinRAR. The single element files in the .isx file are in XML format and I haven't tried to import them but if you decide to give it a go please post your results to this thread so that others mig...
by ArndW
Fri Jun 25, 2010 3:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL0407N - DB2 null value problem
Replies: 14
Views: 7625

-- please ignore this post, I was answering in PX-Mode and not in server mode -- Turn on "$APT_PRINT_SCHEMAS" and examine that entry in the directory log after a run. This will show you where your actual runtime metadata differs from what you expect. Notably with DB2 you can declare the co...
by ArndW
Fri Jun 25, 2010 3:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Metadata
Replies: 8
Views: 2328

If the target is just one table, then as Sainath has already stated it makes the most sense to put all the data into the table and then change the queries to ones appropriate for user queries of type 1, 2 or 3.