Search found 15603 matches

by ArndW
Tue Apr 01, 2008 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while using DB@ stage
Replies: 2
Views: 931

Let's see - you waited a whole minute before asking for quicker help?

What DB2 stage and options are you using? What have you checked? Do other tables have write errors? What does Google for "DB2 Reason Code 106" return? Or sqlcode -804 and SQLSTAT 07002?
by ArndW
Tue Apr 01, 2008 6:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read a excel file in datastage
Replies: 4
Views: 2262

If your DataStage server is on UNIX then you will need to buy a 3rd party software package to read Excel files directly using ODBC. The vendor that springs to mind is DataDirect. There are also Java apps in the public domain that might be used to do this, but I have no experience with that.
by ArndW
Tue Apr 01, 2008 5:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: connection to LDAP
Replies: 9
Views: 3113

What do you want to do on the LDAP Server? Access a sequential file?

LDAP Wiki
by ArndW
Mon Mar 31, 2008 2:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LIST DS_JOBS
Replies: 12
Views: 9059

make sure nobody is logged and do the DS.REINDEX again.
by ArndW
Mon Mar 31, 2008 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: LIST DS_JOBS
Replies: 12
Views: 9059

That means some other process has an exclusive file lock on that entry. Can you check up on who else is logged in?
by ArndW
Mon Mar 31, 2008 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running unix script
Replies: 4
Views: 1636

use an absolute path for "testfile".
by ArndW
Mon Mar 31, 2008 10:47 am
Forum: General
Topic: Error while compiling the job
Replies: 18
Views: 6294

Try to create a new DataStage job. Can you save it?
by ArndW
Mon Mar 31, 2008 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot Error
Replies: 4
Views: 2025

Your library paths are not correctly set up in the system test environment. Compare the settings for LIB or LIBPATH on DEV and the system test and I am fairly certani you will having one or more missing directories.
by ArndW
Mon Mar 31, 2008 10:36 am
Forum: General
Topic: Interview Questions
Replies: 1
Views: 868

Ana - not from this site! Many of the people here have spent years working with the product and building up both expertise and a reputation. For this reason the general opinion is that people who study up on a subject in order to pass an interview and then expect to be "dragged along" or learn on th...
by ArndW
Mon Mar 31, 2008 8:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Shell scripting
Replies: 2
Views: 1045

A simple way would be to create a file at the beginning of the script and delete it at the end, then check for existence prior to creating it.
Some systems you can use "fuser" command on the file to see who has it open, that is an even better method.
by ArndW
Mon Mar 31, 2008 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to stop the sequence
Replies: 2
Views: 993

Are those jobs marked as "running" in the Director? Do you perhaps have a job monitor window open? Can you do a "reset" on the job if they are marked as "aborted"?
by ArndW
Mon Mar 31, 2008 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: select Distinct
Replies: 16
Views: 4758

1. Sort the input data by the column you need to have distinct. Let us assume it is "In.CustNo" 2. Create a stage variable svIsSameCustNo, derive it from "IF In.CustNo=svLastCustNo THEN 1 ELSE 0" 3. Create a stage variable svLastCustNo which is derived from "In.CustNo" 4. Create a constraint "NOT(sv...
by ArndW
Mon Mar 31, 2008 4:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: select Distinct
Replies: 16
Views: 4758

You can use the Aggregator or, if your data is sorted, you can use stage variables in a transform stage to remove duplicates.
by ArndW
Mon Mar 31, 2008 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Topology for DS Installation on an Unix Machine
Replies: 5
Views: 1343

Yep, that is the way the system works.
by ArndW
Mon Mar 31, 2008 4:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with view data on oracle stage
Replies: 2
Views: 864

This one seems to have fallend between the cracks. What sort of options are you using in the Oracle stage? Default or non-default SELECT? Does the exact same SELECT work from SqlPlus or your favorite query tool? Any other problems with other jobs/tables?