Search found 51 matches

by timsmith_s
Tue Feb 19, 2008 11:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Backup DataStage 7.5.2 and IIS 8.0.1 (same server)
Replies: 12
Views: 10513

Re: IBM Solution

What port are you using for the host - I get the 9080 for the domain, but which port/process are you using.
by timsmith_s
Mon Jan 14, 2008 11:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Propagate table defn changes into job
Replies: 2
Views: 1698

Painful! Any suggested approaches, like export DSX files and run a sed or two over them?
by timsmith_s
Mon Jan 14, 2008 10:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Propagate table defn changes into job
Replies: 2
Views: 1698

Propagate table defn changes into job

Is it possible to change a table defn from say varchar 64 to varchar 255 and have that change propagate to its dependent jobs?
by timsmith_s
Tue Oct 02, 2007 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does the SetDSParamsFromFile exist for DSEE
Replies: 12
Views: 5046

The fuction was specified in the Appendix of the Advanced course - course manual (not the lab manual)
by timsmith_s
Tue Oct 02, 2007 9:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximizing resources utilized for sorting
Replies: 4
Views: 3465

How is the heap space modified? You mean the process heap space, say at the UNIX OS level?
by timsmith_s
Wed Sep 26, 2007 12:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximizing resources utilized for sorting
Replies: 4
Views: 3465

Great feedback - thank you. I understand about the $APT_TSORT_STRESS_BLOCKSIZE. Or rather I understand its the memory setting, but is this the memory setting per node? For instance, say I have 4GB of RAM per NODE, It doesnt appear that DSEE is burning up the RAM before it starts hitting the scratch ...
by timsmith_s
Tue Sep 25, 2007 11:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Maximizing resources utilized for sorting
Replies: 4
Views: 3465

Maximizing resources utilized for sorting

I have reviewed several threads regarding scratch space issues; however, I was hoping that someone might summarize the best approach for maximizing resources used for sorting (tsort)? That is, if I am in a situation where I have a very large file to sort, if I use an explicit sort stage and specify ...
by timsmith_s
Sun Sep 23, 2007 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integrating APT Framework - write dataset directly
Replies: 1
Views: 1433

Integrating APT Framework - write dataset directly

I was reviewing the Framework documentation and was trying to find the API for datasets. We have several legacy applications that write very large text files - in an effort to speed things up, we are considering the possibility of writing to a dataset directly. Has anyone tried this before? I am sur...
by timsmith_s
Sun Sep 23, 2007 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning char* from external routine
Replies: 17
Views: 8225

Very true. Maybe the Trim() was a bad choice on my part. your example is in the clear because it uses less than the max inbound buffer length. I should have suggested StringCat or the like to illustrate my point. Nevertheless, thank you for the background.
by timsmith_s
Tue Jul 24, 2007 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning char* from external routine
Replies: 17
Views: 8225

Its based on the assumption that DSEE will cleanup the memory that you alloc-ed. I am not saying that you are wrong. What I am saying is that its a big deal to just allocate something and pass it over the fence. I would have expected very clearly written documentation to explain this behavior. I hav...
by timsmith_s
Tue Jul 24, 2007 5:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: backup and recovery best practices
Replies: 0
Views: 1011

backup and recovery best practices

I have read several posts that mention using the uvbackup (and uvrestore) commands and it got me thinking about the different approaches to backing up DSEE. How can these be used in the context of an overall backup/recovery strategy. That is, I would imagine that a cold backup (DSEE down) would prov...
by timsmith_s
Thu Jul 19, 2007 8:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning char* from external routine
Replies: 17
Views: 8225

Thank you all for the posts - great insight. DSguru2B your code worries me - got memory leak written all over it - that said, I am willing to try your approach - its simple enough and I am running out of memory as it is. I agree with the previous post that the DSEE documentation 1. sucks 2. doesnt d...
by timsmith_s
Thu Jul 19, 2007 4:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning char* from external routine
Replies: 17
Views: 8225

DSguru2B - dont follow. paraphrase: If I still write my own Trim() and I "define my variable" inside of my function - how? This is the heart of the issue. Using the following code is invalid - it will return an address of "LocalBuffer" which will be out of scope once the function...
by timsmith_s
Wed Jul 18, 2007 10:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning char* from external routine
Replies: 17
Views: 8225

Interesting - so if I wanted to write my own trim function the signature would read

Trim(instring, outstring) rather than Trim(instring)

Why do the ~standard~ routines not require this sort of hassle? I was told they were handled in much the same way.
by timsmith_s
Wed Jul 18, 2007 8:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Returning char* from external routine
Replies: 17
Views: 8225

Where is the buffer coming from, DataStage? How would I call this from a Transformer?