Search found 53125 matches

by ray.wurlod
Sat Nov 05, 2011 5:54 am
Forum: General
Topic: Help in server routine
Replies: 2
Views: 1125

Your quote characters are in the wrong places. Also you need two levels of quoting, which implies that you need to use two of the three available quote characters.
by ray.wurlod
Sat Nov 05, 2011 5:53 am
Forum: General
Topic: Custome universe routine
Replies: 2
Views: 799

"Custom UniVerse routine" is intended for customers who are running the UniVerse database and wish to use their own cataloged routines. Clearly you do not fit these criteria.
by ray.wurlod
Sat Nov 05, 2011 5:52 am
Forum: General
Topic: Unlocking a job via another job
Replies: 36
Views: 9218

You don't use Call statement like that, as an rvalue in an assignment statement. Read all about the CALL statement in the DataStage BASIC guide. Read all about the DSExecute subroutine in the DataStage Programmer's Guide. It may be in the DataStage BASIC manual too. Command = "LIST.READU" ...
by ray.wurlod
Sat Nov 05, 2011 5:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue during target load
Replies: 8
Views: 2097

In my experience Information Analyzer is a profiling tool. There is no concept of a "target table".
by ray.wurlod
Fri Nov 04, 2011 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Finding Similar records & assigning Groups
Replies: 24
Views: 8656

Funnel the sources then Sort on the key field generating a Key Change column. In a downstream transformer stage use the Key Change field to trigger an increment in the Group ID.
by ray.wurlod
Fri Nov 04, 2011 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue during target load
Replies: 8
Views: 2097

How are you managing to use Information Analyzer to load a target table?
by ray.wurlod
Fri Nov 04, 2011 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need SCD 2 and SCD 1 logic help
Replies: 3
Views: 1929

SCD-1 is not "include a current value for the attribute". SCD-1 is "update the dimension record with the new value". In SCD-1 there is only ever a current value - SCD-1 does not preserve history. The SCD stage does allow you to generate an IsCurrent indicator field when SCD-2 is ...
by ray.wurlod
Fri Nov 04, 2011 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Ouput Reject Records from DB2 Connector to Flat File
Replies: 18
Views: 12276

I do not have RCP enabled. But when I output it to a dataset, it does not have any metadata defined, but the columns are there in the dataset when ran. This is because the operator that writes to a Data Set is copy - it simply makes a copy of the virtual Data Set in the job. And virtual Data Sets d...
by ray.wurlod
Fri Nov 04, 2011 3:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Length in Modify stage
Replies: 13
Views: 10425

Simply omitting the word "nullable" will suffice.
by ray.wurlod
Fri Nov 04, 2011 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is substr equivalent for transformer
Replies: 3
Views: 1454

A word of warning. 2004041 might mean the 41st day of 2004. In that case you need to use StringToDate() with a mask of "%yyyy%ddd" to yield a date, then date component functions to extract the relevant pieces of date (year, month and day).
by ray.wurlod
Fri Nov 04, 2011 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort Performance issue
Replies: 1
Views: 716

Are you running on a single physical machine or multiple physical machines? Are you repartitioning the data for the second sort?

What are the sort keys for the two sorts? Can you leverage the "don't sort (previously sorted)" functionality for some of the keys in the second sort?
by ray.wurlod
Fri Nov 04, 2011 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Issue in ODBC Enterprise
Replies: 10
Views: 3372

You can't calculate it. It's a given. Your network transmits data in "packets". Talk to your network administrator about the concept. Typically packet size is 1KiB, 2KiB or 4KiB.
by ray.wurlod
Fri Nov 04, 2011 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job failure issue
Replies: 4
Views: 3566

Probably not. The error is "statement failed to run". Something in the database server actually prevented execution of the statement.
by ray.wurlod
Fri Nov 04, 2011 3:10 pm
Forum: General
Topic: Unable to login to web-console after install of 8.5
Replies: 3
Views: 1250

Are all the services - particularly the WebSphere Application Server service server1 - running? What was the error message? What user registry are you using?
by ray.wurlod
Fri Nov 04, 2011 3:05 pm
Forum: General
Topic: Sequence job dependency
Replies: 1
Views: 995

You can achieve this with judicious use of triggers within the sequence for the first part. For the second part you would need to design your sequence to test each job's most recent exit status (via a routine activity perhaps), the exit status of the sequence itself, the dates associated therewith, ...