Search found 53125 matches

by ray.wurlod
Thu Dec 11, 2008 5:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Want to sort the data without using sort stage
Replies: 4
Views: 1684

And the best answer is "Why?" The entire philosophy in parallel jobs is "one task one stage type". If you want to sort make it obvious to future developers, by using an explicit Sort stage. There are two other ways within the ETL tool, and you can also use external methods. Try a...
by ray.wurlod
Thu Dec 11, 2008 5:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datastage login error
Replies: 4
Views: 1593

Re: datastage login error

ag_ram wrote:Please provide a solution to this problem.
Aren't you paying an official support provider to do just this?
by ray.wurlod
Thu Dec 11, 2008 4:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: high availability for IIS 8.x?
Replies: 16
Views: 3810

For a start, it's hardware. It's a BladeCenter platform running Red Hat Linux, with Information Server (with DataStage and QualityStage and Tivoli Load Leveler preconfigured) with three blades. As you need more capacity you can slot in up to 11 more blades. A search on IBM website for "Informat...
by ray.wurlod
Thu Dec 11, 2008 4:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read UniVerse tables through JobControl
Replies: 11
Views: 2162

Attention to detail is one of the hallmarks of a professional ETL developer; one can not afford mistakes, particularly preventable ones. This includes laziness in documentation, both at work and here on DSXchange.
by ray.wurlod
Thu Dec 11, 2008 4:46 am
Forum: Site/Forum
Topic: All buttons are Disabled
Replies: 1
Views: 2308

Posting in the correct forum (Site/Forum) would be a good start.

This forum (FAQ Discussion) is to discuss topics that would make a good FAQ topic in the FAQ forum.
by ray.wurlod
Thu Dec 11, 2008 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read UniVerse tables through JobControl
Replies: 11
Views: 2162

Your code will only work once, because you overwrite the variable called file with the record you read from the hashed file. This is a Bad Thing. Use a different variable name as the target of the read.
by ray.wurlod
Thu Dec 11, 2008 2:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle process continue even after the jobs are stopped
Replies: 4
Views: 1121

... short of killing the Oracle session.
by ray.wurlod
Thu Dec 11, 2008 2:36 am
Forum: General
Topic: Write records count in Audit file
Replies: 5
Views: 1580

This question is unrelated to the topic of this thread.

Please start a new thread.
by ray.wurlod
Thu Dec 11, 2008 12:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: high availability for IIS 8.x?
Replies: 16
Views: 3810

You're right. I really liked the blade server solution that I saw at IOD. I've been waiting for an "ETL Appliance" ever since the "Data Warehouse Appliance" became popular. Unfortunately, most large organizations still haven't caught on... they still think they need to spend mil...
by ray.wurlod
Wed Dec 10, 2008 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read UniVerse tables through JobControl
Replies: 11
Views: 2162

You can not read a record from a hashed file without the primary key. The primary key is used by the hashing algorithm to determine the physical storage location of the record. The Read statement reads the entire record. You need to know, perhaps from the metadata (the file dictionary), which field ...
by ray.wurlod
Wed Dec 10, 2008 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write code to extract record from multiple tables to Files.
Replies: 7
Views: 2760

And the answer is, and remains, not in server jobs.

Parallel jobs give more flexibility, through the use of schema files, but things are always metadata driven.

Just don't expect any "T" in your "ETL".
by ray.wurlod
Wed Dec 10, 2008 6:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture performance statistics of a job
Replies: 7
Views: 2381

You can't get that information from that "report". You need to either farm the logs or query the appropriate links directly (for example using DSGetLinkInfo() function or dsjob -linkinfo command) for their counts.
by ray.wurlod
Wed Dec 10, 2008 1:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date conversion
Replies: 3
Views: 1419

You can decompose these VarChar columns into day, month and year columns then re-organize them into YYYY-MM-DD format strings, which may be compared directly as strings. Don't forget to add a leading zero to each day and month number that is a single digit.
by ray.wurlod
Wed Dec 10, 2008 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read UniVerse tables through JobControl
Replies: 11
Views: 2162

Job name is the key column in DS_JOBS, so you need it (possibly in a variable) before you can read that row anyway. You are on the right track with the Open statement, but then you need to use Read statements to read the records from the hashed file. Both of these can be found in the DataStage BASIC...