Search found 15603 matches

by ArndW
Thu Feb 28, 2008 8:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSJE_TIMEOUT
Replies: 6
Views: 3248

Did you notice if the machine was slower than usual when this happened? The timeout is often seen on heavily overloaded boxes, so the message isn't surprising. But if you have never seen this before and haven't changed anything significant on the machine it needs to be investigated.
by ArndW
Thu Feb 28, 2008 8:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get Job Name executed from sequence
Replies: 4
Views: 1400

Unfortunately the DSGet... routines won't work with job sequences.

Do you want the job name in a sequence, or in another job? One way would be to get the list of running jobs and, for each one, find out it's controller - which will be the sequence name.
by ArndW
Thu Feb 28, 2008 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference between transformer and a basic transformer
Replies: 3
Views: 1392

Transformer stages are always active stages. The basic transform stage is part of the Server product, but the PX engine allows this stage to be called (the opposite, using a PX stage in Server is not possible)
by ArndW
Thu Feb 28, 2008 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS Version clarification
Replies: 11
Views: 2893

The latest version is 8, but the latest version for 7.5 is 7.5.2
by ArndW
Thu Feb 28, 2008 2:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage hangs!
Replies: 3
Views: 1282

If only your ID is affected then I would look at the differences between your user and others at the UNIX level. Hanging up is odd; can you do a "view data" on the datasets from your designer window? You can also use the "truss -p {pid}" on one of your job's runtime processes to see which system cal...
by ArndW
Thu Feb 28, 2008 2:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: [b]shall we use the peek stage as a target[/b]
Replies: 7
Views: 2169

I prefer the "view data" of a dataset over a peek, but will use a peek stage when I want to view interim data, i.e. when the peek stage needs to be put into the processing stream and has both an input and an output.
by ArndW
Thu Feb 28, 2008 2:28 am
Forum: General
Topic: database
Replies: 6
Views: 1640

DataStage server is written based on a database which is very much like IBM UniVerse. They used to be the same system but have now been developed indendantly. The database is a Pick postrelational one and you can use your favorite web search tool to find thousands of pages discussing this.
by ArndW
Thu Feb 28, 2008 2:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems while loading data into the Oracle database
Replies: 1
Views: 821

Hari - posting a question two times will not double the speed you get answers. Posting a PX/EE question like this in a server forum will not get you any answers at all. Stick with the question you asked here
by ArndW
Thu Feb 28, 2008 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Column import warning
Replies: 4
Views: 1729

Which column number is "Student"? Can you post both your column definitions and a sample row of data to help analyze the problem?
by ArndW
Thu Feb 28, 2008 2:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems while loading data into Oracle database using ODBC
Replies: 1
Views: 848

The solution is to change the datatype to accept the bigger value or change the value to fit into the datatype.

Put a reject link in your output stage and point it at a peek stage. Run the job and examine the data in error to determine which column is causing you grief.
by ArndW
Thu Feb 28, 2008 2:04 am
Forum: General
Topic: database
Replies: 6
Views: 1640

DataStage Server - yes
DataStage PX/EE - no
by ArndW
Wed Feb 27, 2008 10:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with reading a EBCDIC Cobol file - Complex file stage
Replies: 32
Views: 10489

You cannot convert COMP-3 columns in that manner within the editor. Do you have ANY columns in your COBOL that are "COMP" or "COMP-3" or "COMP-2"?
by ArndW
Wed Feb 27, 2008 10:44 am
Forum: General
Topic: split the names
Replies: 6
Views: 1267

I was thinking of the Switch on the first letter, but as Ray has pointed out, you would need a transform/modify stage in the job, so you might as well use the transform to split the streams.
by ArndW
Wed Feb 27, 2008 10:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Collector
Replies: 1
Views: 614

Using Search shows 320 posts discussing link collector. I haven't looked through them for a case where the link collect doesn't work and doesn't give an error. Have you? If you have a specific case where this happens on your machine and can write your job so that you don't need a link collector then...
by ArndW
Wed Feb 27, 2008 4:27 am
Forum: General
Topic: split the names
Replies: 6
Views: 1267

You can split the stream using a switch or transform or filter stage (I'm sure that there are others I've overlooked)