Search found 139 matches

by shawn_ramsey
Mon Mar 31, 2008 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: kicking off DStage jobs with external script?
Replies: 4
Views: 2632

I agree with Ken the best approach is a scheduler. I have been in the same boat where we had to go through the process of convincing management to get a scheduler. I was finally able to locate a fairly good one that was within their price tolerance. We ended up with ActiveBatch http://www.activebatc...
by shawn_ramsey
Thu Feb 07, 2008 2:08 pm
Forum: General
Topic: hexatridecimal or base 36
Replies: 13
Views: 8028

I wrote code way back in Foxpro and Oracle to convert both ways (integer to/from binary through hexatridecimal). If I recall it was a pretty simple program.

Hmm... I wonder if I still have it somewhere.
by shawn_ramsey
Tue Feb 05, 2008 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow Lookup in Netezza
Replies: 4
Views: 3763

Re: Slow Lookup in Netezza

Have you looked at what is going on with the Netezza? I have found that it is much faster to bulk load the data into a temporary table and use a SQL statement to join it and pull the data back out for stuff like this. They have added a bulk unload with the new version of the stage but I am not sure ...
by shawn_ramsey
Mon Feb 04, 2008 11:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Anyone else with Netezza and DataStage?
Replies: 18
Views: 22067

Have DataStage check the Netezza load log, for example in an after-job subroutine or in a job sequence downstream of the Job activity. ... At this point we have it fail and look at the logs manually. Ray's suggestion is an option but the logs only exist on the DataStage server if you use the nzload...
by shawn_ramsey
Wed Jan 30, 2008 9:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: extraction and loading
Replies: 6
Views: 2816

Best practice is, indeed, to stage your data at least once between extraction and loading. It is not necessary to do so, merely wise. It means, among other things, that you only have to per ... The only thing that I would add is that I would suggest that you use a parallel dataset instead of a sequ...
by shawn_ramsey
Wed Jan 30, 2008 9:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Anyone else with Netezza and DataStage?
Replies: 18
Views: 22067

Hi Shawn, what were the issues you guys found using plug in stage? are you guys using 7.5.2 or 7.5.3? We have ran into several challenges with the Netezza Stage which mostly revolve around how differently Netezza works. IBM has done quite a bit of work on the stage based on our feedback and now tha...
by shawn_ramsey
Wed Jan 02, 2008 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Avoid Multiple Instances of Jobs in Director Log.
Replies: 8
Views: 4414

Shawn - I remember now, I had to write a short DS/BASIC program that goes into the log and cleanses "orphaned" information. I think that might be fixed at V8 and can check that next week. I might also have the code on my PC which cleans up the log and can post it here. Good news is that r...
by shawn_ramsey
Mon Dec 31, 2007 3:19 pm
Forum: General
Topic: DataStage Roadmap Information
Replies: 10
Views: 6938

Re: DataStage Roadmap Information

Hello, This is more of a general question: Where can I find DataStage roadmap information? I have tried emailing IBM, but haven't received a response and the web hasn't been much help. I am trying to get information such as future release information, when they will stop support of legacy versions,...
by shawn_ramsey
Mon Dec 31, 2007 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Avoid Multiple Instances of Jobs in Director Log.
Replies: 8
Views: 4414

ArndW wrote:I can think of 2 things:
a) filtering Director entries
b) Automatic purging - this will remove the instance name when the log is purged. ...
Unfortunately automatic purging only clears logs and will not remove the invocation information.
by shawn_ramsey
Fri Dec 21, 2007 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to update a row using Netezza
Replies: 4
Views: 3162

Hitesh, You do not (I really mean DO NOT) want to use the ODBC stage to do an update in Netezza. Netezza has no indexes and the ODBC issues singleton updates. The combination of the two with results in significantly poor performance (we had a table that was updating at a speed of 1 row every 15 seco...
by shawn_ramsey
Mon Jun 11, 2007 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to copy files to different domains
Replies: 4
Views: 2912

This should do it. It will authenticate you to the server privnet22 and allow you to use you UNC names to copy. net use \\privnet22 <password> /USER:<domain>\<username> Replace <password> with the password of the user you are using for the connection Replace <domain> with the domain of server that t...
by shawn_ramsey
Mon Jun 11, 2007 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tivoli Schedule
Replies: 9
Views: 6993

I would take Ray's advice and wrap the call to dsjob in a shell script and have the shell script translate the exit code.
by shawn_ramsey
Tue May 08, 2007 9:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Input Stage In Parallel Jobs
Replies: 3
Views: 2180

You need to have an input link of some sort. The row generator works if you want to process 1 file. I have also used the external source to get a list of files using a unix find. In either case you set the input tab to URL/Filepath and the XML stage will handle the rest.
by shawn_ramsey
Tue Mar 06, 2007 10:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best way of Deleting Partially loaded Data
Replies: 12
Views: 3177

We have a load ID column in our tables that we use for audit and validation processes. We generate an ID (that is logged in a control table) and all jobs in a sequence will tag new rows with the load ID. That way we can use the id for validation counts, sums, etc as well as bulk deletions on a faile...
by shawn_ramsey
Fri Feb 02, 2007 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Renaming and deleting a dataset
Replies: 34
Views: 14850

If you are like me and trying to do this outside of a datastage job you will have to set the APT_CONFIG_FILE environment variable also.