Search found 199 matches

by jreddy
Tue Jan 08, 2013 9:49 am
Forum: General
Topic: Restartability of Sequences that has subsequences
Replies: 11
Views: 4942

Restartability of Sequences that has subsequences

I have a sequence calling another sequence that calls 4 jobs (with dependencies). Both the sequences are set up as restartable. When one of the jobs fails, both the sequences have the 'Aborted/Restartable' state. When I fix the issue with the aborted job and just Run the outer sequence, it seems to ...
by jreddy
Thu Oct 04, 2012 10:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inputs to a Link Collector
Replies: 3
Views: 1838

Yes, this is the error message when i try to compile..
"Link Collector stage does not support in-process active-to-active inputs or outputs"

I tried ORA->XFM->LC->XFM->ORA - this didnt work either.. (ofcourse with multiple sets of ORA->XFM as sources into the LC)
by jreddy
Thu Oct 04, 2012 10:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inputs to a Link Collector
Replies: 3
Views: 1838

Inputs to a Link Collector

Should one of the inputs to a link collector always be a File? I am trying to read multiple oracle tables and use the collector (sort of like a funnel/UNION ALL) and load them to a target oracle table..
by jreddy
Tue Sep 18, 2012 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import columns with integer datatype from SQL Server 2008
Replies: 3
Views: 1871

Thank you Ray and Craig..
by jreddy
Tue Sep 18, 2012 6:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import columns with integer datatype from SQL Server 2008
Replies: 3
Views: 1871

Import columns with integer datatype from SQL Server 2008

When I import a table definition from SQL Server 2008 (via ODBC Table definition import wizard in DS), any column that is defined as Integer in the DB gets imported as Int but with a precision of 10 - anyone know where this default is set and if that can be modified?

Thanks in advance
by jreddy
Wed Aug 08, 2012 11:50 am
Forum: General
Topic: How to categorize user defined environment variables
Replies: 6
Views: 1576

Thank you - I just tried it and it works!! Did a 'google' on this topic and discovered that there's an article on IT tool box as well on this with the same solution. I still wonder if there was/is another way to do it from the Administrator GUI other than directly modifying DSParams I mean.. but for...
by jreddy
Wed Aug 08, 2012 8:36 am
Forum: General
Topic: How to categorize user defined environment variables
Replies: 6
Views: 1576

Thanks ArndW, but since there is a long list of params and eye-sore to see them, my question was how to organize/categorize them - there is surely a way, coz i see it done in other projects... you'd see a tree that looks like this (in administrator) User Defined l_ DB_Params (and the right frame wou...
by jreddy
Wed Aug 08, 2012 8:01 am
Forum: General
Topic: How to categorize user defined environment variables
Replies: 6
Views: 1576

How to categorize user defined environment variables

How to categorize user defined environment variables? I have about 40+ variables and when I create them in administrator it looks cluttery and I want to be able to organize them, file related params, DB sources related and so on. I have seen that done in some earlier projects, but cannot see how to ...
by jreddy
Wed Dec 28, 2011 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Oracle Load - write() failed: Bad file number
Replies: 3
Views: 2808

it could be due to data issues, not necessary volume. In the director log you should see a pointer to the sqlldr files on scratch directory where the ctl and data file are landed during bulk load. If you see those logs, you should be able to tell what the errors are.
by jreddy
Tue Dec 27, 2011 10:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before SQL - Insert a default row based on a condition
Replies: 7
Views: 3037

It can be achieved with a job sequence. Have the first job do the count and based on that result you can call the appropriate job - one to insert the dummy row (if count happens to be 0) or the job to do whatever it needs to do (if count > 0)
by jreddy
Tue Dec 27, 2011 10:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: One of the regular warning
Replies: 6
Views: 1633

you should probably try changing the SQL in the oracle stage as

SELECT CAST(SUM(AMOUNT) AS DECIMAL(17,2)) from table

and try..
i would also add a nvl to the AMOUNT for better null handling..


SELECT CAST(SUM(NVL(AMOUNT,0)) AS DECIMAL(17,2)) from table
by jreddy
Tue Dec 27, 2011 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Validate Rule
Replies: 6
Views: 3905

Can this be done with just a SQL, provided you are able to redesign the child table that has the rule expressions ? (also not sure if you have any OR or ! conditions.. but if all are AND expressions the table can be redesigned or staged to look like this for easy parsing and transformation Example: ...
by jreddy
Tue Dec 27, 2011 5:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector UpSert rejects some records
Replies: 4
Views: 4139

Are you able to use a CDC change instead to determine if its a 'insert' or 'update' and then direct them to the appropriate target oracle stage ?
by jreddy
Wed Feb 16, 2011 7:41 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Call a job sequence from ISD
Replies: 8
Views: 7616

That's exactly my thought Craig and that is why i am surprised why a sequence cannot be called. However the 'ISD enabled' option seems to be available only in the jobs (job properties) and not sequences. Strange - but i wondered if there are work arounds ..
by jreddy
Wed Feb 16, 2011 4:29 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Call a job sequence from ISD
Replies: 8
Views: 7616

Call a job sequence from ISD

It looks like we can attach a DS job as the information provider, but can we attach a Job sequence? If a web service when called, needs to run 2 jobs in a row with some notification activity as well (for exception handling) need a sequence and cannot be accomplished with one job. Reading the manual,...