Search found 53125 matches

by ray.wurlod
Fri Dec 01, 2006 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC Sparce error
Replies: 3
Views: 1146

Is it repeatable, or did it happen just once? If just once, it may have been a glitch in the network.
by ray.wurlod
Fri Dec 01, 2006 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Update DB2 file
Replies: 3
Views: 955

You've answered your own question.

If you don't know what the original count is, and need to know, then the only way is to interrogate the table.

You could do this in a previous job with a query such as

Code: Select all

SELECT KEY,COUNT(*) FROM DB2TABLE GROUP BY KEY;
by ray.wurlod
Fri Dec 01, 2006 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Set Identity_Insert On Sybase issue
Replies: 3
Views: 2816

There *should* be an SQL tab in the stage where you can view the SQL (I don't have DataStage access today - it's the weekend). If not, it's usually logged. With identity insert ON, all you have to do is to send rows that do not contain a value for the key column; Sybase will make use of the fact tha...
by ray.wurlod
Fri Dec 01, 2006 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata TPUMP Invalid Timestamp error
Replies: 5
Views: 1677

Verify the output of the stage variable. For example, did you need the third element to be ".00" rather than "00"? Did you need a space between the date portion and the time portion?
by ray.wurlod
Fri Dec 01, 2006 2:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage
Replies: 12
Views: 6686

I took some time to play with it, to learn its idiosyncracies. Its very value is in how primitive an operator it is. It IS worth learning for all those little things (null handling, column name change, data type change) that you often have to do to get downstream stages to work properly.
by ray.wurlod
Fri Dec 01, 2006 2:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with "timestamp" for OCI-9
Replies: 41
Views: 11900

You've got the character positions misaligned. For example the month portion should be TrimD2[6,2], not TrimD2[5,2]. You didn't allow for the delimiter character.
by ray.wurlod
Fri Dec 01, 2006 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: design consideration
Replies: 7
Views: 2028

Of course.

Just think about the numbers. The largest address you can address with a signed 32-bit number is (2^31 - 1).

That's where the 2GB limit comes from, not from any operating system limits.
by ray.wurlod
Fri Dec 01, 2006 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding odbc connection to connect to universe
Replies: 1
Views: 636

Experiment with the user name. UniVerse can be finicky; it may need the user name to be qualified by the machine name or the domain name, depending upon where it's authenticated. There is a system table called UV.LOGINS on Windows machines where you can map the three variants to a single user. And, ...
by ray.wurlod
Fri Dec 01, 2006 2:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: making universe files accessible to odbc clinets
Replies: 2
Views: 640

The ODBC driver for UniVerse is on your UniVerse clients CD. You need to do a small amount of work on the server side to enable the UniVerse account for ODBC access. Ideally you will have an account with clean dictionaries, rather than fifteen years worth of accreted entries that seemed like a good ...
by ray.wurlod
Fri Dec 01, 2006 2:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Maximum performance available in DS server for a lookup
Replies: 10
Views: 2974

Even that was too detailed. <soapbox> Rows/sec is meaningless, especially in small jobs. Row sizes vary, the clock keeps running even when no rows are being processed, the time is rounded to whole seconds, job designs are different, and so on. Prefer something like MB/min as a throughput metric, and...
by ray.wurlod
Fri Dec 01, 2006 2:23 pm
Forum: General
Topic: How do I concatenate two input Character fields
Replies: 19
Views: 8927

Nothing should be in quotes. Create another output link from the Transformer stage containing the values from the stage variables and the value from the derivation. Run this into, say, a Peek stage; inspect the results and diagnose. You may discover (for example) that LastName is truly empty in some...
by ray.wurlod
Fri Dec 01, 2006 2:20 pm
Forum: General
Topic: How to Acquire Last Run Date of a job (using dssh)
Replies: 6
Views: 3279

The Last Ran timestamp in Director comes from RT_STATUSnnn table, from the job record therein. Here, nnn is the job number mapped from DS_JOBS, but you can not do that (mapping to a table name) in SQL. This is what Director has to do, but it does so programmatically, looping through the job names in...
by ray.wurlod
Fri Dec 01, 2006 2:14 pm
Forum: General
Topic: Telnet Service not starting
Replies: 9
Views: 4593

dsrpcd listens on port #31538 for requests to use the dscs service. If you look in dsrpcservices file, you will find that dsapi_server is the executable for the dscs service. That one is running indicates that there is a connected client. Have you tried starting the DataStage telnet service in debug...
by ray.wurlod
Fri Dec 01, 2006 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding CERTIFICATION
Replies: 3
Views: 1407

There is a suggested learning sequence mentioned at the IBM website cited.
by ray.wurlod
Fri Dec 01, 2006 5:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No of deleted records
Replies: 3
Views: 1257

Count the table before and after the deletion. The difference will be the number of rows deleted.