Search found 53125 matches

by ray.wurlod
Tue Feb 05, 2008 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date format issue
Replies: 4
Views: 1354

Dates are stored as binary quantities inside DataStage - format of a date data type is purely for human convenience.

Format is also important if converting the date to a string.
by ray.wurlod
Tue Feb 05, 2008 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim with DecimalToString
Replies: 3
Views: 1549

Decimal numbers are always displayed by the data browser and by Peek with leading and trailing zeroes. This mechanism allows you to verify that precision and scale are being accurately handled. Internally, of course, decimal numbers are represented as binary - just a pattern of bits.
by ray.wurlod
Tue Feb 05, 2008 4:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not check all operators because of previous error
Replies: 3
Views: 3493

This step has no datasets is the score used for licensing. It is an Informational message. But the message "Control job aborted" is significant. This job was being run under control (of a job sequence, a batch or a job control routine). You need to look in the log of the controlled to find out why T...
by ray.wurlod
Tue Feb 05, 2008 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot-PX
Replies: 5
Views: 2437

Why do you think that?

It may be only the Pivot stage that needs to be re-installed or re-registered. The first of these is accomplished on the server using DataStage Package Installer, the second using the Manager client.
by ray.wurlod
Tue Feb 05, 2008 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: need logic
Replies: 7
Views: 2030

:roll:
Why are you all wasting your time guessing the requirement? Why not wait until dstest posts the precise requirement, as asked?
by ray.wurlod
Tue Feb 05, 2008 4:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to identify number of datastage processes?
Replies: 5
Views: 4062

Set APT_PM_SHOW_PIDS to have player processes log their pids. The ppid of each is the section leader on that particular processing node. You can then use dsjob to read the relevant log entries, and ps to see the processes from the UNIX environment.
by ray.wurlod
Tue Feb 05, 2008 4:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage server 751A restore from AIX unix backup
Replies: 7
Views: 2741

Having restored DSEngine and the projects, try reinstalling the server. This should go into maintenance mode. If there is a hidden file in the root directory its pathname would be .dshome - check for hidden files in the root directory

Code: Select all

ls -al /.*
by ray.wurlod
Tue Feb 05, 2008 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning Solaris for Datstage 7.5.2
Replies: 8
Views: 2137

There are four major resource classes on a computer; processing, memory, disk I/O throughput and network bandwidth. Commands for monitoring all of these exist, for example prstat, vmstat for processors and virtual memory usage. More general tools, such as top, also exist. These should be run for a s...
by ray.wurlod
Tue Feb 05, 2008 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can I have a job that checks to see if a job is running?
Replies: 9
Views: 3511

For example, DELETE FOM table will always wait for any update lock on any row in the table to be released, if no "escape clause" (syntax varies with database, but is not provided from the "Clear table" method) is issued.
by ray.wurlod
Tue Feb 05, 2008 3:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: uv and uvsh anomalies
Replies: 6
Views: 3893

clarcombe wrote:Time does not permit anything else.

That is never really true. :x
There is never time to do it right, which means that you have to find time to do it again. Doing it right the first time is actually the more efficient solution.
by ray.wurlod
Tue Feb 05, 2008 3:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Conversion of 32 bit hashed files to 64 bit using a routine
Replies: 7
Views: 1491

Does your wildcard ever generate a list that is too long for the command parser to handle?

Colin already had a loop in his routine, so 'twas a simple matter to include the removal within the scope of the loop. I guess verifying that the removal had worked would have been preferable.
by ray.wurlod
Tue Feb 05, 2008 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while connecting to DB2
Replies: 3
Views: 1272

ag_ram wrote:Till yesterday it is running fine. Today only we are getting this error.
What has changed? Obviously something has.
by ray.wurlod
Tue Feb 05, 2008 3:35 pm
Forum: General
Topic: importing tables from odbc
Replies: 3
Views: 2276

Those symptoms suggest that either the DB2 client software is not properly/fully configured, that you have not run bind20 (or bind19, as the case may be), you may not have set required DB2 environment variables such as DB2INSTANCE, or that you have not properly created the DSN for connecting to your...
by ray.wurlod
Tue Feb 05, 2008 3:32 pm
Forum: General
Topic: validation on records
Replies: 11
Views: 2526

Three questions for basu.ds:
1. Please post YOUR input data and lookup table.
2. What output do you require:
(a) if there is no match
(b) if there is exactly one match
(c) if there is more than one match?
3. How have you currently designed this and what's happening in your design?
by ray.wurlod
Tue Feb 05, 2008 3:28 pm
Forum: General
Topic: Start Loop - infinite loop
Replies: 11
Views: 5501

Unless you take the code generated by the job sequence as a prototype and load that into a server job, there is no activity that can alter the value assigned to the StartLoop.$Counter activity variable other than the Start Loop activity to which it belongs.