Search found 53125 matches

by ray.wurlod
Tue Dec 18, 2007 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivoting with multiple columns to single column
Replies: 11
Views: 2752

I already did. For less than 30c per day you can purchase premium membership which, among other things, allows you to read the entire posts of the five Premium Posters. All the revenue from premium memberships is devoted to the hosting and bandwidth costs incurred by DSXchange so that, by signing up...
by ray.wurlod
Tue Dec 18, 2007 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to removw the duplicate words in thecolumn
Replies: 2
Views: 841

What output is needed where there are case differences, such as "Ram sita ravan ram lakshman"? What output is needed where there are embedded substrings, such as "ram sita ravan ram lakshram"? I agree that this falls into the do-it-yourself category but, before you do, tighten your specification as ...
by ray.wurlod
Tue Dec 18, 2007 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C++ Compiler for Datastage Information server V.8 for Window
Replies: 2
Views: 1493

The only officially supported compiler is the one that comes with Visual Studio.
by ray.wurlod
Tue Dec 18, 2007 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP stage
Replies: 10
Views: 4139

Look in /etc/services file.
by ray.wurlod
Tue Dec 18, 2007 3:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify stage Error
Replies: 5
Views: 1288

Try removing the space character that precedes the ":" that introduces the new data type in each of the specifications. Make sure that symbol, Units and U_type are names of actual columns on the input link. Does u_typ exist in another specification (perhaps a KEEP or DROP specification)? Make sure t...
by ray.wurlod
Tue Dec 18, 2007 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multiple Ambiguous Errors on ODBC load to Oracle DB
Replies: 3
Views: 2825

Operator combination is thwarting the diagnostic process - we only see that the errors are coming from APT_CombinedOperatorController. Try running the job with operator combination disabled so you can see which stage (operator) is actually generating the errors. At first glance it appears to be a pr...
by ray.wurlod
Tue Dec 18, 2007 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to combine all error messeges into one errortabl
Replies: 4
Views: 1097

I normally use a shared container to receive the error code, decode it, add the job id, run time, user, etc., and insert into the error table. You can have as many references to this shared container in your job as needed.
by ray.wurlod
Tue Dec 18, 2007 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding VOC File
Replies: 8
Views: 3950

cd to the directory where you first executed the uvsh command and there execute the following UNIX command rm -rf VOC D_VOC VOCLIB D_VOCLIB \&SAVEDLISTS\& D_\&SAVEDLISTS\& This will clean up the unneeded account. DO NOT - ever - execute these commands in the DataStage engine director...
by ray.wurlod
Tue Dec 18, 2007 3:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Restartablity in Datastage 7.0
Replies: 14
Views: 3886

These documents are available from IBM (web site) and/or your support provider. Ask for "what's new in 7.5".
by ray.wurlod
Tue Dec 18, 2007 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: job locked, clean up resources not working
Replies: 12
Views: 5123

Has the job been deleted? Can you find it in any of the clients? Try re-compiling the job (which may not work). Try running the DS.REINDEX ALL command when you have exclusive access to the project - it may be that the CATEGORY index on DS_JOBS and/or DS_JOBOBJECTS needs to be rebuilt.
by ray.wurlod
Tue Dec 18, 2007 3:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: before job subroutine
Replies: 4
Views: 1680

In the Routines branch of your Repository create a new routine and ensure that its type is Before/After Subroutine.

Within the subroutine, code in DataStage BASIC and use the BASIC SQL Client Interface, or BCI, functions to mimic operation of the ODBC API.

Search the forum for examples.
by ray.wurlod
Tue Dec 18, 2007 2:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DTS packages migrations
Replies: 6
Views: 1679

That is an insane requirement that you should push back against. What's wrong with using more than one stage? However, you could: create a plug-in stage (which would have to be written in C) rewrite the logic as a stored procedure and call that from an ODBC stage to deliver the rows into DataStage d...
by ray.wurlod
Tue Dec 18, 2007 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validate data based on Conditions at runtime
Replies: 9
Views: 2085

... or get premium membership to see solution already provided.
by ray.wurlod
Tue Dec 18, 2007 2:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance upgradation needed in datastage 7.X
Replies: 4
Views: 1009

Pre-load the lookup information into a hashed file. Only load the rows and columns that will actually be needed. Cache the hashed file in memory. Create separate links for insert-only and update-only operations. Consider using bulk loading for the insert-only stream. Purchase a more powerful server....
by ray.wurlod
Tue Dec 18, 2007 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pass job parameters to the called script in after subroutine
Replies: 3
Views: 1390

Within the after-job subroutine you can use DSGetParamInfo() function to obtain the value of each parameter. Use DSJ.ME as the job handle argument.