Search found 53125 matches

by ray.wurlod
Fri Nov 07, 2003 5:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Folder stage problem
Replies: 2
Views: 1273

Folder stage problem [RESOLVED]

These things happen. Thanks for letting us know that it was resolved, and how it was resolved.
by ray.wurlod
Fri Nov 07, 2003 5:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Steps to releasing job locks on DataStage Server for NT
Replies: 6
Views: 3590

If you send it to Clif Oliver (moderator@oliver.com) he can post it in the Files area of datastage-users@oliver.com

This site is still resolving the mechanisms for such a posting area. :(
by ray.wurlod
Fri Nov 07, 2003 5:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Set vs Sequential Stage
Replies: 5
Views: 3455

Can you expand on this; in particular how can data NOT be byte-aligned? Do you mean word-aligned?
What are the implications for NLS, where the number of bytes used to store any particular character may be one, two three or even four?
by ray.wurlod
Fri Nov 07, 2003 3:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating a DataStage Job using a high level programming Lang
Replies: 9
Views: 1713

Such an API was developed in an earlier release of DataStage, but was withdrawn (about release 4.2 or 5.0). It is no longer possible.

Why do you want to do this? What's wrong with the DataStage Designer? How did you propose to manage the metadata?
by ray.wurlod
Thu Nov 06, 2003 4:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle bulk loader TIMESTAMP "YYYY-MM-DD HH24:MI:SS.FF6
Replies: 1
Views: 1273

You could switch to user-defined SQL, supplying your own TO_DATE function with appropriate date picture.

Code: Select all

INSERT INTO table(c1,c2,c3) VALUES (:1, :2, TO_DATE(:3, 'YYYY-MM-DD HH24:MI:SS.FF6');
by ray.wurlod
Thu Nov 06, 2003 4:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incorrect value from DSGetLinkInfo
Replies: 13
Views: 3841

There's a timing issue. The link row counts are only updated into the status table every so often.
Any reason you can't use a stage variable (as noted by others) or the @OUTROWNUM system variable (for specific (=separate) up-to-date row counts on each output link)?
by ray.wurlod
Thu Nov 06, 2003 3:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: API Return Codes
Replies: 3
Views: 1276

The DSAPI is documented in the Server Job Developer's Guide . Within this there is a list of error codes (constants all beginning with DSJE_). Most of the functions themselves are int, and return a negative integer in case of error. These values can also be seen in the online help for the DataStage ...
by ray.wurlod
Wed Nov 05, 2003 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Populating Fact and Dimension Tables
Replies: 4
Views: 1953

Basically you've identified the issue, that initial load and subsequent incremental loads are slightly different. Ignoring issues of how you want to manage slowly changing dimensions for the moment, the main difference is detecting the changed source records (including those that might be being chan...
by ray.wurlod
Wed Nov 05, 2003 3:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: any Vality feedback?
Replies: 5
Views: 1627

That's true as far as it goes, but you can introduce a FFC into the mix. The point about Quality Stage is that it lets you do all this without touching down on disk, and in the PX environment, both of which are cool. 8)
by ray.wurlod
Tue Nov 04, 2003 10:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: any Vality feedback?
Replies: 5
Views: 1627

Apparently in version 7 you don't even need the fixed width format; the metadata from the DataStage job can inform Quality Stage about where to find the data. Not sure how you'd manage the redefines in this case, will get to play more with it one day! Vincent, contact Stewart in the Ascential office...
by ray.wurlod
Tue Nov 04, 2003 10:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wrap Basic Code to the next line
Replies: 10
Views: 1766

NO, in spite of what the BASIC manual says (p 1-5). Page x in the manual talks about the documentation conventions in the manual itself, not the syntax of the actual language. The only statements that can exend beyond the end-of-line are statements that include comma-delimited lists, such as COMMON,...
by ray.wurlod
Tue Nov 04, 2003 3:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No Macth Operator
Replies: 2
Views: 1182

Look at your logic. 209779OR matches "...OR..." but does not match "...~COLOR...". Since you've joined these with AND, the test fails. To use the tilde (~) to reverse the sense of a pattern match, it must be the first character in the pattern. Also, I note there's a space in your second pattern, tha...
by ray.wurlod
Tue Nov 04, 2003 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing parameters from shell script
Replies: 3
Views: 1053

You didn't make it clear whether you're using osh or dsjob as your command line interface. Which is it? This will affect the answer.
by ray.wurlod
Tue Nov 04, 2003 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error occurred while deleting temporary file
Replies: 3
Views: 1577

Reset the job and see whether a message "from previous run" is logged; if so tell us what's in that message. I suspect you are seeing a timing issue; you're trying to feed your file into a sort utility before it's actually closed. (Remember that most I/O operations are buffered, so even a report in ...
by ray.wurlod
Mon Nov 03, 2003 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: any Vality feedback?
Replies: 5
Views: 1627

In Australia it seems to have led to an increased awareness of what INTEGRITY can do (or maybe this is an artifact of the Ascential sales folks having something else to sell!). Whatever, the case, I am about to present the third INTEGRITY class in six weeks here! (This has not yet been updated to 7....