Search found 15603 matches

by ArndW
Fri Jun 19, 2009 4:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in job log
Replies: 22
Views: 4550

The database cannot update a record that does not exist.
by ArndW
Fri Jun 19, 2009 2:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What ports does DataStage really use?
Replies: 12
Views: 9120

Nagarjuna - what are you using that port for?
by ArndW
Fri Jun 19, 2009 2:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What ports does DataStage really use?
Replies: 12
Views: 9120

Ray, this is a PX installation and those ports are closed between client and server. Or do you mean runtime port usage on a single machine?
by ArndW
Fri Jun 19, 2009 2:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Time Out Error in Parallel Jobs
Replies: 1
Views: 1843

Since it is a timeout issue, the question as to how heavily the machine was loaded at the time the error occurred as opposed to the normal load arises.
by ArndW
Fri Jun 19, 2009 1:58 am
Forum: General
Topic: Data Stage Server job- Capturing rejected records
Replies: 2
Views: 1701

It is possible to do, but you will need to use a transform stage and write explicit checks on each column since server jobs are not strictly typed as they are in PX jobs.
by ArndW
Fri Jun 19, 2009 1:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Time table creation
Replies: 3
Views: 817

The TimestampFromSecondsSince function could be used to deliver you a time component based on a number of seconds (30 minutes has 1800 seconds).
by ArndW
Fri Jun 19, 2009 1:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Compilation Error
Replies: 6
Views: 3158

I'm not sure if you intentionally entered "workaround" to this question. Your compiler is either incorrectly installed or incorrectly specified in the ADMIN settings for your project. Also, is that the correct compiler version for your DataStage?
by ArndW
Thu Jun 18, 2009 10:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What ports does DataStage really use?
Replies: 12
Views: 9120

This is a trial-and-error list. The site put in a firewall which blocked each and every port in the system unless explicitly enabled. These were the ones that I had to open for DataStage at V8.0.1. I don't have the list of exactly which portions use which ports, but I will see if I can find that as ...
by ArndW
Thu Jun 18, 2009 10:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job getting aborted abruptly
Replies: 12
Views: 7564

If you stop the job and check the directory, is the fifo file still there? If so, delete it. Also, are you using BASIC stages in the PX job?
by ArndW
Thu Jun 18, 2009 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Equivalent function in datastage
Replies: 3
Views: 2051

Code: Select all

OCONV(In.Col1,"MCT")
is masked initial capitals. I assume that is wha the Infa function does as well.
by ArndW
Thu Jun 18, 2009 8:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 22101 Segmentation Fault - core dumped & Parallel job re
Replies: 11
Views: 4497

The 139 doesn't help much. Somewhere in the error message there will be a SQL code or other more specific message.
by ArndW
Thu Jun 18, 2009 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Chinese Characters in Datastage
Replies: 8
Views: 6874

Collation probably doesn't apply, as it affect the sort order of characters, and not the representation. With NLS problems you will need to take problem analysis step by step. First just read some data from SQL server and output it to a flat file. Look at the flat file with a tool you know supports ...
by ArndW
Thu Jun 18, 2009 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: query in server jobs
Replies: 4
Views: 1024

My suspicion is that the answer is going to be "you can't". Specifically what kind of queries - SQL type subselects? DataStage will allow you to do certain joins and queries but SQL is limited to databases.
by ArndW
Thu Jun 18, 2009 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 22101 Segmentation Fault - core dumped & Parallel job re
Replies: 11
Views: 4497

Is there any more to the error message, the Segmentation fault and abort message don't narrow down the issue at all. Also, does the new SELECT function correctly from your preferred tool?
by ArndW
Thu Jun 18, 2009 3:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to compare Date with decimal value
Replies: 2
Views: 1115

What method was used to convert the date to a decimal value? Is the date stored as a YYYYMMDD or a YYYYDDD or a Julian date? Without knowing that, a conversion or comparison is not possible.