Search found 53125 matches

by ray.wurlod
Thu Jan 15, 2004 11:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete the Source File in a Job after run
Replies: 3
Views: 1309

As usual agreeing with Ken.

Another advantage of separating deletion of the staging data from the job that uses them is that you get easier restartability in the event that the job fails to complete successfully.

Modularity, I guess. :)
by ray.wurlod
Thu Jan 15, 2004 8:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reference link from a shared container
Replies: 5
Views: 1157

Hi Vincent, The shared container is being used in colse to 50 different server Jobs having diffirent number and type of columns. Because of this its not possible to pass all the columns through the container. Is there any way in which I can pass all the columns through the container. That would def...
by ray.wurlod
Thu Jan 15, 2004 8:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: server vs parallel
Replies: 5
Views: 1289

yeah... i am not not trying to either buy or use it now. :D .. i am just curious... wht makes it different from server jobs and what will be the criteria to choose between server and parallel jobs.. i know everything (tool supported processses)can be done with server jobs... it this vice versa Ever...
by ray.wurlod
Thu Jan 15, 2004 8:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: relate data between Oracle tables (foreign key).
Replies: 12
Views: 3799

As I understood, I would be able in the same job write to multiple tables for same schema and create FK? Is it correct? Basically this is correct, you can. But best practice is to load the operational master (dimension table) first, then to load the operational detail (fact table). In this way you ...
by ray.wurlod
Thu Jan 15, 2004 8:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wrapped Stage
Replies: 10
Views: 3474

Shell scripts in every shell I've dealt with recognize positional arguments through the shell variables $0 (the script name), $1, $2 and so on. Some shells are limited to ten such arguments, which you have to get around using shift. But, since you only need three, this ought not to be a problem. Why...
by ray.wurlod
Thu Jan 15, 2004 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: relate data between Oracle tables (foreign key).
Replies: 12
Views: 3799

Hi, IMHO DWHs are not something you have FK constraints on (period) and expect loading performance. your ETL should have integrity checks for that and the DWH should be free of such things (correct me if I'm wrong people). now if you insist on having FK constraints then do it the slow sequential wa...
by ray.wurlod
Thu Jan 15, 2004 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using OCONV and ICONV writing a date to an Oracle table
Replies: 4
Views: 1261

Re: Using OCONV and ICONV writing a date to an Oracle table

I am having trouble with a date conversion. It's in the format MMDDYYYY and is being converted from EBCIDIC to ASCII, but then I need to write it to an Oracle table, which expects it in Oracle 'date' format - MM/DD/YYYY. My problem is some of the dates are null. This wasn't a problem converting fro...
by ray.wurlod
Thu Jan 15, 2004 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: running administrator queries from UNIX
Replies: 26
Views: 6986

The annotation number (the "An" part of the internal identifier) relates to the order in which annotations are added to the job. So I'm not really clear why you want to "assign" "V0A0". Can you be more specific about what it is you're trying to do? DS_JOBOBJECTS is indexed on OBJID (that is, the mid...
by ray.wurlod
Thu Jan 15, 2004 3:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: server vs parallel
Replies: 5
Views: 1289

Just to make it clear, Parallel Extender is an additional cost, and not (yet) available for the Windows environment. Parallel Extender does more than allow DataStage to run parallel jobs. It becomes part of the underlying architecture so, for example, INTEGRITY (now Quality Stage) processes can also...
by ray.wurlod
Wed Jan 14, 2004 10:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: did you know? You can create a unique index in parallel
Replies: 29
Views: 19928

Can't do it from a before-job routine, because this runs as part of the job itself, and parameter values can't be changed once a job is running.
Can do it from a controlling job.
by ray.wurlod
Wed Jan 14, 2004 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to map file Error
Replies: 13
Views: 6670

Are you running out of disk space on any of your processing nodes?
by ray.wurlod
Wed Jan 14, 2004 10:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: running administrator queries from UNIX
Replies: 26
Views: 6986

Please share with us any solution that you find. You never know, you might develop some insight that has bypassed us all! :D
by ray.wurlod
Wed Jan 14, 2004 3:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: [Resolved] client NLS configuration
Replies: 10
Views: 2276

Ah. I'd assumed (always dangerous, that) that your regional settings were already correctly set. Good lesson, another thing always to check.
by ray.wurlod
Tue Jan 13, 2004 10:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to delete two hashed files in a job's after-job routine
Replies: 7
Views: 1875

Ray, out of curiousity - how does one go about maintaining these 'paragraphs' if you start using them? Get a listing, edit, delete, that kind of thing... Thanks. Each paragraph is stored in the VOC file with a TYPE of "PA". But there are more paragraphs than yours - there are quite a few that DataS...
by ray.wurlod
Tue Jan 13, 2004 8:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there a function to convert a string into a number ?
Replies: 6
Views: 2014

If you're using a BASIC Transformer stage (or are in a server job), you can use a BASIC expression. The easiest way is to perform some arithmetic. But you have to be certain that what you're beginning with can be regarded as numeric. If Num(inlink.column) Then Iconv(inlink.column,"M...