Search found 53125 matches

by ray.wurlod
Mon Nov 09, 2009 12:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage repositiory
Replies: 1
Views: 901

It's based on UniVerse, which was a proprietary RDBMS owned by the vendor. It's now a proprietary RBDMS owned by someone else (IBM sold UniVerse to Rocket Software in October 2009). However, the version 7 DataStage repository and engine are still IBM intellectual property; this has been the case sin...
by ray.wurlod
Sun Nov 08, 2009 10:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert mmddyy date format to yyyy-mm-dd
Replies: 6
Views: 3597

You can re-arrange (concatenate) the relevant substrings. You also need logic to add the century number according to your own (century pivot) business rules. A less efficient approach would be to convert the source string into a date then to convert that date back to a string, with a different forma...
by ray.wurlod
Sun Nov 08, 2009 10:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to check byte length of data?
Replies: 10
Views: 4457

How about Len(StringToRaw(InLink.TheString)) ?

Or ByteLen(InLink.TheString) in a BASIC Transformer stage ?
by ray.wurlod
Sun Nov 08, 2009 9:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage with HP Neo
Replies: 6
Views: 1569

Hence "as far as I am aware". I've learned something today.

To answer the original question, ODBC would seem to be your pathway.

Seems a bit odd to max out at 96TB though - or is this just the base configuration of the E164?
by ray.wurlod
Sun Nov 08, 2009 6:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage with HP Neo
Replies: 6
Views: 1569

Which database?

(There's no such thing, as far as I am aware, as "HP Neoview database".)
by ray.wurlod
Sun Nov 08, 2009 3:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field Decription in Schema file
Replies: 6
Views: 2161

Use /* C-style comments */ in schema files.

However, there is no mechanism for transferring these to DataStage as part of the import process. This would need to be a manual process of transcription.
by ray.wurlod
Sun Nov 08, 2009 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The server is not responding
Replies: 12
Views: 5385

You should have had umask set to 002 when installing. If not, change permissions appropriately subsequently.
by ray.wurlod
Sat Nov 07, 2009 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Project deelete
Replies: 6
Views: 1783

Please provide exact error message.

Without this we are unable to assist further.
by ray.wurlod
Sat Nov 07, 2009 7:30 pm
Forum: General
Topic: Job Sequences
Replies: 3
Views: 1100

Don't be surprised if your system is brought to its knees by 50 simultaneous jobs, unless it's a really heavy duty engine or the jobs are very lightweight. I suspect there is a monitoring and tuning exercise in your near future.
by ray.wurlod
Fri Nov 06, 2009 9:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Whitespace added after every value
Replies: 14
Views: 3303

Check the value of your APT_STRING_PADCHAR environment variable.
by ray.wurlod
Fri Nov 06, 2009 9:25 pm
Forum: General
Topic: YADSSM (Yet another DS SendMail) question
Replies: 7
Views: 8309

If you have already opened the file with OpenSeq, then the file size can be tested with the Status statement. This returns a dynamic array of information about the file - from memory, element #6 contains the file size. Status FileInformation From FileVariable Then FileSize = FileInformation<6> End
by ray.wurlod
Fri Nov 06, 2009 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Supress datstage log in PROD environment
Replies: 2
Views: 1010

You can not suppress the generation of log messages. They will always be generated. You can suppress logging of certain messages (but never Fatal ones). There is no great performance benefit in doing so, as the processing to suppress is equivalent (roughly) to the processing to add the log entry. An...
by ray.wurlod
Fri Nov 06, 2009 2:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Different versions of DataStage on the same box
Replies: 2
Views: 1357

And for the server the answer is also yes, but the 7.x version will need to be an -itag install using a non-default memory key. Version 8.x does not support -itag install and uses only the default memory key (which means also that you can not have two 8.x versions on the same DataStage server machin...
by ray.wurlod
Fri Nov 06, 2009 2:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert mmddyy date format to yyyy-mm-dd
Replies: 6
Views: 3597

Dates don't have formats - they are binary. So what is your source? If it is a text file, for example, you have a string but, if you have specified a data type of Date, then the import operator will convert this to binary format based on the format string specified in your record schema. The only ti...
by ray.wurlod
Fri Nov 06, 2009 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage job failing with error esql complaint: ORA-12899:
Replies: 5
Views: 2108

What Craig is getting at with his question is that, depending on what character set you are using, it may require more than 40 bytes to store 35 characters. Oracle can be specified to allocate storage in either bytes or characters.