Search found 3045 matches

by vmcburney
Wed Jul 27, 2005 6:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Jobs from Routines
Replies: 5
Views: 1661

You have Enterprise Edition of DataStage, and you probably work in parallel jobs, you use the Parallel Job Developers Guide to build those jobs. Ascential have cunningly hidden job control documentation in the Server Job Developers Guide, even though it pertains to all job types and not just server ...
by vmcburney
Wed Jul 27, 2005 5:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal Error: (destConcField->fixRunAnchor_f)
Replies: 10
Views: 6342

It was such an intimidating subject heading I found it difficult to even open the thread, the full error message is even scarier. Perhaps you could soften the impact with something friendlier such as "an interesting parallel job error". Fill us in with some background, is this happening to all your ...
by vmcburney
Wed Jul 27, 2005 5:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substrings functionality in Parallel
Replies: 8
Views: 3602

In a transformer the AlNum function tells you whether any non alpha numerics exist and the convert function can replace them. Convert supports a fromlist of strings and a tolist. You put all your no alphas into the fromlist and a space in the tolist. There are very few examples of parallel functions...
by vmcburney
Wed Jul 27, 2005 5:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ridiculous requirement
Replies: 3
Views: 814

If you run the dsjob -report with report type set to BASIC you get Job start time, Job end time, Job elapsed time and Job status. It would be quite easy to read this file in a basic routine and write it out in the format required. For example FIELD(FIELD(InputRow, "=", 2), " ", 1) gives you the date...
by vmcburney
Tue Jul 26, 2005 6:32 pm
Forum: Enhancement Wish List
Topic: stage type extensions
Replies: 1
Views: 1427

Isn't that what copy and paste of a stage is for?
by vmcburney
Tue Jul 26, 2005 6:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Latest Happening in DataStage
Replies: 3
Views: 1193

There is also a FAQ "Where do I get information on DataStage" that will lead you to various sites. The most reason release notes for DataStage can be found on devnet.
by vmcburney
Tue Jul 26, 2005 12:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Separating Extract, Transform and Load to three or more jobs
Replies: 7
Views: 1888

It is well documented in the archives of this site. Do a search for failover or recovery or banding to find threads on the subject.
by vmcburney
Mon Jul 25, 2005 1:11 am
Forum: Data Integration
Topic: DataStage job listings at an all time high
Replies: 7
Views: 8926

The demand for DataStage will only keep going up as the legacy coders get older and the manual coding methods get less attractive. Soon it will be easier to find a DataStage person then a cobol code cutter or a PL/SQL developer forcing companies towards a tool based approach. DataStage Hawk release ...
by vmcburney
Sun Jul 24, 2005 7:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OS390 to Parallel Extender
Replies: 5
Views: 1143

The main decision is whether you keep it on the mainframe, via parallel jobs on mainframe Unix System Services, or move it entirely off the mainframe onto Unix or Windows servers. I have heard that parallel jobs on USS are extremely effective at gobbling up CPU and resources to run at very fast spee...
by vmcburney
Fri Jul 22, 2005 12:47 am
Forum: Data Integration
Topic: DataStage job listings at an all time high
Replies: 7
Views: 8926

DataStage job listings at an all time high

I haven't checked out the job sites in a while but a search of the Australian job site seek showed 110 DataStage jobs! I am used to seeing up to 20 jobs at any one time. Informatica had 49 job listings. There is a lot of duplication of listings on these sites and I figure if you divide it by three y...
by vmcburney
Thu Jul 21, 2005 7:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CDC for Oracle
Replies: 1
Views: 827

Native Oracle CDC is available for an additional license fee and performs log scraping against the RDBMS. Haven't used it myself. Other CDC options involve standard techniques such as retrieving rows based on creation and update dates or retrieving all rows and filtering on the server based on chang...
by vmcburney
Thu Jul 21, 2005 7:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Appearance
Replies: 5
Views: 2245

Nice idea though. How are you delivering jobs to production? If you use export/import maybe you can put a job description annotation into all your jobs and when you deliver it to production do a search and replace on the export text file to replace the annotation colour property to give it a differe...
by vmcburney
Thu Jul 21, 2005 7:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PxColumnImport vs Transformer
Replies: 1
Views: 700

To avoid a transformer altogether you could try Column Import followed by a Modify stage, if the derivation can be shoe horned into a Modify conversion function, or a Column Generator stage if it can be derived in the column properties of a new generated column. If you have to have a transformer the...
by vmcburney
Thu Jul 21, 2005 7:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer default on Import
Replies: 5
Views: 887

Maybe \0x00 which is the character representation of a null. As with most of the DataStage documentation the Default option comes with almost no examples or syntax clues.
by vmcburney
Thu Jul 21, 2005 6:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hash Partitioning
Replies: 2
Views: 952

Immediately when I see input of 1,1,1,1,3,3,3,3,2,2,2,2,4,4,4 results in an output from the join of 1,3,4 I would look at sorting problems. The join stage needs both links to be sorted and usually adds a join if one does not exist. Check your symbols on your links to see if the sort appears on both ...