Search found 53125 matches

by ray.wurlod
Tue Feb 20, 2007 1:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Perfomance Tuning in Change Capture Stage
Replies: 2
Views: 1124

How have you proven that it's the sort time?

I always prefer an explicit Sort stage, because it allows me to allocate more memory to the tsort operator. This can result in quicker finishing. It also allows sort mode of "don't sort (previously sorted)" where applicable.
by ray.wurlod
Tue Feb 20, 2007 1:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format and date difference
Replies: 8
Views: 2260

That's what you'd expect, since the month is 12 in each date.
by ray.wurlod
Tue Feb 20, 2007 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading JOB PARAMETERS from File
Replies: 7
Views: 1893

You can use Director to set different defaults. Under the Job menu choose the Set Defaults option.
by ray.wurlod
Tue Feb 20, 2007 1:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tracking down slow processing issue?
Replies: 5
Views: 2136

What else is happening? On the machine, in the job? Rows/sec can be a very misleading metric. What is the elapsed time for the Transformer stage?
by ray.wurlod
Tue Feb 20, 2007 1:24 pm
Forum: General
Topic: DataStage Basic Complier Problems
Replies: 5
Views: 2544

The file you opened is the dictionary. It is (was) a hashed file. By overwriting it with text you have irretrievably damaged the hashed file structure, and therefore the file dictionary. What you needed to do was to open a file in the BASICCODE1 directory, not in D_BASICCODE1. You need to undo your ...
by ray.wurlod
Tue Feb 20, 2007 1:20 pm
Forum: IBM QualityStage
Topic: Error CONVERT: incomplete command
Replies: 3
Views: 2333

Did you check the error log (C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\.convert.4472)?

I'm guessing here, but I suspect that the "v" in "vsh" stems from Vality, the name of the company which was acquired by Ascential. Their product was called INTEGRITY, which Ascential renamed QualityStage.
by ray.wurlod
Tue Feb 20, 2007 4:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: environmental variable in a rountine
Replies: 12
Views: 3810

Trim() function.
by ray.wurlod
Tue Feb 20, 2007 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJob Import command fail for Shared container
Replies: 7
Views: 2122

It appears to be a deficiency in the dsjob -import command. Report it to your support provider. Meanwhile, use Manager to import your shared containers.
by ray.wurlod
Tue Feb 20, 2007 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Error Message in Server Routine (Transform Function)
Replies: 5
Views: 1899

You can not invoke a server routine from a parallel job. You can, however, invoke one from a Routine activity in a job sequence. Review the online help and/or manuals for the DataStage API functions. There is one family of functions with names beginning DSGet... that allow you to interrogate the sys...
by ray.wurlod
Tue Feb 20, 2007 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CFF VR record type
Replies: 4
Views: 1592

Where and in what context did you encounter the terminology?
by ray.wurlod
Tue Feb 20, 2007 4:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs failing while loading the Data to SAPBW
Replies: 3
Views: 1288

When the job is not able to push the data into SAP BW, what error messages are logged? Also check on the SAP BW side for any error messages.
by ray.wurlod
Tue Feb 20, 2007 4:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating custom triggers in Datastage sequencer
Replies: 6
Views: 6002

Your computer seems to be deficient in some vowels.

I would design the DataStage job to do the detection - to perform the other "gathering" tasks whenever sending an update to XYZ. Then you don't need to worry about triggers anywhere.
by ray.wurlod
Tue Feb 20, 2007 4:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read data from Excel files
Replies: 4
Views: 1417

Did you remove the User DSN when you created the system DSN?

Also try creating an entry in the uvodbc.config file in your project directory, in which you declare the DSN to be DBMSTYPE = ODBC (the spaces either side of the "=" character are required).
by ray.wurlod
Tue Feb 20, 2007 4:02 am
Forum: General
Topic: migrating from windows to linux
Replies: 4
Views: 2458

And anything else that's operating system specific, for example any calls to ExecDOS will need to be replaced with calls to ExecSH, BAT files will need to be re-written as shell scripts, the first (Shell) argument to DSExecute calls will need to be changed, and so on.
by ray.wurlod
Tue Feb 20, 2007 4:00 am
Forum: General
Topic: Restarting aborted Sequence jobs with Loop stages
Replies: 2
Views: 1518

Someone is going to need to hack to discover how this works. It's clearly not a simple checkpoint mechanism when a loop is involved.