Search found 53125 matches

by ray.wurlod
Wed Mar 26, 2008 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing value of one job to another
Replies: 8
Views: 5770

Change your routine to log a message to prove that it's operating. If it is, then show us how and where you're trying to use the activity variable.
by ray.wurlod
Wed Mar 26, 2008 7:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stop Propogation of columns in to dataset
Replies: 8
Views: 1542

Delete the Data Set - it still has the column definitions in its record schema from when it was created. By deleting it you force its re-creation using the new record schema.
by ray.wurlod
Wed Mar 26, 2008 4:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle commit interval
Replies: 11
Views: 5878

$UNSET tells DataStage to pretend that the environment variable was never set at all, which is entirely legal. Check your spelling.
by ray.wurlod
Wed Mar 26, 2008 4:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compare the number of records
Replies: 5
Views: 1851

In a word, beforehand. Or afterwards. If beforehand, get the line count from the input file and compare it with the value in the control file. You can use operating system utilities to get both values, and compare them in a Nested Condition activity. If afterwards you can compare one of the row coun...
by ray.wurlod
Wed Mar 26, 2008 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to clear job log when it crosses a limit
Replies: 0
Views: 1228

Learn patience, grasshopper. It's not hung. If there are tens of thousands of entries in the job log, the Director will take a long time to refresh - first it has to sort them in date order (since they're in a database table). There is a "Refreshing" progress bar in the Director's status bar when yo...
by ray.wurlod
Wed Mar 26, 2008 3:56 am
Forum: General
Topic: How can I get the evaluation version of DtaStage 8.x
Replies: 4
Views: 1567

You should be able to login to PartnerWorld and get it via that channel. If not discuss with your manager - this is part of what being a partner is about. I'm not, so can not really give any more advice.
by ray.wurlod
Wed Mar 26, 2008 3:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle commit interval
Replies: 11
Views: 5878

If the time interval is asserted the row interval is ignored. Bring both environment variables into your job as job parameters, and give the special default value of $UNSET to the time interval parameter. In this way the row interval parameter will be able to "do its thing".
by ray.wurlod
Wed Mar 26, 2008 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PL/1 file structure
Replies: 3
Views: 992

That is not a legal definition. There can be no "." between the V and the 9.
by ray.wurlod
Wed Mar 26, 2008 3:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the month end date
Replies: 1
Views: 993

Doesn't Search work in your browser?
:roll:
by ray.wurlod
Wed Mar 26, 2008 3:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How do I find garbage/control characters within a column?
Replies: 8
Views: 2371

Code: Select all

Len(Oconv(Oconv(InLink.TheInput,"MC/A"),"MC/N")) > 0

One Oconv() removes all alphabetic characters, the other removes all numeric characters. Anything left over is non alphanumeric.
by ray.wurlod
Wed Mar 26, 2008 3:05 am
Forum: General
Topic: project creation
Replies: 6
Views: 1734

No. The project is a schema in the database. It is not "in" the database in any other sense. Existence of a project is recorded in system tables UV.ACCOUNT and UV_SCHEMA.
by ray.wurlod
Tue Mar 25, 2008 11:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is Sorting preserved across multiple stages in parallel jobs
Replies: 3
Views: 1267

You will (may) get multiple copies if your data are not partitioned as per the keys mentioned in the Remove Duplicates stage.
by ray.wurlod
Tue Mar 25, 2008 11:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob linkinfo
Replies: 3
Views: 2922

Maybe the file was populated on a previous run?

Do you get a row count with

Code: Select all

dsjob stageinfo InStore InstoreTraffic_11_27TA Copy_of_periodstxt 
by ray.wurlod
Tue Mar 25, 2008 11:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-defined SQL joining two servers issue
Replies: 9
Views: 4218

You need a connection (session) before you can issue an ALTER SESSION command, too. That's why it has to be in the stage, and can not be done globally.
by ray.wurlod
Tue Mar 25, 2008 9:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: job aborts with sql loader error
Replies: 2
Views: 895

What stage type is MATERIAL_DESC_EXCEL_ldr ?
What are its pertinent stage properties?
Was any other error/warning logged?
Why might an export (conversion from DataStage internal format to "text" format) failed? Do you have write permission to the file/directory in question?