Search found 53125 matches

by ray.wurlod
Wed Mar 10, 2010 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel did not consume all of the available data
Replies: 1
Views: 3063

"Connection reset by peer" indicates that you are (were at the time) having network issues. You need to resolve these.
by ray.wurlod
Wed Mar 10, 2010 3:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to read or update decimal values
Replies: 4
Views: 4104

In the Administrator is probably the best place, because the setting is then global for the entire project. (But must be set in each project separately.) You could consider setting the environment variable in every DataStage user process's profile, perhaps via their logon script. If necessary you ca...
by ray.wurlod
Wed Mar 10, 2010 3:40 pm
Forum: General
Topic: DataStage Multi-Client Launcher
Replies: 13
Views: 8010

The login dialogs are different in version 8. They include a "domain" field that you use to connect to the services tier (WebSphere Application Server) for authentication. The "projects" field is populated with a list of server/project pairs because the one services tier can mana...
by ray.wurlod
Wed Mar 10, 2010 3:38 pm
Forum: IBM QualityStage
Topic: how many tokens exist in the address field
Replies: 5
Views: 2086

No idea until you explain what you mean by "tokens" and "address". If I may guess that you mean "how many tokens exist in the address field" then, yes, a Word investigation using an address rule set will yield patterns. The number of characters in the pattern is the num...
by ray.wurlod
Wed Mar 10, 2010 2:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Timestamp-1
Replies: 3
Views: 1332

DateFromDaysSince() applied to TimestampToDate() then rebuild the timestamp with the time component from the original timestamp.
by ray.wurlod
Wed Mar 10, 2010 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Classifying Link Types as Source, Reference and Reject
Replies: 10
Views: 5690

And what was the result of DSAttachJob() ? (The best way to check is with some innocuous function like DSGetJobInfo(JobHandle, DSJ.JOBNAME) and log the value of the result. If this returns DSJE.BADHANDLE then your attach failed.)
by ray.wurlod
Tue Mar 09, 2010 10:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Classifying Link Types as Source, Reference and Reject
Replies: 10
Views: 5690

Any negative number returned from a DataStage API function indicates an error. The error codes are documented in JOBCONTROL.H header file in DSINCLUDE. You can probably search DSXchange to find them. Without seeing your job design it's difficult to comment further. What are you using for the job han...
by ray.wurlod
Tue Mar 09, 2010 8:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User Administration
Replies: 1
Views: 1150

There isn't one out of the box.

If you've determined the structure of the XMETA database you could possibly run a query against that, but I'm not even sure that sessions are stored there - I suspect they're stored in the metadata server's memory.
by ray.wurlod
Tue Mar 09, 2010 5:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can we implement is DS PX
Replies: 6
Views: 2201

... unless the data in the field are:
fixed-width undelimited format
buried in free-form text
gibberish*


* this does not mean "from Gibraltar"
by ray.wurlod
Tue Mar 09, 2010 5:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SDKSequences Migration
Replies: 3
Views: 1721

Ensuring no-one is using either project, copy the SDKSequences and D_SDKSequences files from one project (DEV) to the other (UAT). Then, in the UAT project, use the dssh command SETFILE to establish a VOC pointer to SDKSequences.
by ray.wurlod
Tue Mar 09, 2010 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD Stage unable to create lookup table
Replies: 4
Views: 4605

Start by disabling operator combination, so that you can determine exactly which stage is throwing the error.
by ray.wurlod
Tue Mar 09, 2010 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How can we implement is DS PX
Replies: 6
Views: 2201

More information is required about how these multiple values are stored in their single field. Without that, no cogent reply can be given - different techniques are available to handle different layouts.
by ray.wurlod
Tue Mar 09, 2010 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring function problem
Replies: 8
Views: 32821

I still prefer to use the Left() function, for reasons already stated.
by ray.wurlod
Tue Mar 09, 2010 3:09 pm
Forum: General
Topic: MVS 390, Char columns with complex data types
Replies: 7
Views: 1857

Why not use a Relational Database stage in a mainframe job?
by ray.wurlod
Tue Mar 09, 2010 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring function problem
Replies: 8
Views: 32821

Or Left(DSLink149.INTFC_FILE_CATG, 4) which is beautifully self-documenting.