Search found 4992 matches

by kcbland
Thu Feb 03, 2005 8:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Constraint 0=1
Replies: 5
Views: 2235

This can never evaluate to TRUE, so this constraint is equivalent to @FALSE. If it's connected to a ORABULK stage, chances are the data file being used is generated by a second output link. Because the ORABULK stage has HUGE overhead, a trick a lot of customers were told to use is to let DataStage g...
by kcbland
Thu Feb 03, 2005 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: time stamp concatenation
Replies: 4
Views: 737

Code: Select all

linkname.HR:linkname.MIN:linkname.SEC:linkname.AM_PM_Flag
by kcbland
Thu Feb 03, 2005 2:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating Dimension table taking too Long
Replies: 4
Views: 1651

1. Analyze source system server load and make sure that machine is not overwhelmed right now. 2. Analyze target system server load and make sure that machine is not overwhelmed right now. 3. Extract your data to file to minimize delays imposed on source system because of target system drag. ODBC -->...
by kcbland
Thu Feb 03, 2005 11:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal End error while running a DS load job into Oracle
Replies: 32
Views: 8438

So what you are saying is that there were 3 columns in the source data file that did not map into the target OCI stage. How did you "remove" them? These columns need to be defined in the Sequential stage else it gives warning messages. You would have to suppress row truncation messages. What exactly...
by kcbland
Thu Feb 03, 2005 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Schema management
Replies: 3
Views: 888

Re: Schema management

What am I missing here? It has to be better than this, 'cos this is rubbish. You are missing a lot more, unfortunately, it's more of the same issues. That's just the way DataStage and table definitions work. Myself and others have spent a significant amount of time writing utilities to "reconnect" ...
by kcbland
Wed Feb 02, 2005 10:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: about # value
Replies: 3
Views: 991

Re: about # value

If Trim(inXfmDataScrub.GENDER) # '' Then @TRUE Else @FALSE What does this mean? does it mean Trim(inXfmDataScrub.GENDER) Is null then @True else @False? thanks Do NOT confuse blank with NULL. Absence of value is blank, NULL is an ASCII character value, dependent on your system setting (some...
by kcbland
Wed Feb 02, 2005 10:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: about @False
Replies: 4
Views: 1076

Make sure you use @FALSE, not @False. @FALSE is equated to 0, whereas @False is a non-existent variable. It still works, only because it is unassigned and would therefore give a message stating such and that ZERO would be used. There is no reason to build links and then constrain with @FALSE, unless...
by kcbland
Wed Feb 02, 2005 7:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: about @False
Replies: 4
Views: 1076

@FALSE is a BOOLEAN variable. @TRUE is the opposite. In a constraint, the expression must either be true or false. So, to always make a row go down a link, putting @TRUE causes it to do so. Putting @FALSE prevents any rows from going down the link. Why do this in a constraint? For testing or debuggi...
by kcbland
Wed Feb 02, 2005 7:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to unlock a ds job using unix commands
Replies: 7
Views: 5977

Take a look here, even though it's Windoze it is still the same information.

http://www.dsxchange.com/viewtopic.php?t=85570
by kcbland
Wed Feb 02, 2005 4:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal End error while running a DS load job into Oracle
Replies: 32
Views: 8438

The close error is from link process reading the sequential load file. An abnormal termination means that something tragic occurred and the controlling DataStage process could not recover the remaining job processes. What I'm saying is that the sequential file closing error message is related to the...
by kcbland
Wed Feb 02, 2005 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change Oracle 8i to Oracle 9i path in dsenv
Replies: 7
Views: 1868

Yeah, I forgot, you can't use the 64bit 9i client. Thanks Craig.
by kcbland
Wed Feb 02, 2005 1:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change Oracle 8i to Oracle 9i path in dsenv
Replies: 7
Views: 1868

Check your LD_LIBRARY_PATH also points to the right shared libraries.

Example:

Code: Select all

$ env|grep ORA
ORACLE_HOME=/ora-main/app/oracle/product/9205
$ env|grep LD
LD_LIBRARY_PATH=/usr/local/lib:/ora-main/app/oracle/product/9205/lib
by kcbland
Wed Feb 02, 2005 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal End error while running a DS load job into Oracle
Replies: 32
Views: 8438

Drop the index and see if you have any load problems. If you do, then you get to log an issue with Ascential technical support. We're running out of options here, so if you can identify that a function based index is causing some issue to feed back to Ascential that it is unable to handle, then you ...
by kcbland
Wed Feb 02, 2005 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change Oracle 8i to Oracle 9i path in dsenv
Replies: 7
Views: 1868

Which, 8i or 9i? There is a 7.3, 8, and 9 plugin.
by kcbland
Wed Feb 02, 2005 1:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change Oracle 8i to Oracle 9i path in dsenv
Replies: 7
Views: 1868

Are you using the 9i plugin in DataStage?

DS 9i plugin works with 9i client ONLY
DS 8i plugin works with 8i and 9i client