Search found 15603 matches

by ArndW
Thu Jan 01, 2009 6:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Character conversion errors
Replies: 5
Views: 1661

"ASCL_ASCII" is your defined source datatype, this is apparently not the correct character set, you need to set it to the correct one. If your source is actually unicode then set it as such and the errors and warnings will disappear.
by ArndW
Wed Dec 31, 2008 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage not identifying Varchar
Replies: 4
Views: 1005

Ray - you ruined the suspense I was trying to build up ;)
by ArndW
Wed Dec 31, 2008 11:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage error in 8.1
Replies: 7
Views: 1483

Perhaps your Oracle library search paths and environment variables are different.
by ArndW
Wed Dec 31, 2008 4:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle stage error in 8.1
Replies: 7
Views: 1483

What version of Oracle are you using and is the Oracle DB server on the same machine as the DataStage engine? Have you tried using ODBC in PX to connect to Oracle?
by ArndW
Wed Dec 31, 2008 3:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage not identifying Varchar
Replies: 4
Views: 1005

Write a short Basic routine and return the value of "NUM('45e45')". Is that returning a 1 or a 0?
by ArndW
Wed Dec 31, 2008 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while date conversion
Replies: 9
Views: 1887

I realized I meant that each date needs to be 10, not 8, characters long. Have you checked this? My guess is that you have extra characters in your string. Another check you could do is

Code: Select all

StringToDate(Trim(InputColumn[1,8]),'%mm/%dd/%yyyy')
and see if the error persists.
by ArndW
Wed Dec 31, 2008 7:10 am
Forum: General
Topic: How to resolve "Can't open DS_JOBOBJECTS" error
Replies: 21
Views: 9505

That is good news, it means that there is still some data there. From the Administrator command do a "COUNT DS_JOBOJBECTS" and post the error message.
by ArndW
Wed Dec 31, 2008 6:59 am
Forum: General
Topic: How to resolve "Can't open DS_JOBOBJECTS" error
Replies: 21
Views: 9505

An how big are the 2 files in the subdirectory?
by ArndW
Wed Dec 31, 2008 6:50 am
Forum: General
Topic: How to resolve "Can't open DS_JOBOBJECTS" error
Replies: 21
Views: 9505

The first step should be doing the actions I suggested in my first post.
by ArndW
Wed Dec 31, 2008 6:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: fixing corrupted DS_JOBOBJECTS?
Replies: 6
Views: 2456

Ray posted excellent advice, I could just repeat what he recommended as initial steps. If you have any idea how this happened it would be good know as it might change the approach to solving the problem. I would also recommend that unless you have the exact same error messages as the original poster...
by ArndW
Wed Dec 31, 2008 6:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Warning while date conversion
Replies: 9
Views: 1887

Are you using the "StringToDate" function? Also, if you modify the call to

Code: Select all

StringToDate(Trim(InputColumn),'%mm/%dd/%yyyy')
do you get the same warning? If yes, check to ensure that the length of your date is always 8 characters.
by ArndW
Wed Dec 31, 2008 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: issue while the parameter value
Replies: 9
Views: 2130

The output of the "more" command most likely contains more than just the filename, it will also have a linefeed. Use "echo" on the return value to see what it contains, then you can parse out the actual filename with a SUBSTR() or FIELD() command.
by ArndW
Wed Dec 31, 2008 6:33 am
Forum: General
Topic: How to resolve "Can't open DS_JOBOBJECTS" error
Replies: 21
Views: 9505

You posted on another thread which looks like it might answer your question. You will need to explain where you are getting this error message, and what you might have tried to fix it. Also, if you look into your project directory on UNIX, is the subdirectory DS_JOBOBJECTS there, what are the access...
by ArndW
Wed Dec 31, 2008 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: fixing corrupted DS_JOBOBJECTS?
Replies: 6
Views: 2456

The exact same error or a similar one involving DS_JOBOBJECTS? Which version are you working on and which part of Ray's advice did you attempt?
by ArndW
Wed Dec 31, 2008 6:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can i read .xls file in datastage
Replies: 3
Views: 1265

This question has been asked (and answered) many times so far. If you are on a Windows DataStage server then it is easy to use the ODBC drivers for Excel that come with the system. If your DS is on UNIX, then it is more difficult, usually involving purchasing software that lets you use ODBC on UNIX ...