Search found 37 matches

by devnull
Wed Jun 04, 2008 10:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg: NULL values in comma delimited file
Replies: 15
Views: 8068

Re: Reg: NULL values in comma delimited file

Can you post your schema?
I mean for the input stage.
by devnull
Wed Jun 04, 2008 10:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reg: NULL values in comma delimited file
Replies: 15
Views: 8068

Re: Reg: NULL values in comma delimited file

Hi Everybody , I am working on datastage from the past 3 months.We are working on DATASTAGE 8.0.1 version on LINUX box. I am facing some problem in NULL handling .My scenario is as below I am having a sequential file . its a COMMA DELIMITED. 12,99,jkl,10082008,a 12,,mno,,a 13,20,klo,11062008,b So i...
by devnull
Wed Jun 04, 2008 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using a hex value in the where predicate of a filter stage
Replies: 3
Views: 2228

Conversion before Filter

ray.wurlod wrote:Convert it to decimal. E3 becomes 227.
You mean like with a Modify stage beforehand?
by devnull
Tue Jun 03, 2008 10:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using a hex value in the where predicate of a filter stage
Replies: 3
Views: 2228

Using a hex value in the where predicate of a filter stage

Can anyone tell me how I would represent a hex constant in the where predicate of a filter stage?

var_x = 'E3'xb is the equivalent Teradata expression. And I get the feeling osh will throw up on this.

Thanks.
by devnull
Wed May 28, 2008 8:23 am
Forum: General
Topic: Announcement: PyDataStage - DataStage Job control for python
Replies: 2
Views: 6517

Announcement: PyDataStage - DataStage Job control for python

Hello all. I just created and posted a new open source project on SourceForge called PyDataStage. This is a Python extension using the DataStage job API that allows you control jobs and retrieve log information for jobs using Python. It is a work in progress and so far I have only tested this on AIX...
by devnull
Tue May 13, 2008 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX and MQ Client
Replies: 11
Views: 5705

We are using MQ with HAWK both with real-time components, the Oracle UOW operator and a customer MQ UOW operator at this installation. Although we do have local queues, the work is done on queues local to the mainframe. To repeat a question from earlier - can you execute the command "dspmq&quo...
by devnull
Mon May 12, 2008 3:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executable file of a DS Job
Replies: 26
Views: 21486

The thread has strayed from its original topic. DataStage does NOT generate an executable file. DataStage parallel jobs generate an osh script. When the job is run, a new osh script (called the "score") is written, taking into account the currently selected configuration. The score is exe...
by devnull
Mon May 12, 2008 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX and MQ Client
Replies: 11
Views: 5705

All DataStage wants to know about are the MQ queue manager and teh MQ queue name. If those can be accessed from the DataStage server command line using the mq commands (i.e. "dspmqaut") then you are good to go from DataStage. Is anyone here currently using Hawk with MQ Series? If so, how ...
by devnull
Mon May 12, 2008 10:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX and MQ Client
Replies: 11
Views: 5705

It can connect to queues on other servers. The local queue manager uses MQ intercommunication to communicate with the remote queue manager(s). And is this intercommunication something that must be configured in DataStage, MQ or both? What exactly is the nature of this MQ intercommunication? Does it...
by devnull
Fri May 09, 2008 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX and MQ Client
Replies: 11
Views: 5705

Websphere MQ Plug-in and remote queues - DataStage 7.x

So if DataStage is installed on the same server as MQ server, can it connect to queues on another server? Or can DataStage only connect to local queues?
by devnull
Fri May 09, 2008 9:40 am
Forum: Site/Forum
Topic: How did you learn DataStage?
Replies: 34
Views: 38741

Orchestrate then Ascential

I learned Torrent Orchestrate first on my own then took DataStage classes from Ascential when the product was assimilated into DataStage.
by devnull
Thu Nov 02, 2006 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup or Join or Merge
Replies: 10
Views: 5869

Oh yeah. I don't know if this holds for other databases, but for DB2 if the input and lookup tables are in the same database, it's most efficient to do a join in the DB2 read (in this case an outer join), since DB2 does a better job optimizing retrieval of data from its database than DataStage does....
by devnull
Wed Nov 01, 2006 4:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop: APT_MultiFieldAccessor without table definitions
Replies: 0
Views: 1146

Buildop: APT_MultiFieldAccessor without table definitions

I have been able to successfully use the MultiFieldAccessor class to iterate over all fields in a record with out referring to them by name. I can get the name and type of each field and can access their values. This will come in handy for performing mass scrub operations on fields with various type...
by devnull
Wed Nov 01, 2006 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup or Join or Merge
Replies: 10
Views: 5869

Re: Lookup or Join or Merge

Hi Gurus, i have to perform a lookup on a table(lookup with 4 columns).... the reference stream has data of around 6million rows.. what i was thinking was to use merge stage(as i wanted to handle the rejects as well) instead of lookup stage(which would reduce the performance)... i think i can also ...