Search found 53125 matches

by ray.wurlod
Tue Apr 04, 2006 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer
Replies: 14
Views: 4929

The system variable @DATE or the macro DSJobStartTimeStamp can be used. These are set when the job sequence starts, and do not change thereafter.

Since you're on version 5, there are other techniques available in later versions - such as user variables - that aren't available to you. :cry:
by ray.wurlod
Tue Apr 04, 2006 3:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Definitions
Replies: 1
Views: 753

Looks like it's getting through to UniData OK (since the message "You have no privilege on file PERSON" is being returned from UniData). Check the privileges you have on the various UniData files with which you seek to work.
by ray.wurlod
Tue Apr 04, 2006 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I want to change default of DS_Link to some number
Replies: 1
Views: 937

The numeric part of stage and link names purely reflects the order in which they are added to the design canvas. The format of this number is embedded within the DataStage source code (which you don't have, and is therefore not negotiable). As for default database and table name, the only sensible d...
by ray.wurlod
Tue Apr 04, 2006 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.BCIGetNext call to SQLFetch failed
Replies: 16
Views: 6455

That you can import table definitions and view data tells you that the DSN is properly configured. The question then is why SQL Server is refusing to deliver - is it the second row of the query? Does some external activity prevent the cursor from being advanced? Can you run the SELECT statement used...
by ray.wurlod
Tue Apr 04, 2006 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: stage variables
Replies: 19
Views: 4625

An approach using stage variables may be found here
by ray.wurlod
Tue Apr 04, 2006 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error while opening a job
Replies: 11
Views: 2677

Without seeing the export file, I'd hazard the guess that the export file has somehow become corrupted, probably in the J\60\V0S0 record, which will contain a list of pins connected to that stage. The only fix would be to export again. Can you describe what the exported job looks like?
by ray.wurlod
Tue Apr 04, 2006 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: $ char in my oracle user id/schema
Replies: 4
Views: 1002

Other than get a user ID that doesn't include a "$" character, no.
by ray.wurlod
Tue Apr 04, 2006 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Recieves 81002 error after new client install
Replies: 9
Views: 6633

Are you correctly identifying the host name when trying to connect from work? Try using the IP address rather than the machine name, to eliminate the possibility that gethostbyname() is the culprit.
by ray.wurlod
Tue Apr 04, 2006 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Add Months In DataStage
Replies: 5
Views: 12175

If you've already got months and counter, then

Code: Select all

If (months + counter > 12) Then months + counter - 12 Else months + counter 
assuming months + counter can never be less than 1 or more than 24. All data types are uint8 or a larger or signed integer.
by ray.wurlod
Tue Apr 04, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Operations in Parallel routine
Replies: 9
Views: 2106

The Lookup stage can perform conditional lookups.
by ray.wurlod
Tue Apr 04, 2006 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to expire the old record
Replies: 1
Views: 950

If it's Type 2 SCD there is no such thing as "update the previous record". The old record is expired as soon as any update comes through. In that way history can be re-built as required, which is the point of Type 2 SCD. The remainder of your question is therefore moot.
by ray.wurlod
Tue Apr 04, 2006 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: teradata stage view data error
Replies: 9
Views: 3599

scorpion wrote:can any one please respond !

Some of us sleep occasionally. You waited only one hour before posting the above. If you require urgent support, contact your support provider and sign up for a premium support program.
by ray.wurlod
Tue Apr 04, 2006 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while processing large number of records
Replies: 4
Views: 3147

You can add more scratch disk resources to your configuration file. Each processing node can (should) have multiple disk and scratch disk resources (on different disks) so as not to create an I/O bottleneck.
by ray.wurlod
Tue Apr 04, 2006 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: rejects for a column export
Replies: 1
Views: 580

Where an input row does not match the metadata in the schema for its link.
by ray.wurlod
Tue Apr 04, 2006 2:27 pm
Forum: IBM QualityStage
Topic: dynamic pattern action lang code
Replies: 2
Views: 1508

Basically, no. It's an iterative heuristic. You bucket them as either unhandled patterns or unhandled strings, then either add to the PAL for your rules or create rule overrides.