Search found 15603 matches

by ArndW
Fri Aug 21, 2009 9:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Configuration
Replies: 3
Views: 1331

Well, DHCP wouldn't help much if you put a static IP in your hosts file, would it? :wink:
by ArndW
Fri Aug 21, 2009 9:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sort records and put Null if there are more matches on key
Replies: 8
Views: 2500

Re: sort records and put Null if there are more matches on k

I have data like this Location Timezone 1000 CST 1000 PST 1000 EST 1000 1100 IST 1100 1200 1300 GMT 1300 CST My Output should look like Location Timezone 1000 1100 IST 1200 1300 How Can I get this .....sort keychange is not helping i.e if there are multiple timezones i need to keep null else data
by ArndW
Fri Aug 21, 2009 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sort records and put Null if there are more matches on key
Replies: 8
Views: 2500

I cannot understand your rules for getting from your input to your output. Could you perhaps explain what your are trying to achieve?
by ArndW
Fri Aug 21, 2009 8:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencial file error
Replies: 4
Views: 1418

Char(34) is the double-quote character, which is expected in position 161 of the line to close off the "DateDrawn" field but which is not present in the data. Open that file in your favorite editor and analyze the line in error. Most likely some field on that line is shorter/longer.
by ArndW
Fri Aug 21, 2009 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Configuration
Replies: 3
Views: 1331

Yes, add the name and ip of the virtual machine to your Windows hosts file.
by ArndW
Fri Aug 21, 2009 7:14 am
Forum: General
Topic: Regarding DataStage Licence and compatability
Replies: 1
Views: 523

If you purchase the PX product then Server is included. If you purchase the Server version then you don't have PX. There is a "Version.xml" document on disk that can be checked to see what you are entitled to use. I'm not sure about the Oracle OnDemand, but since DataStage writes to tables...
by ArndW
Fri Aug 21, 2009 7:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp conversion
Replies: 3
Views: 1418

DataStage server has no timestamp, just Date and Time, so both parts need to be done separately. Assuming you have a string input value you need to: Step 1, convert date to internal : ICONV(In.Date[1,10],'D4-DMY') Step 2 convert internal to date : OCONV(Step1Result,'D4-YMD') Everything in one line: ...
by ArndW
Fri Aug 21, 2009 5:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UTF-8 don't display €
Replies: 12
Views: 6748

I doubt that the characters are "?", just that the tool you are using to display the data doesn't handle NLS correctly. Can you check the binary/hex values?
by ArndW
Fri Aug 21, 2009 5:32 am
Forum: General
Topic: How to differentiate a Job from a Job Sequence in script
Replies: 22
Views: 10933

(1) Not easy. You could enter the uvsh then issue a "LOGTO {Projectname}" command.
(2) "PTERM CASE NOINVERT" will do the trick for you.
by ArndW
Fri Aug 21, 2009 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing oracle 10g using ODBC stage..
Replies: 2
Views: 1135

You will need to define a System DSN on Windows. You can check to see if the DSN work using the tool of your choice, I usually use MSQuery on Windows to check that. Once that is working, it should also appear in your list and function in DataStage.
by ArndW
Thu Aug 20, 2009 9:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: The current limit on number of open files should be raised
Replies: 4
Views: 4249

You need to change the limits of the user under which the DataStage jobs run and then restart the DataStage engine.

<If your platform is LINUX, ignore this post. I didn't read the full problem description. >
by ArndW
Thu Aug 20, 2009 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Catlog Information
Replies: 1
Views: 677

Your user with which you are accessing the database doesn't have sufficient privileges. Where are you getting this message? Is it a new installation (note the section in the installation guides which tells you which GRANTs must be made in order for DataStage to work correctly).
by ArndW
Thu Aug 20, 2009 8:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "NOT IN VOC" Error
Replies: 10
Views: 4227

Yes, please post your code. Somewhere you have a badly formed EXECUTE or PERFORM command.
by ArndW
Thu Aug 20, 2009 8:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read Temp .. OMD.XML.DIR when running job
Replies: 12
Views: 9954

No, Parallel and BASIC transform stages are very different in how they get executed. I wonder if this isn't a message from the repository. (quick login to our XMETA) There is no table with that name, but several starting with OMDMODEL... so it is likely a repository error after all.