Search found 53125 matches

by ray.wurlod
Thu Nov 23, 2006 9:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: coding conversion
Replies: 15
Views: 3422

What precisely do you want to do? If you want to check whether there are any files with names that match *.csv, that's one thing - just check to see whether there's an alphabetic character in the result. If you want to return a list of those names, capture the output of a directory listing command. ...
by ray.wurlod
Thu Nov 23, 2006 9:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use Multiple instance to load a single table
Replies: 8
Views: 1512

Code: Select all

JobX.invocationID1
JobX.invocationID2
JobX.invocationID3
JobX.invocationID4
JobX.invocationID5
by ray.wurlod
Thu Nov 23, 2006 9:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: When is a NULL not a NULL?
Replies: 9
Views: 2535

Given that 128 is 10000000 in binary it may be that Oracle, set to use ASCII (which, technically, is a seven-bit encoding) ignores the high-order bit. I'm just guessing here, of course.
by ray.wurlod
Thu Nov 23, 2006 9:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MVS Job - Rollback all the Inserts/Updates
Replies: 6
Views: 2532

I do not believe that this level of transaction control is possible in DataStage/390. Nor can I envisage any mechanism where changing the generated COBOL could do it. Your problem is that the COMMITs for 1 and 2 have already been issued. You need some mechanism for wrapping all three in an outer tra...
by ray.wurlod
Thu Nov 23, 2006 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSSendMailAttachmentTester problem
Replies: 6
Views: 2216

What precisely is the "problem"?
by ray.wurlod
Thu Nov 23, 2006 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New Version of Datastage
Replies: 14
Views: 3941

If you can find someone who was at the conference, or a friendly IBMer, there are papers available for download. Lots of 'em.
by ray.wurlod
Thu Nov 23, 2006 9:35 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Message Switch is unavailable!!!!!
Replies: 5
Views: 3564

OK, its' just that there was a known issue with the remote Oracle PSDB. Does the problem go away when you re-boot the server - that is, does Message Switch auto-start? If not, is there anything in its log file that might give a clue? Is there anything posted in its error file? Do you have port 3070 ...
by ray.wurlod
Wed Nov 22, 2006 6:55 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Message Switch is unavailable!!!!!
Replies: 5
Views: 3564

Is your PSDB Oracle and on a different server?
by ray.wurlod
Wed Nov 22, 2006 6:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New Version of Datastage
Replies: 14
Views: 3941

Well, in that case you have the External Source, External Filter and External Target stages, not to mention the Execute Command activity in job sequences.
by ray.wurlod
Wed Nov 22, 2006 6:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Type 2 SCD Key metadata change
Replies: 2
Views: 1053

Using a numeric data type is the correct approach.
by ray.wurlod
Wed Nov 22, 2006 6:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: capture* files in /tmp directory
Replies: 6
Views: 2825

The numbers in the capture (and other) file names include the process ID, so there should be no appending going on. The two characters on the end (usually "aa") are there to provide uniqueness if all else matches. So it would appear that whatever was captured was 970MB in size! You might find this p...
by ray.wurlod
Wed Nov 22, 2006 6:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: When is a NULL not a NULL?
Replies: 9
Views: 2535

Maybe the "Replace empty value with NULL" should read "Replace empty value with NUL"? Please continue to investigate, and share your results. If nothing else you will create the reproducible cases demanded by IBM support.
by ray.wurlod
Wed Nov 22, 2006 6:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job Run
Replies: 9
Views: 3235

That chapter describes the DataStage C API, which can be used for all kinds of things. dsjob began life as the sample program for the DSCAPI but eventually took on a life of its own, and has been supported for some years now.
by ray.wurlod
Wed Nov 22, 2006 6:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure
Replies: 19
Views: 3636

pradkumar wrote:Moreover I am restricted to use Dynamic RDBMS stage

Why? Won't "they" let you use the right tool for the job? Do they require their tradesmen to drive screws with hammers?
by ray.wurlod
Wed Nov 22, 2006 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Analyzing Dynamic Hash File
Replies: 7
Views: 1358

You are not correct.
All data are stored as strings.
Char(N) = N bytes without NLS, up to 4N bytes with NLS
Integer = number of digits (therefore up to 10 characters, plus see above)
and so on.
That is why we advise to use the display width to estimate.