Search found 15603 matches

by ArndW
Wed Nov 07, 2012 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to print below requirement
Replies: 14
Views: 4785

I can't think of an easy direct way to do this in a PX job offhand. It isn't difficult to do with a Server job. How big is your data volume?
by ArndW
Wed Nov 07, 2012 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter in WHERE clause
Replies: 23
Views: 7265

I use this method all the time with RCP and generic jobs. Often I want to process tables whose key column have different names so I pass the key in as a parameter, use a modify stage to define a "known" key name, and can then process that constructed column through whatever manipulations a...
by ArndW
Wed Nov 07, 2012 2:39 am
Forum: General
Topic: Unable to start the server
Replies: 3
Views: 1697

Is this a new installation or has DataStage worked before on this system. If it has worked before, what changes were made between the time it worked and now?
by ArndW
Wed Nov 07, 2012 2:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to print below requirement
Replies: 14
Views: 4785

Since transform loops, which would solve your problem, are only available in later releases that solution cannot be used. What is the maximum number that can be in Column B? If it is a known, and small, number {n} you could make a transform stage with {n} outputs each coupled to a constraint that wo...
by ArndW
Wed Nov 07, 2012 2:33 am
Forum: General
Topic: Run-time error '9': Subscript out of range.
Replies: 12
Views: 8459

Might it be possible that you installed some other software (or had software installed/updated automatically) on your client PC? This might have overwritten DLLs and thus caused your problems. A client re-installation would solve your problem if that were the cause.
by ArndW
Tue Nov 06, 2012 11:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter in WHERE clause
Replies: 23
Views: 7265

I would recommend using a Modify stage to create a new column (call it TempKeyCol) from the real column name as given in the parameter #KEYCOL#, then have your SQL do

Code: Select all

DELETE FROM #SCHEMA#.#TABLE# WHERE #KEYCOL#=ORCHESTRATE.TempKeyCol
by ArndW
Tue Nov 06, 2012 5:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RGGEM stage variable not allowed
Replies: 3
Views: 1493

"RGGEM" is not a reserved word for a variable so should cause an issue. What does your constraint look like?
by ArndW
Mon Nov 05, 2012 11:11 am
Forum: General
Topic: Copyright Violation
Replies: 10
Views: 3451

That sucks - particularly if the company doesn't respond and claim to hold copyright. A quick overview of the other articles seem to confirm your suspicions. They are certainly on my blacklist!
by ArndW
Mon Nov 05, 2012 8:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine appears to have a memory leak
Replies: 18
Views: 9561

While not thrilling news, I'm glad they confirmed what you've already found out. I'm glad I'm using BuildOps here - the one I ran today processed 114 Million records, each about 1Kb wide :)
by ArndW
Mon Nov 05, 2012 5:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Testing jdbc Oracle Connection from Datastage
Replies: 6
Views: 3805

"IIRC" -> If I Recall Correctly
by ArndW
Sun Nov 04, 2012 2:46 am
Forum: General
Topic: Tuning DataStage
Replies: 2
Views: 1305

Doing runstats on DB2 is always helpful, but in your case that would optimize access times and queries on your repository, this could improve response times for viewing logs in the director or saving/compiling jobs in the designer, but won't make your jobs run faster (unless each job writes tens of ...
by ArndW
Sat Nov 03, 2012 12:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Junk characters in Sequential file
Replies: 8
Views: 5562

Another thing you might try is to make a copy of the job you wrote for 'abcdef' and replace the DB2 stage with a row generator and see if you still get the prepended junk characters.
by ArndW
Sat Nov 03, 2012 10:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Junk characters in Sequential file
Replies: 8
Views: 5562

What sequential file options are you using? Are you adding a row number? Anything out of the ordinary? Does a PEEK stage show these extra characters?
by ArndW
Sat Nov 03, 2012 9:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Junk characters in Sequential file
Replies: 8
Views: 5562

If, in DB2, you "select len(Col1) FROM YourTable WHERE Col1 LIKE '%KNAGE228495356jhg%'" do you get 17 or 20?

What about if you do the same in DataStage?