Search found 15603 matches

by ArndW
Fri Jul 28, 2006 4:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hawk Availability
Replies: 3
Views: 770

Unlikely that you will, but it doesn't cost anything to try.

I tried going down the official route of getting a Beta and had sent over 10 emails to the official beta email address as well as one direct one to a gent in the beta group and did not receive a single answer.
by ArndW
Fri Jul 28, 2006 1:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Solaris 8 to Solaris 10 migration
Replies: 1
Views: 534

You need to re-install the DataStage engine on the new machine; a UNIX level copy is not sufficient and will not result in a running DS installation. The DataStage projects might be copied (create the project normally on the new machine and then overwrite the contents from the original) but it makes...
by ArndW
Thu Jul 27, 2006 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date formatting
Replies: 11
Views: 7182

But Ray - that is cheating :shock: . All the date OCONV()s produce a separator, the use of two conversion formats just "internalizes" the stripping of the characters.
by ArndW
Thu Jul 27, 2006 12:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datadirect driver for Linux
Replies: 2
Views: 810

Yes, the DirectConnect or DataDirect (can't recall what they are called these days) drivers will let you read the .xls file directly using ODBC and the drivers are platform specific, so the driver on LINUX won't work on SOLARIS. Best ask the pricing and portability questions to the vendor directly. ...
by ArndW
Thu Jul 27, 2006 12:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Flag Logic
Replies: 4
Views: 1418

Looks like a lengthy statement like IF In.Type="A" and In.Value=122 THEN 'N' ELSE IF In.Type = "A"... is your best best, since there is no discernable logic for the values of Type and Value for setting the flag.
by ArndW
Thu Jul 27, 2006 12:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looping in Sequencer
Replies: 2
Views: 1066

It sounds like a good solution and is simple enough to withstand the test of production. If your routine has lengthy SLEEPs to wait and also has a maximum timeout so that it always will exit sometime then you are set.
by ArndW
Thu Jul 27, 2006 11:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view data set
Replies: 11
Views: 2272

Nothing as drastic as looking elsewhere is necessary - I just read my reply and looked at the previous post and couldn't figure out why I said what I had... it took me a minute to realize what had happened and that you had changed the post. It is better to just add a new message to the thread. I hav...
by ArndW
Thu Jul 27, 2006 11:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date formatting
Replies: 11
Views: 7182

...simply convert the date from one format to other... Unfortunately as there is no OCONV() date format that has no separator, it will always output some sort of character; no OCONV() code will output yyyymmdd or similar formats. You will need to use CONVERT('/','',DateString) to remove forward sla...
by ArndW
Thu Jul 27, 2006 10:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while executing server job
Replies: 1
Views: 600

I'm not at a DataStage machine now, but you should do 2 things: 1. Search under the DataStage server path for the file "drsdb2.dll ". If you don't find it then you haven't installed DRS correctly. 2. Make sure that your LIBPATH or equivalent setting includes that directory. You can check the actual ...
by ArndW
Thu Jul 27, 2006 10:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IBM (hexadecimal float) to IEEE float
Replies: 2
Views: 921

Sure, but you will need to do this in your own function in BASIC. The math is not too difficult. I looked up what you called "hexadecimal float" and I assumed that it is IBM Floating Point The page describes the 3 components, 1st bit is sign, 2-8 is the exponent and 9-32 is the mantissa (assuming a ...
by ArndW
Thu Jul 27, 2006 10:38 am
Forum: General
Topic: What is e*way Intelligent Adapter for sap
Replies: 1
Views: 2670

It is something that certainly does not belong in the FAQ forum, please read this before posting in the FAQ forum and then post your query in the appropriate forum.
by ArndW
Thu Jul 27, 2006 4:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view data set
Replies: 11
Views: 2272

I've found the problem - thanks for that :D Hmmm... you edited your post and changed the contents around completely. That is not really nice. The original post stated that you had copied the dataset and in that light my subsequent response made sense; but after you changed it my reply makes absolut...
by ArndW
Thu Jul 27, 2006 4:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to capture job details in the table
Replies: 6
Views: 2133

There are many different approaches and methods to do this. The actual information about a job's runtime statistics is available at the command line using the dsjob program and is also available as API calls in BASIC (mainly DSGetJobInfo() and also such calls as DSGetLinkInfo() and DSGetStageInfo( )...
by ArndW
Thu Jul 27, 2006 4:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rejected records
Replies: 16
Views: 6142

I can state that the difference in these two is that column "'pt_state" is not null.
by ArndW
Thu Jul 27, 2006 4:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to view data set
Replies: 11
Views: 2272

How did you copy the dataset from another job? In this new job, how many columns does the dataset have (just the one declared as string[1] or more)?