Search found 53125 matches

by ray.wurlod
Wed Nov 12, 2008 3:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS Locale for storing UTC date time format
Replies: 1
Views: 1029

NLS will be of no help whatsoever. This is an exercise in time zones, not locales. You need to establish the time zone (TZ environment variable) on the server and perform time arithmetic (and perhaps string manipulation) to produce a UTC time.
by ray.wurlod
Wed Nov 12, 2008 3:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cursor option in the lookup stage
Replies: 6
Views: 1420

Can you set up a "bucket" table of the keys in your stream source and do the lookups against a view made up of the inner join between that and the full table?
by ray.wurlod
Wed Nov 12, 2008 3:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle datatype not presently supported for Nvarchar
Replies: 2
Views: 2790

What did you get when you imported the table definition from Oracle using the same stage type that you are using in the job (for example the plug-in stage)? Use that data type in your job design.
by ray.wurlod
Wed Nov 12, 2008 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File to OracleEnterprize Stage
Replies: 5
Views: 1247

That sqlldr will always be fastest. DataStage can prepare ctl and dat files for sqlldr, and you may get gains from that part of the process compared with what you're currently doing, and DataStage can control the execution of sqlldr, but your client's expectations need better management.
by ray.wurlod
Wed Nov 12, 2008 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cursor option in the lookup stage
Replies: 6
Views: 1420

Does the RDBMS stage allow you to include a WHERE clause?
by ray.wurlod
Wed Nov 12, 2008 2:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort and restart currently running jobs.
Replies: 2
Views: 1205

Why do you want to do something like that?!!!
by ray.wurlod
Wed Nov 12, 2008 2:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date conversion from IST to PST timezone
Replies: 5
Views: 5159

That question is totally unrelated to time zone. Please begin a new thread with the NLS locale question.
by ray.wurlod
Wed Nov 12, 2008 2:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Remove Non Numeric?
Replies: 8
Views: 7621

... though computationally intensive.
by ray.wurlod
Wed Nov 12, 2008 2:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSJOB
Replies: 2
Views: 1534

The dsjob command retrieves job log information from the job log, which is a separate table for each job in the Repository database. The job is not executed when the log options are used with the dsjob command.
by ray.wurlod
Tue Nov 11, 2008 6:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Set Null
Replies: 1
Views: 835

No it isn't. Something you are doing downstream of the transformer stage is converting the true null to the representation "NULL" - probably a null field value, my guess is in a Sequential File stage's input link metadata.

IS there a SetNull() function in a server job Transformer stage?
by ray.wurlod
Tue Nov 11, 2008 4:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Remove Non Numeric?
Replies: 8
Views: 7621

Tough.

Create a stage variable containing a list of them. Initialize it only; you don't need to re-derive for every row processed.
by ray.wurlod
Tue Nov 11, 2008 4:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting Mainframe Files with EBCDIC into ASCII
Replies: 3
Views: 4605

No. There is a DB2z stage in version 8.1 (not version 8.0), but it is only for accessing DB2 on the zSeries machine.
by ray.wurlod
Tue Nov 11, 2008 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing Job Params and User Vars to Java Transformer Stage
Replies: 14
Views: 7756

Alas, that is not valid. A parameter reference can not be a function call.