Search found 53125 matches

by ray.wurlod
Fri Aug 19, 2005 4:45 pm
Forum: Site/Forum
Topic: Terms and Conditions
Replies: 0
Views: 3402

Terms and Conditions

I believe that the right place to introduce "correct" practices for this site is a Terms and Conditions screen, much like one gets on banking, airline, insurance, etc., sites. People signing up (that is, joining) would have to check a box indicating that they agree to the terms and conditions. These...
by ray.wurlod
Fri Aug 19, 2005 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to run a mainframe job
Replies: 5
Views: 1148

Right below the Generate button in Designer is another button called Upload. This is how you get the COBOL and JCL to the mainframe. After that, it's someone else's problem; DataStage does not - can not - control execution on the mainframe. And the politics of getting permission to compile and run o...
by ray.wurlod
Fri Aug 19, 2005 3:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compiled Or Not Compiled IN Production
Replies: 2
Views: 681

It might be worth validating the jobs in the new environment, to make sure that parameter values are correctly set. If they aren't, go to Director and choose Set Defaults from the Job menu.
by ray.wurlod
Fri Aug 19, 2005 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Obtaining Column Information within Transform.
Replies: 3
Views: 847

In parallel jobs you can use a Lookup stage against a Lookup File Set stage or performing a sparse lookup against a database stage (e.g. DB2 or Oracle). In either case the lookup key column is mapped automatically with no requirement for manual intervention. No such capability exists in server jobs ...
by ray.wurlod
Fri Aug 19, 2005 3:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LOCK & CLEAR.LOCKS
Replies: 12
Views: 3674

LOGTO UV is deliberately blocked in the Administrator client Command window (for reasons I can't fathom), but can be used if you're in a dssh environment on the server.
by ray.wurlod
Fri Aug 19, 2005 3:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: delete records from file1 if key is in file2
Replies: 2
Views: 944

Welcome aboard. :D Your choice of subject line won't help anyone else searching for assistance with this particular problem; please try to be more meaningful with future Subject lines. You should be able to identify the rows with three cascaded pairwise joins (Join stages). File1(Key1) = File2(Key3)...
by ray.wurlod
Fri Aug 19, 2005 3:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IsValid Decimal
Replies: 3
Views: 1318

Umm, "abc" doesn't really have two decimal places?!! :lol:

Maybe the data type requires precision AND scale, for example decimal[10,2].
by ray.wurlod
Fri Aug 19, 2005 3:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Edit Row - Date Type - Default
Replies: 7
Views: 3704

That's how I'd be thinking too. Just as in Oracle, your date must match your date picture (which is yyyy-mm-dd). So try 1900-01-01. If that fails try "1900-01-01".
by ray.wurlod
Fri Aug 19, 2005 3:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trapping StringToDate Error
Replies: 2
Views: 1730

... and I managed to sleep through the whole drama! :D

Well done on solving it! We'll get you weaned onto data types yet!
by ray.wurlod
Fri Aug 19, 2005 3:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logs from C++ library coming only sometimes.
Replies: 2
Views: 877

Check to see whether a file has been written into the &PH& directory. Or try resetting the job in Director, to see whether a "from previous run..." event picks up the output from your printf() calls. Prefer SIGTERM to SIGKILL at all times. It allows a grace time for buffered I/O to complete ...
by ray.wurlod
Fri Aug 19, 2005 3:04 am
Forum: IBM QualityStage
Topic: USING RULES Need help Overiding and stripping
Replies: 6
Views: 3379

For removing everything between parentheses, and assuming there is only one set of parentheses, you can use an expression. If there is more than one set of parentheses, you need a routine that iteratively processes the string using the same logic for each set. Extract everything up to and including ...
by ray.wurlod
Fri Aug 19, 2005 2:55 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Importing Oracle Meta
Replies: 10
Views: 5183

Is Oracle busy doing other stuff? The DBA can help you to track down what's being asked of Oracle at any particular time, and maybe why timeouts are occurring.
by ray.wurlod
Fri Aug 19, 2005 2:53 am
Forum: Site/Forum
Topic: Add a "DataStage Project Stories" Folder
Replies: 6
Views: 3382

D'you think we (oops, I mean the dudes who fund this site) should sell such success stories to IBM or whomever?
by ray.wurlod
Fri Aug 19, 2005 2:49 am
Forum: Enhancement Wish List
Topic: Adding an 'IN' clause to the Filter Stage's where condition
Replies: 3
Views: 2079

In server jobs (yes, I am aware Brad uses parallel jobs) there is a technique using a "range conversion" with Oconv. This returns the original string if it falls within one of the ranges in the second argument, or an empty string otherwise. To accomplise Brad's example you would use: Oconv(Argum...
by ray.wurlod
Thu Aug 18, 2005 2:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trace File Analysis
Replies: 2
Views: 1662

You haven't given us enough in the two excerpts. We need to see the preceding IN= and OUT= messages (and everything between them) to understand what DataStage was attempting to do that took so long.