You should also have the permission to the directory whereever your log file exists.
This needs to be set in the APT file for that project.
Search found 6797 matches
- Thu Jul 20, 2006 1:12 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Oracle Load Error(DSEE7.5.1A, HP-UNX)
- Replies: 4
- Views: 2104
- Thu Jul 20, 2006 1:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Use of selfmade routine
- Replies: 14
- Views: 2643
Usually MSQL and any other database have quite similar syntax for case statments. You can do that in you SQL as well. The error you posted seems to be that either you are not allowed to use the functions or your SQL is no right. First test your SQL in the enterprise manager of MSSQL or the DB2connec...
- Thu Jul 20, 2006 1:05 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: extract data from JDEdwards (server edition)
- Replies: 3
- Views: 961
- Wed Jul 19, 2006 9:55 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to Transform 09302006 to a valid date
- Replies: 16
- Views: 3126
- Wed Jul 19, 2006 7:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Leading 0's
- Replies: 34
- Views: 15859
- Wed Jul 19, 2006 7:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to Transform 09302006 to a valid date
- Replies: 16
- Views: 3126
- Wed Jul 19, 2006 3:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Leading 0's
- Replies: 34
- Views: 15859
- Wed Jul 19, 2006 2:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DB2 equivalent of substr()
- Replies: 9
- Views: 3895
Re: DB2 equivalent of substr()
opdas wrote:Its like picking a substring in a DB2 table using function substr(column,3,5) , which would give be a substring from character 3 to character 5 of the string.
Actually the OP contradicts his statement. We all just looked at his substr() example
- Wed Jul 19, 2006 2:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: condition in sequencer / jobs
- Replies: 8
- Views: 1966
- Wed Jul 19, 2006 2:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Leading 0's
- Replies: 34
- Views: 15859
Seq. file retains the input as its coming in. Thats why you see it the way its fed into the seq. file. Are you sure the .67 is changed to .00 That should not happen, you sure your looking at the right row both in input and output. I dont have access to DataStage so cant test that right now. Someone ...
- Wed Jul 19, 2006 2:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: condition in sequencer / jobs
- Replies: 8
- Views: 1966
- Wed Jul 19, 2006 1:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: condition in sequencer / jobs
- Replies: 8
- Views: 1966
- Wed Jul 19, 2006 1:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Insert error
- Replies: 8
- Views: 2010
- Wed Jul 19, 2006 1:13 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to Transform 09302006 to a valid date
- Replies: 16
- Views: 3126
First of all you need to confirm weather its a server or px job. Answers to both types have been posted, so let us know if it worked. My code is only half the answer, then you need to convert it into output format depending upon what your database is, using the OCONV() function. I did not provide th...
- Wed Jul 19, 2006 9:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to Transform 09302006 to a valid date
- Replies: 16
- Views: 3126
use
to convert it into internal format
then use the oconv function to convert it to any format you like.
Code: Select all
ICONV(inlink.date, "DMDY[2,2,4]")
to convert it into internal format
then use the oconv function to convert it to any format you like.