Search found 53125 matches

by ray.wurlod
Tue Sep 14, 2010 4:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: scd with surrogate key
Replies: 1
Views: 950

Yes, but why not find it yourself, perhaps via an Internet search? There are volumes and volumes written on the topic, and some differing opinions about what's "best". Or are you specifically asking about how to manage surrogate keys in DataStage server jobs? That usually involves using on...
by ray.wurlod
Tue Sep 14, 2010 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 7
Views: 2504

Maybe the character is not a space character, but "white space" (a tab, perhaps). Did you try what I suggested, or was I just wasting my time?
by ray.wurlod
Tue Sep 14, 2010 4:00 pm
Forum: General
Topic: Need Output for XML CLOB DATATYPE
Replies: 4
Views: 2248

Try extracting the column as a Long VarChar data type - perhaps with a CAST in the SQL, perhaps just setting the metadata.
by ray.wurlod
Tue Sep 14, 2010 3:59 pm
Forum: General
Topic: Routine - select a column in the job log
Replies: 7
Views: 2859

These are the only two possibilities. Therefore keep using the code that you're using.

Incidentally, the semi-colons at the ends of the For statements are not required. They introduce harmless empty statements.
by ray.wurlod
Tue Sep 14, 2010 3:56 pm
Forum: General
Topic: Unable to view the Log file of SOME jobs using Director
Replies: 3
Views: 2134

Can you see any job logs from this project using the Reporting tab of the Web Console for Information Server?
by ray.wurlod
Tue Sep 14, 2010 3:53 pm
Forum: IBM QualityStage
Topic: Issue with Country Rule set
Replies: 4
Views: 2176

The PAT file is not missing and is intact. The problem is with the input text override file APPCLIB/USMNAD.ITO - or maybe that the subdirectory APPCLIB does not exist.
by ray.wurlod
Tue Sep 14, 2010 3:48 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Analysis connector Settings / Error executing DS job
Replies: 4
Views: 3830

It would seem easier to ask how to manage the DB2 storage than to change databases. However, and provided that you have run the scripts to create an Oracle version of IADB, there's no reason not to set up a data connection to it and configure it as the analysis database.
by ray.wurlod
Tue Sep 14, 2010 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Client required or not for 8.1 Enterprise stage
Replies: 2
Views: 934

You need client.

Please ask the IBM person how you can use Oracle Enterprise stage without Oracle client. I'm sure we'd all be interested to know.
by ray.wurlod
Tue Sep 14, 2010 12:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to implement in datastage?
Replies: 5
Views: 2263

prakashdasika wrote:The SCD stage does not exist in 7X, you can use change capture in conjunction with Insert/Update
Good catch!
by ray.wurlod
Tue Sep 14, 2010 12:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate portfolio id
Replies: 10
Views: 2612

You need to detect change in the pno field and only increment if a change is detected. There are lots of ways, usually involving stage variables (and maybe a Sort stage). You can find these using the Searchcapability of DSXchange.
by ray.wurlod
Mon Sep 13, 2010 9:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date conversion
Replies: 7
Views: 2504

What syntax are you using for the Field() function? Is what is being retrieved 18 characters long? Then you could extract the YMD format date using Field() functions. Field(Field(InLink.TheString, "(", 2, 1), ")", 1, 1) Store this in a stage variable. Apply an Iconv() function to...
by ray.wurlod
Mon Sep 13, 2010 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is difference between User supplied & Compiled-in d
Replies: 1
Views: 1089

The value with which $PROJDEF is replaced is stored in the project properties (the Administrator client environment variables area) which, ultimately, are stored in the DSParams file for the project. The value with which $ENV is replaced is not stored anywhere; it is picked up from the underlying ep...
by ray.wurlod
Mon Sep 13, 2010 3:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookupstage Match/Rejects
Replies: 2
Views: 831

Please delete your duplicate thread before anyone posts to it.
by ray.wurlod
Mon Sep 13, 2010 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookupstage Match/Rejects
Replies: 1
Views: 1004

Your understanding of the difference between Drop and Reject is correct.
by ray.wurlod
Mon Sep 13, 2010 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookupstage Match/Rejects
Replies: 2
Views: 831

Create a numeric representation of the timestamp as a string (for example 201008311541 and use that in the lookup. Can you be a bit more precise about "within a minute" implies? The granularity of your timestamp is already "minute".