Search found 42189 matches

by chulett
Tue Apr 07, 2009 12:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job server aborting with error ORA-24374
Replies: 9
Views: 8359

In truth i should check database NLS configuration Yes, you should. Good to know when any characterset conversions are involved. Now the new question is : what if i change the project default (by Administrator) ? Should i expect other kind of errors on other jobs ? Hard to say, but I could see that...
by chulett
Tue Apr 07, 2009 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need help in undestanding CRC32
Replies: 4
Views: 2165

Yes, a very very remote chance but a chance none-the-less. Still, I wouldn't let that dissuade you from using it for CDD as you are doing as that is the typical use for it here as a search would reveal.
by chulett
Tue Apr 07, 2009 10:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is the procedure to install Datastage server 8.0.1 vers
Replies: 2
Views: 1335

Why not read the Installation Guide? You don't seriously expect people to type all of the steps into this forum for you, do you? :?
by chulett
Tue Apr 07, 2009 10:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to write substring option in transformar with if conditi
Replies: 5
Views: 1489

Then OKCUA4[7,len(OKCUA4)] Else

Or something similar with Right().
by chulett
Tue Apr 07, 2009 10:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with SQLConnect
Replies: 6
Views: 2450

What is the status it actually returns?
by chulett
Tue Apr 07, 2009 9:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job server aborting with error ORA-24374
Replies: 9
Views: 8359

Bummer, that would have been too easy I guess. For grins, what are the Oracle data types for the four columns you are selecting? Also, what version is the Oracle database and what client version are you using to connect to it? All four digits, please, like 9.2.0.5 for example.
by chulett
Tue Apr 07, 2009 9:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleanup / Housekeeping system generated files like &PH&a
Replies: 6
Views: 3237

CLEAR.FILE is damaging if jobs are running, checking for anything 2+ days old there should be perfectly safe unless your jobs run for days, that is. :wink:
by chulett
Tue Apr 07, 2009 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to generate sequence number/surrogate key in DS server
Replies: 1
Views: 1199

Sure, many ways. There are KeyMgmt routines in the sdk branch, you can use @INROWNUM added to a max() starting point, reference the db sequence object directly in your sql, etc etc.
by chulett
Tue Apr 07, 2009 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Running AWK
Replies: 14
Views: 4818

A common problem with approaches like this are quotes get stripped and that looks to be what's going on here. Either escape them or put the awk statement in a .bat file and execute the batch file.
by chulett
Tue Apr 07, 2009 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job server aborting with error ORA-24374
Replies: 9
Views: 8359

Ok. Nothing about that needs to be 'custom' but let's see... first suggestion would be to add the alias you defined to all columns and see if that helps:

a.COD_PORTFOLIO,
a.COD_IMSI,

Etc. All field names in the query.

ps. Nothing is obvious from the other side of the glass. :wink:
by chulett
Tue Apr 07, 2009 8:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Cleanup / Housekeeping system generated files like &PH&a
Replies: 6
Views: 3237

Yes, something like your find command running in cron is pretty typical. And other than your job logs, which auto-purge should handle, there really isn't any other directory needing housekeeping.
by chulett
Tue Apr 07, 2009 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Running AWK
Replies: 14
Views: 4818

The error:
DS_FocusGroup wrote:Command failed to execute - Missing field separator '"{if (NF==3) print $0}"' is not recognized as an internal or external command, operable program or batch file.
by chulett
Tue Apr 07, 2009 7:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: variable is defined as Numeric(5) /Integer(5)
Replies: 2
Views: 1309

What do you think the answer is? I'm wagering you'll get it right.
by chulett
Tue Apr 07, 2009 7:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to read the file in routines
Replies: 5
Views: 2105

OpenSeq would be BASIC and thus a 'Server' routine, a parallel routine would need to be in C++. Depending on exactly what is in your file, a simple cat may work to 'read' the file.