Search found 65 matches

by Rob4732
Thu Oct 13, 2011 4:31 pm
Forum: Site/Forum
Topic: DSXchange - InfoSphere DataStage Grid Solution webinar
Replies: 2
Views: 4807

DSXchange - InfoSphere DataStage Grid Solution webinar

Hi All,

Does anyone happen to have a link to the content presented in this webinar?

I missed it. My mind was in another time zone unfortunately.


Thanks
by Rob4732
Wed Sep 07, 2011 9:41 am
Forum:
Topic: MWB query
Replies: 4
Views: 1959

Thanks. I will check it out. :)
by Rob4732
Tue Sep 06, 2011 9:13 pm
Forum:
Topic: MWB query
Replies: 4
Views: 1959

I initially started with a few DSJob scenarios, but not having explored the full capabilities of MWB, I thought I would go after that first. Ultimately, I want to send out an email each morning that summarizes what tables were loaded the prior night and the associated insert, update counts. DSJob wi...
by Rob4732
Tue Sep 06, 2011 11:46 am
Forum:
Topic: MWB query
Replies: 4
Views: 1959

MWB query

Hi All, I created an MWB query(asset type = job) to extract job row counts(shows counts for all my previous job runs, as well as my latest run). I really only want counts for my last run(current date). In the query criteria, I have selected job start date and want it to be equal to the current date....
by Rob4732
Mon Aug 15, 2011 9:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Stage - after sql statement
Replies: 5
Views: 2943

Thanks for the info. I'll try it out.
by Rob4732
Mon Aug 15, 2011 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Stage - after sql statement
Replies: 5
Views: 2943

The after sql statement inserts a trigger record in a status table. The appearance of this record indicates to a legacy load process that this table has been succesfully loaded by Infosphere, allowing the legacy process to continue on.

Thanks

:D
by Rob4732
Fri Aug 12, 2011 10:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Stage - after sql statement
Replies: 5
Views: 2943

Workaround.

Removed the 'after sql statement' from Oracle connector stage. Created new job that calls a stored proc(which performs the after sql statement). This new job is setup in my sequencer as a successor job to my Insert job. And will only run if my Insert job was successful.



:?
by Rob4732
Fri Aug 12, 2011 9:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Connector Stage - after sql statement
Replies: 5
Views: 2943

Oracle Connector Stage - after sql statement

Hello my friends, I have a job that uses an Oracle connector stage to insert records into a table. I also have an 'after sql statement' defined in the connector stage. I noticed that when my Insert statement fails(and job aborts), the 'after sql statement' still executes. Don't see much in the docum...
by Rob4732
Thu Jul 21, 2011 4:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Infosphere and HL7 format
Replies: 2
Views: 2927

Thanks for the Info. I will give the xml a go. :)
by Rob4732
Thu Jul 21, 2011 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Infosphere and HL7 format
Replies: 2
Views: 2927

Infosphere and HL7 format

Hi Everyone, Some background: HL7 - Health Level 7 data format: Version 2 HL7 - proprietary format. Version 3 HL7 - xml format. I read a couple of posts on this topic from several years ago, but not sure how much has changed since then(if anything). I believe datastage TX can consume this format, ho...
by Rob4732
Mon Jul 18, 2011 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector
Replies: 4
Views: 5253

Try write mode = 'Bulk Load'

thx
by Rob4732
Mon Jul 11, 2011 3:05 pm
Forum:
Topic: Usage Analysis 2
Replies: 0
Views: 615

Usage Analysis 2

Hello All, I read a few posts that pertain to this, however I am interested in something slightly different. We receive several hundred database structure changes once a year as part of a vendor software upgrade. Some of these changes will directly impact our existing Infosphere jobs. I would like t...
by Rob4732
Thu Jun 16, 2011 4:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSX cutter - 8.5
Replies: 1
Views: 1676

DSX cutter - 8.5

Anyone know of a DSX cutter compatible with 8.5 exports?

I guess I could write one. :roll:

Thanks
by Rob4732
Thu May 05, 2011 3:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing null as a parm to a parallel routine
Replies: 3
Views: 2539

That would work. Something similar I was thinking of is to pass a value in the replace parm(something like 'REMOVE') to the routine and then alter the routine code to change the replace value to null if the replace input parm has a value of 'REMOVE'. I think the routine will do the right thing if th...
by Rob4732
Thu May 05, 2011 10:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing null as a parm to a parallel routine
Replies: 3
Views: 2539

Passing null as a parm to a parallel routine

Hello Everyone, I used the pxEreplace routine code(posted here by DSGuru2b - good code - thx). Works great. I thought I could use this code to remove a string also(by passing nothing as my replacement parm(tick tick - ''). It appears to work when I test the code in a windows c++ ide, but when I run ...