Search found 53125 matches

by ray.wurlod
Thu Feb 07, 2008 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Heap allocation failed
Replies: 5
Views: 2695

Cure: simple supply and demand. Supply more memory or reduce overall simultaneous demand for memory.
by ray.wurlod
Thu Feb 07, 2008 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to call a SSIS package from Server job
Replies: 4
Views: 2097

Remember that DataStage processes do not necessarily run under your ID. Specify the full pathname of the dtexec command in your BAT file.
by ray.wurlod
Thu Feb 07, 2008 2:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we find all the job names, which use a specific dataset.
Replies: 6
Views: 7944

Export the project and search in the DSX/XML file. Or query the Repository. SELECT NAME FMT '40L' FROM DS_JOBS WHERE JOBNO IN ( SELECT OBJIDNO FROM DS_JOBOBJECTS WHERE OLETYPE = 'CCustomInput' AND EVAL "@RECORD<14,1>" = 'dataset' AND EVAL "@RECORD<15,1>" LIKE '%<<Data Set nam...
by ray.wurlod
Thu Feb 07, 2008 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: selective reading using websphere_MQ stage
Replies: 2
Views: 898

Welcome aboard. Server job questions should be posted in the Server Edition forum.
by ray.wurlod
Thu Feb 07, 2008 1:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting starting in datastage
Replies: 2
Views: 735

There are tutorials that ship with the product. Have your employer enrol you on IBM or third party instructor-led training classes.
by ray.wurlod
Thu Feb 07, 2008 1:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capturing rejected records
Replies: 13
Views: 4409

dsuser08 wrote:If I have to use Full-outer or Right outer or Left outer and capture rejected records,Which component should I use.Please help.
What do you mean by "rejected"? If you do a join in SQL, where are the rejected rows? DataStage is no different.
by ray.wurlod
Thu Feb 07, 2008 1:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of secure shell cient within the Datastage sequence
Replies: 2
Views: 761

Re: Usage of secure shell cient within the Datastage sequenc

As both the machines will be having an voc for the hash files being ftp'ed there will not be a problem i suppose. If both machines have a VOC entry then both machines have the hashed files. FTP one structure over the top of an existing hashed file structure can introduce corruption. FTP, like all o...
by ray.wurlod
Thu Feb 07, 2008 1:37 pm
Forum: General
Topic: hexatridecimal or base 36
Replies: 13
Views: 6132

There will be some upper limit to the size of numbers you can convert using ordinary arithmetic, depending on your EXACTNUMERIC setting. For numbers larger than this you can use "string math" (SAdd(), SMui(), SSub() and SDiv() functions). You need to build a "remainder" function out of SDiv() and SS...
by ray.wurlod
Thu Feb 07, 2008 12:33 am
Forum: General
Topic: job stages
Replies: 1
Views: 1276

Welcome aboard. When you get around to posting your question, please do so in the appropriate forum. For server jobs there is a specific forum called "IBM DataStage Server Edition".
by ray.wurlod
Thu Feb 07, 2008 12:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Containers
Replies: 2
Views: 818

A local container is local to the job, is a property of the job, and has no visibility outside the job. Its function is to hide some of the complexity of the design. A shared container contains a re-usable sub-set of a job. It can have its own parameters. It is stored as an independent component in ...
by ray.wurlod
Thu Feb 07, 2008 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delemeter , ans required
Replies: 3
Views: 798

To paraphrase Craig's post, your data break the rules for a CSV file. If a data field contains delimiter characters, then that data field must be quoted.
by ray.wurlod
Thu Feb 07, 2008 12:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job save option is disabled
Replies: 11
Views: 2996

Do you have appropriate permissions in the DataStage project directory, appropriate privileges to the XMETA database, and appropriate credentials for Information Server?
by ray.wurlod
Wed Feb 06, 2008 8:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: creating a sequential file with ^] as a column delimiter
Replies: 3
Views: 1386

If memory serves me, ^] is the Esc character. You can specify this as 027 (its ASCII code, in decimal).
by ray.wurlod
Wed Feb 06, 2008 8:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job save option is disabled
Replies: 11
Views: 2996

Can you actually select the test folder, so that it appears in the Folder Path field?
by ray.wurlod
Wed Feb 06, 2008 7:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim in Modify stage
Replies: 20
Views: 22465

Please provide the exact syntax you used for string_trim(). It works OK for me on version 7.5.1A on Linux.