Search found 53125 matches

by ray.wurlod
Tue Jan 04, 2005 7:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Project not set up for Data Stage use error
Replies: 11
Views: 5489

DSR_JOB is not a file or table, it's a "helper subroutine". That it can't be found is grave news, and restoring from backup may or may not help, depending on why and how it's gone. It may be that the VOC, or "catalog" entry for this subroutine has been deleted, or that the executable (./DSG_BP.O/DSR...
by ray.wurlod
Tue Jan 04, 2005 7:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass string parameters containing SPACES to a job.
Replies: 2
Views: 1415

You need to tell it which project it's running in and which job to run.

Code: Select all

dsjob -run -param value1="Test String one" projectname jobname
by ray.wurlod
Tue Jan 04, 2005 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: wrong hash lookup..
Replies: 11
Views: 2442

Because hashed files operate by destructive overwrite, it is highly probable that writing to a hashed file with incorrect metadata (describing the key columns) has resulted in loss of data.
You have no safe option other than to re-run into a hashed file for which the metadata are correct.
by ray.wurlod
Tue Jan 04, 2005 3:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Computation of Field
Replies: 2
Views: 864

If all you want is leading zeroes, you can use the FMT function. Fmt(InLink.TheNumber, "R%10") While this is not a computed field in the COBOL sense, I suspect that all your users are requiring is "computation" of the leading zeroes. Otherwise, ask the other department to be more s...
by ray.wurlod
Tue Jan 04, 2005 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Table Definitions
Replies: 3
Views: 818

The term "table definition" is loosely used within DataStage. A table definition can mean different things, depending on whether it's describing a sequential file, a database table, a stored procedure, and so on. A table definition contains lots of things, including format information (if for sequen...
by ray.wurlod
Tue Jan 04, 2005 2:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Interview questions
Replies: 8
Views: 4964

If you have DataStage you have the Tutorial. Everybody learns differently, and in different circumstances, so I doubt that the procedures I followed while learning would benefit you terribly much. For example, my initial exposure to DataStage was as an employee of the vendor. You clearly do not fall...
by ray.wurlod
Tue Jan 04, 2005 2:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Version 7.5
Replies: 7
Views: 2995

You have to update the licence before it expires!
by ray.wurlod
Tue Jan 04, 2005 2:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automatic transformations based on meta data
Replies: 3
Views: 1167

Yes it's possible but I would be VERY WARY about this approach. You can expect to see major changes in the engine, probably as soon as the next major release. Anything that relies on undocumented access to internal variables will simply not be supported after it goes belly-up.
by ray.wurlod
Tue Jan 04, 2005 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is there any certifications in Data Satge
Replies: 10
Views: 2183

You can send email to Certification@AscentialSoftware.com to get on a list for more frequent updates. That said, I have had no response from them despite three emails to them in the past two months. According to Ascential Developer Net certification "will be available in Q4 2004".
by ray.wurlod
Tue Jan 04, 2005 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: reusability concepts
Replies: 9
Views: 3187

The entire architecture of DataStage is designed around the concept of re-usable components. Anything you create you can save and re-use elsewhere. If that somewhere else is a different project, there are several ways of getting the component into the new project. Tools range from copy/paste through...
by ray.wurlod
Tue Jan 04, 2005 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Command Language
Replies: 1
Views: 990

Where did you encounter the expression? I am guessing that it is an attempt to describe the language in which you can execute commands within the dssh environment. Included in this are: two separate query languages a data entry/update facility a menus processor scripting "languages" ("paragraph" lan...
by ray.wurlod
Tue Jan 04, 2005 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error datatype:floating point decimal
Replies: 1
Views: 1011

It's just a warning. DataStage expects Decimal data types to have a scale (otherwise it expects Float). So a warning is logged informing you that the "scale" in the metadata is being adjusted, presumably from unknown to 0. Why a warning and not an informational message? Because it's an unusual event...
by ray.wurlod
Mon Jan 03, 2005 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling of jobs every 2 minutes
Replies: 5
Views: 1299

It's quite easy to write in DataStage BASIC, given a modicum of programming skills in that language. I really believe that two minutes is ridiculously short as a checking interval; you're going to be chewing up resources just to watch the jobs! Make it longer - five minutes, maybe, or ten. If you do...
by ray.wurlod
Mon Jan 03, 2005 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transform rows in Columns
Replies: 5
Views: 1740

The "feature" is already there. You will need to create a hashed file that is capable of supporting multi-valued column. For example CREATE TABLE tablename (ID_USER INTEGER NOT NULL PRIMARY KEY, SITES VARCHAR MULTIVALUED); Import the UniVerse table definition into your repository. Create the...
by ray.wurlod
Mon Jan 03, 2005 3:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to find all Hash File names in a project
Replies: 4
Views: 1382

Mandy, can you please expand on this technique?