Search found 21 matches

by bolingo
Mon Sep 14, 2009 9:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read data from DB2 Enterprise Edtion Stage
Replies: 10
Views: 9134

ray.wurlod wrote:You shouldn't need to re-start, but it won't hurt to do so. ...
I restarted but the problem is still here;

helllp
by bolingo
Sat Sep 12, 2009 8:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read data from DB2 Enterprise Edtion Stage
Replies: 10
Views: 9134

hi - you dont seem to have the orchdb2 operator installed - are u sure db2 was specified when u did the install (I am looking at a v7.5 install so may be different on V8) You also need to watch out as I believe DSV8 can talk to both V8 and V9 of DB2 - however if you dont specifiy db2 version at ins...
by bolingo
Wed Sep 02, 2009 1:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read data from DB2 Enterprise Edtion Stage
Replies: 10
Views: 9134

Re: Unable to read data from DB2 Enterprise Edtion Stage

I have the same problem: ##F IIS-DSEE-TFPM-00279 23:01:24(003) <DB2_UDB_Enterprise_987,0> Fatal Error: Caught ORCHESTRATE exception in parallel process: APT_Archive::BadClass: From: Loading memory archive: Could not find "APT_DB2ReadOperator". ##E IIS-DSEE-TFPM-00192 23:01:24(003) <node_bd...
by bolingo
Fri Feb 06, 2009 10:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2_UDB_Enterprise - Warning- unable to chdir
Replies: 8
Views: 5336

I solve the issue by doing this :

Code: Select all

$APT_COPY_TRANSFORM_OPERATOR = TRUE
Boling[/code]
by bolingo
Wed Feb 04, 2009 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2_UDB_Enterprise - Warning- unable to chdir
Replies: 8
Views: 5336

from root to /opt/appl/Ascential/DataStage/Projects/, I get this right drwxr-xr-x;
So , I think, it is not a probleme of permission;
chulett wrote:Note I did say "to that" not "on that"... you'd need to check all the way up from root. Just trying to cover all the bases.
help please!!!!!
by bolingo
Wed Feb 04, 2009 11:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2_UDB_Enterprise - Warning- unable to chdir
Replies: 8
Views: 5336

I have "execute" permission to that directory; like this: drwxrwxr-x2432 dsadm dstage 176128 Feb 04 11:06 EIN_TRX_MON_DEV Do you have "execute" permissions to that directory? That is what controls your ability to "cd" to it. I tcheck before asking in this forum; it is o...
by bolingo
Wed Feb 04, 2009 9:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2_UDB_Enterprise - Warning- unable to chdir
Replies: 8
Views: 5336

This directory exists;
It is my project directory;

I have permission to create, update, etc files in this directory;
chulett wrote:So... does that directory not exist or do you not have permissions to it?
But it difficult to fix this warning; :(
by bolingo
Wed Feb 04, 2009 8:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2_UDB_Enterprise - Warning- unable to chdir
Replies: 8
Views: 5336

DB2_UDB_Enterprise - Warning- unable to chdir

Hi everyone,

I try to remove the warning below from my job:

DB2_UDB_Enterprise_1,0: Warning: unable to chdir(/opt/appl/Ascential/DataStage/Projects/EIN_TRX_MON_DEV): No such file or directory :oops:

Could someone help me to fix it!

Thanks in advance;

Bolingo
by bolingo
Mon Aug 25, 2008 2:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 8062

The issue is solve by using User insert command like: INSERT INTO TBble (T_ID, T_DATE) VALUES (ORCHESTRATE.T_ID, to_date(ORCHESTRATE.T_DATE, 'yyyy/mm/dd')) In the ODBC enterprise stage, I declare t_date varchar; in open command property I use this query : TRUNCATE TABLE TBble; Thanks all of you for ...
by bolingo
Mon Aug 25, 2008 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 8062

The issue is solve by using User insert command like: INSERT INTO TBble (T_ID, T_DATE) VALUES (ORCHESTRATE.T_ID, to_date(ORCHESTRATE.T_DATE, 'yyyy/mm/dd')) In the ODBC enterprise stage, I declare t_date varchar; in open command property I use this query : TRUNCATE TABLE TBble; Thanks all of you for ...
by bolingo
Mon Aug 25, 2008 12:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 8062

Why not use the Oracle stage for Oracle then? In other words, why screw with ODBC? What happens if you make your field a varchar in the job and match the NLS_DATE format of the target database? If you don't know what that is, ask your DBA, they'll be able to tell you how it is set. I use ODBC inste...
by bolingo
Mon Aug 25, 2008 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 8062

Date format for ODBC must be YYYY-MM-DD You are using an ODBC driver, and therefore must conform to the standards specified for ODBC. Even if I use this format YYYY-MM-DD, I have the same error: ODBC_Enterprise_102,1: [Oracle][ODBC]Numeric value out of range. ODBC_Enterprise_102,1: Failure during e...
by bolingo
Fri Aug 22, 2008 9:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading from sequential file
Replies: 8
Views: 3249

Re: reading from sequential file

Parallel jobs don't handle this. You could solve it by pre-processing the file (for example using sed or awk command) to convert the double double-quote characters to something else, th ... can anyone please suggest me how do i accomplish this with awk or sed. thanks a lot in advance. Thanks Mark T...
by bolingo
Fri Aug 22, 2008 8:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: insert a date field with ODBC Enterprise stage
Replies: 18
Views: 8062

There is no 'date format' in an Oracle database, per se, unless you are attempting to match the NLS_DATE format. Please post the sql and clarify how the DATE column is defined in the job itself. There is not sql query; the main properties of my ODBC enterprise stage are: * target - table=TBablexx -...
by bolingo
Fri Aug 22, 2008 8:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading from sequential file
Replies: 8
Views: 3249

Re: reading from sequential file

if all your 5 fields have the same length in all records; you could process like this: you create a schema file like this: <b> record {record_delim='\r', record_length=fixed, delim=none} ( A:nullable string[4] {width=4}; B:nullable string[1] {width=1}; C:nullable string[6] {width=6}; D:nullable stri...