Search found 13 matches

by friday
Thu Jan 19, 2006 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import consumed only...
Replies: 1
Views: 1530

I actually found the source of the warning. In one of the field that i'm reading, there is a " in it. My file is a double quote csv. Dstage though it reached the end of the field but also see that there is data after. So my problem is more, how to specify that a field, enclosed with double quot...
by friday
Thu Jan 19, 2006 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import consumed only...
Replies: 1
Views: 1530

Import consumed only...

I'm reading a sequential file ( comma-delimited ) and it give me the below warning: "Import consumed only 254bytes of the record's 341 bytes (no further warnings will be generated from this partition) [impexp/grouprep.C:883]" The file is loaded properly, no missing infos. The job runs thro...
by friday
Wed Jan 11, 2006 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: StringToDate format
Replies: 3
Views: 1790

StringToDate format

I'm reading a sequential file with many dates in it. ex: 27/10/2002 27/1/2002 1/12/2003 1/3/2004 I applied StringToDate(MY_DATE_STRING[1,10],"%mm/%dd/%yyyy") and it abended on the 3 last exemples because the format is not exact (missing leading 0 in month or day part). is there another for...
by friday
Mon Nov 28, 2005 3:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

my pc is up to day.

you're probably right, soemthing might have been corrupted in the resgistry... i'm no pro in registry. Tech support re-initate my pc image and everything is working fine now.

thanks everyone!
by friday
Tue Nov 22, 2005 8:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

ArndW wrote:Friday,

reinstall DataStage on your PC as Ken suggested.

re-install many many times already... director and manager still jammed :cry:
by friday
Tue Nov 22, 2005 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

ok... since my Director is not startable and I don't know long it will take tech support to fix it... i would love to take holidays but i guess my boss wont be very happy about it 8) anyway, is there any other way that i can access the log? I have a windows client and the server is on Unix. the show...
by friday
Mon Nov 21, 2005 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

just tried on another pc and everything is working...

i guess i'm gonna have a really fun time
by friday
Mon Nov 21, 2005 10:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

i don't have admin rights on my pc... unable to install multi-client manager :cry:
by friday
Mon Nov 21, 2005 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

Since this is Windows, you can use the tried and true method of reboot! Seriously, did you happen to install the Multi-Client Manager? If so, open that up, select the version that you have installed and change to that version (even if it's already selected). This goes through and registers all your...
by friday
Mon Nov 21, 2005 9:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

designer and administrator works fine. Manager has the same problem as director.

the server and the client are on different machine. I have a windows client and the server is on Unix.
by friday
Mon Nov 21, 2005 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to start Director
Replies: 14
Views: 6718

Unable to start Director

Hi, I have install datastage and Director doesn't start. In the windows task manager it says "Not Responding" and it use my all CPU (99%). The connection to my server seems to work because i can see all the projects available but as soon as i press "ok". Nothing happens, the Asce...
by friday
Fri Oct 28, 2005 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing "%" in a string
Replies: 2
Views: 1550

Removing "%" in a string

From a csv file, i'm reading the following data "8.9%". I want to convert it in decimals. I tried to trim the "%" but unsuccesfuly. I used Trim(MyInputCol,"%","A"). I would expect the result to be "8.9" but it gave me back the same thing as my input ...