Search found 594 matches

by rameshrr3
Sat Mar 14, 2015 10:03 pm
Forum: General
Topic: Explicit Loop Vectoring in Job Sequences
Replies: 1
Views: 1285

Explicit Loop Vectoring in Job Sequences

If I have an N element loop = say N =14, has anyone tried running 4 loop iterations at a time simultaneously by explicitly coding ( designing ) the Loop activities that way ? If one of the 4 instances breaks- say file not found, will restarting the job sequence kick off all 4 simultaneous iterations...
by rameshrr3
Wed Sep 03, 2014 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 9
Views: 10576

What was the operating system you compiled on ? Linux ? Otherwise g++ is NOT the optimizing compiler for your platform for datastage parallel transformer. what is the default value of APT_COMPILER on your environment? for HP-UX -> use aC++ compiler for IBM-AIX -> use xlC/C++ compiler for Solaris -> ...
by rameshrr3
Wed Sep 03, 2014 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I Restructre a Table
Replies: 2
Views: 2628

Can you select one column at a time in a union all statement , along with the tables current rowid and an integer representing column position ? Thenc sort them by rowid and column position? Could be faster than using any datastage operator.
by rameshrr3
Wed Jul 30, 2014 7:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage custom stage to read "BAI file format"
Replies: 2
Views: 2352

I think reading such a file in Datastage must be easier than creating it. But we have generated pretty complex DTCC PVF File and IFT File using a pure datastage approach by designing a tricky sort algorithm, and we may be set out to do the even more complex FAR file for DTCC - all using server jobs....
by rameshrr3
Wed Jul 30, 2014 6:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Anonymous PL/SQL Block
Replies: 3
Views: 5517

Are you trying to use it as a source or transform ? Are you using teh stored proc stage to process dat aon an input link and forward row data to an output link ? Just curious.
by rameshrr3
Wed Jul 30, 2014 6:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read zip file
Replies: 6
Views: 5006

Can you try external Source stage- I think thats the best bet ? Did you try Decode stage - Although i think it woks on decoding compressed datasets, not sure about files.
by rameshrr3
Mon Jun 09, 2014 10:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bulk orchestrate import of table definitions
Replies: 17
Views: 7243

Example syntax for orchdbutil in case you need it orchdbutil show owner.table_name -dbtype oracle -server Oracledb -dboptions {user=usr,password=***} This will give you an orchestrate schema, which is handy ( actually its a parallel job table def ) Which version of datastage are you on ? IBM is alre...
by rameshrr3
Fri May 23, 2014 11:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic sequential file name generation
Replies: 13
Views: 11370

write to /dev/null and in the filter command use sh -c "your big unix com mand" . Im assuming you write to a server job seq file stage. By the way did you escape the date command in backquote character ` ` ? If you are using a filter stage in a parallel job , the moderator has to move your...
by rameshrr3
Fri May 16, 2014 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To handle empty file/only hd tr file
Replies: 6
Views: 3925

External source stage, call: grep -c ^D #srcfile# This shoudl give zero if zero detail records Similarly grep -c ^H and grep -c^T for your file, these will give you counts of headers and trailers into your jobs data stream - use a funnel to combine these streams ( There could be a creative way in un...
by rameshrr3
Wed May 14, 2014 11:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage equivalent datatype of mainframe
Replies: 6
Views: 3025

Have you imported the copy book Successfully ? Then open table def , and go to layout , select the parallel radio button , and see what datatype it defines to that column. Use this in your schema file or in the sequential file's columns tab . so that you dont have to write a transfomer derivation un...
by rameshrr3
Wed May 14, 2014 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to create shared C++ object and use them in datastage
Replies: 6
Views: 6662

very obvious error. Where is the object file stored for your custom px routine ? Is it part of the PATH env variable seen in the environment settings message of the job log?
by rameshrr3
Mon May 12, 2014 10:36 pm
Forum: General
Topic: JSON uses less space?
Replies: 2
Views: 1090

JSON uses less space?

Im new to JSON , but does transmitting simple payloads over JSON save bandwidth & 'space' compared XML carrying the same info ? A cursory look suggests that. JSON outwardly seems eerily familiar with orchestrate subrecords and vectors [ probably the tagged type]
by rameshrr3
Mon May 05, 2014 8:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate Key - File Block Size property
Replies: 2
Views: 2855

Maybe force all surrogate key generators to use user picked , and have an environment variable to set this property - requires 'discipline' though :)
by rameshrr3
Tue Apr 29, 2014 5:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Multiple Format Flat File
Replies: 9
Views: 9812

Is this possible using Websphere TX ? There is another group that has license for WTX ? Do Type trees allow defining such aa structure. The WTX pack for acord would have ready type trees for these files.

I understand that WTX can write to xml , but what about such hierarchical flat files?
by rameshrr3
Wed Apr 23, 2014 8:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating Multiple Format Flat File
Replies: 9
Views: 9812

Thanks . Although we implemented a simpler version of this format in Datastage by combining record types and sorting by policy number, recordType+internalLoopKey[ artificially created ina transformer stage var] and some stable sorts, it seems way too much of a PITA to do in DS Server edition . We ha...