Search found 53125 matches

by ray.wurlod
Mon Sep 05, 2011 5:09 pm
Forum: General
Topic: How to get the server information from service tier
Replies: 6
Views: 2477

So what you actually want is the Engine hostname(s), rather than the Services tier hostname. Is this correct? Remember that one services tier can support any number of engine tiers. How will you specify which one you want if there is more than one? Ultimately I believe you're looking at a query agai...
by ray.wurlod
Mon Sep 05, 2011 5:06 pm
Forum: General
Topic: Universe Database access
Replies: 3
Views: 1391

There is no UniVerse database in version 8.

The last version of DataStage that used UniVerse as its engine was, if I recall correctly, 5.2.
by ray.wurlod
Mon Sep 05, 2011 12:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Uploading value in a job parameter
Replies: 11
Views: 2931

:idea:
Resist stupid requirements!!!
by ray.wurlod
Sun Sep 04, 2011 10:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Uploading value in a job parameter
Replies: 11
Views: 2931

Not if sequences are not permitted. How are you planning to read the file in the context of the dsjob command?
by ray.wurlod
Sun Sep 04, 2011 9:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Uploading value in a job parameter
Replies: 11
Views: 2931

If you're going to use dsjob, why bother? Just use the date command.

Code: Select all

dsjob -file filepath -run -param jpTM=`date +"%Y-%m-%d %H:%M:%S` $projectname $jobname
by ray.wurlod
Sun Sep 04, 2011 6:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date format in datastage
Replies: 5
Views: 3823

Welcome aboard.
ssmuki wrote:In oracle ...
Now there's an assumption!
by ray.wurlod
Sun Sep 04, 2011 12:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: incremental extraction
Replies: 5
Views: 1906

The > redirection operator is just as valid in Windows.

The approach is to use a DataStage job or routine or execute command activity to populate this file.
by ray.wurlod
Sat Sep 03, 2011 11:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extracting issue
Replies: 3
Views: 1449

Three questions; one answer.
:roll:
by ray.wurlod
Sat Sep 03, 2011 5:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record Dropped
Replies: 18
Views: 7618

Disable operator combination to learn where the error is actually occurring.
by ray.wurlod
Sat Sep 03, 2011 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date format in datastage
Replies: 5
Views: 3823

You can specify a cast or conversion function in the extraction SQL. It's done differently with different database types (e.g. DB2, Oracle). So you need to specify that. A generic solution is to read the timestamp as a timestamp and use a conversion function such as date_from_timestamp() in a Modify...
by ray.wurlod
Sat Sep 03, 2011 5:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extracting issue
Replies: 3
Views: 1449

What is the data type in the database? What data type are you using in the DataStage link? Can you post the SQL that's generated (or user-defined)?
by ray.wurlod
Sat Sep 03, 2011 5:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Bulk Load - manual mode and ctl file generation
Replies: 6
Views: 3547

Can you post an actual data example, along with "some control characters" being identified?
by ray.wurlod
Sat Sep 03, 2011 5:16 pm
Forum: General
Topic: Jobs appear in director after deleting in designer
Replies: 11
Views: 3490

It might be worth re-indexing your repository using the DS.REINDEX ALL command. Search DSXchange for details of how to use this command. In particular make very sure that you have exclusive access to the project.
by ray.wurlod
Sat Sep 03, 2011 2:44 am
Forum: General
Topic: data validation in fixed width sequential file
Replies: 14
Views: 6063

And, from that, you can see that there are line-terminating THEN statements with no corresponding END statements.
by ray.wurlod
Sat Sep 03, 2011 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in getting the next value from DB2 Sequence...
Replies: 1
Views: 953

Show us the actual SQL - you should be able to find it in the job log. I suspect a syntax error.