Search found 53125 matches

by ray.wurlod
Wed May 17, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Routine
Replies: 4
Views: 1761

It's not the Routine activity that's failing in the job sequence - it's the Job activity. Check that the job name is correctly spelled and cased.
by ray.wurlod
Wed May 17, 2006 2:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic jobs
Replies: 1
Views: 629

Define the maximum number of columns. Use the "incomplete columns" rule, which you will find by scrolling the Columns grid to the right.
by ray.wurlod
Wed May 17, 2006 1:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date to Integer in parallel edition
Replies: 6
Views: 1451

Of course dates can be compared! Who said they can't?
by ray.wurlod
Wed May 17, 2006 1:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage export of the scheduler.
Replies: 1
Views: 1036

The "schedule" on a UNIX platform is your crontab file. There is no mechanism to include this in an export. At best you can script to display the contents of your crontab file into a text file and keep that with your export. How you would rebuild that schedule would be up to your own ingenuity (scri...
by ray.wurlod
Wed May 17, 2006 1:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: After routine to read metadata from sqlldr generated log
Replies: 6
Views: 1224

If you could post the format of the sqlldr log file, it would be a doddle. Not everyone has access to Oracle, d'you see?
by ray.wurlod
Wed May 17, 2006 1:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Backup and Exporting AT commands
Replies: 6
Views: 1274

Isn't that what I said (\\Computername defaults to local machine) in the second post in this thread? :?
by ray.wurlod
Wed May 17, 2006 1:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing The UV DataBase/ hash File
Replies: 12
Views: 2897

You use the UV stage or the Hashed File stage. In a routine (still don't understand why you need a routine - data obfuscation can be done perfectly well with regular jobs) you open the hashed file with Open, you write records to it with Write, and you close it with Close. The Write statement must be...
by ray.wurlod
Wed May 17, 2006 1:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Got certified in Datastage
Replies: 40
Views: 13776

Welcome aboard, raji. :D Do you mean the logistical details, such as where to find an examination center? This information is available on the IBM web site indirectly, then you have to find the local office of one of the testing companies. Search this forum to find out about the assessment and feedb...
by ray.wurlod
Wed May 17, 2006 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 'Wait For File Activity’ stage limitation
Replies: 1
Views: 2673

State your requirement in English (not DataStage). Is it, for example, one of a specific set of names that you have to wait for? Do you have to wait for any of them, or just one of them? If the latter, what happens then? You may be able to use a Routine.
by ray.wurlod
Wed May 17, 2006 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date to Integer in parallel edition
Replies: 6
Views: 1451

Why do you want to convert to Integer? CurrentDate() returns a Date, and presumably your input column also is of type Date. Have you tried the expression you posted? Obviously the values generated by the expressions X and Y must be of the correct data type for your output column.
by ray.wurlod
Wed May 17, 2006 1:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture JobName,warnings etc...
Replies: 4
Views: 1488

Presumably, in Hawk, it's simply a call to the metadata delivery service?
by ray.wurlod
Tue May 16, 2006 6:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Basic Language
Replies: 1
Views: 847

Within routines. Only within routines.
by ray.wurlod
Tue May 16, 2006 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing The UV DataBase/ hash File
Replies: 12
Views: 2897

Let me get this right - "they" want you to write a routine to reinvent what a supported stage type already does? :roll:
by ray.wurlod
Tue May 16, 2006 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing The UV DataBase/ hash File
Replies: 12
Views: 2897

Use a UV stage. Edit the DDL so that it's key column is created with a DEFAULT clause. This will generate the sequence for you.

Code: Select all

CREATE TABLE BLAH (
   KEYCOL INTEGER NOT NULL PRIMARY KEY DEFAULT NEXT AVAILABLE,
   ...
);
by ray.wurlod
Tue May 16, 2006 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: table join and normalization
Replies: 5
Views: 1300

Try putting

Code: Select all

UNNEST T1 ON Detail, T2 
into the Table Names box and not checking the Normalized check box.