Search found 53125 matches

by ray.wurlod
Sat Jun 30, 2007 11:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 4 nodes 10 stages
Replies: 10
Views: 2602

Yes.

And it's all in the manuals.
by ray.wurlod
Sat Jun 30, 2007 11:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: counting number of rows in hash file
Replies: 7
Views: 3463

That is correct. Account = project. This method adds a VOC entry.
by ray.wurlod
Sat Jun 30, 2007 11:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing db2 sql command in a routine
Replies: 11
Views: 5958

And we would appreciate it if you were to post what you get in ResultText, as requested.
by ray.wurlod
Sat Jun 30, 2007 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: does Datastage Handle ascii extended chars
Replies: 3
Views: 2831

DataStage handles every character that can be encountered in business data processing in all known data sets.

Without knowing precisely what you mean by "ASCII extended" it's not really possible to indicate whether there's anything you need to do or not.
by ray.wurlod
Sat Jun 30, 2007 2:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Passing job parameter from text file
Replies: 4
Views: 1456

Well, it's definitely been discussed before. You can't do it within the job - job parameters are fixed when the job starts. Use whatever method you like in a job sequence to read the lines from the parameter file. Load these up into, say, user variables and use these to supply parameter values to th...
by ray.wurlod
Sat Jun 30, 2007 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage software dump
Replies: 4
Views: 2129

DataStage is not supported on Vista. Any edition. I'd be surprised if it even installs.
by ray.wurlod
Sat Jun 30, 2007 11:59 am
Forum: General
Topic: Getting Rid of Nullable Warning Messages
Replies: 6
Views: 2218

You will get the warning irrespective - it's metadata-driven.

Create a local message handler to suppress it.
by ray.wurlod
Sat Jun 30, 2007 7:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mkdbfile / CREATE.FILE
Replies: 8
Views: 1788

VOC is the nearest thing to a database index in DataStage, but it's much more than that. I'm not going there today. And, yes, the intention is that of "vocabulary" - it contains all the words and tokens that the command parser needs to understand. Except, of course, for those in file dictionaries.
by ray.wurlod
Sat Jun 30, 2007 7:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mkdbfile / CREATE.FILE
Replies: 8
Views: 1788

Optimistic locking strikes again!
by ray.wurlod
Sat Jun 30, 2007 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: In a given number if the fourth digit is 0 i wanto remove th
Replies: 4
Views: 844

The first suggestion won't work, because you can't have an assignment statement in an expression. (In.string[4,1] = '') will be treated as a comparison expression and always return 0 (for False).

The second suggestion is a good one.
by ray.wurlod
Sat Jun 30, 2007 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Executing db2 sql command in a routine
Replies: 11
Views: 5958

The latter code, with the SQL... functions, is leveraging the BASIC SQL Client Interface. In your previous post, is there anything in ResultText when SystemReturnCode is non-zero? What you're doing in this example is creating a virtual BAT file - SystemReturnCode captures its exit status and ResultT...
by ray.wurlod
Sat Jun 30, 2007 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: counting number of rows in hash file
Replies: 7
Views: 3463

You're not going wrong anywhere - it's just that the hashed file was created in a directory, so there's no VOC record pointing to it. Queries require the VOC pointer. It can be created with SETFILE: SETFILE /dir/dir/.../HASHRECORD HASHRECORD You guys dealing? Why do you need records about hash?
by ray.wurlod
Sat Jun 30, 2007 7:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mkdbfile / CREATE.FILE
Replies: 8
Views: 1788

The file dictionary is where the metadata are stored. A better analogy is "system table" rather than index. Its presence or absence will make no difference whatsoever to how fast you can extract or load rows. The file dictionary exposes column names, how they are mapped to the record structure, and ...
by ray.wurlod
Sat Jun 30, 2007 5:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to initialize plugin
Replies: 5
Views: 1354

You need to have $ORACLE_HOME/lib32 ahead of $ORACLE_HOME/lib in SHLIB_PATH, because DataStage is a 32-bit application.
by ray.wurlod
Sat Jun 30, 2007 5:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mkdbfile / CREATE.FILE
Replies: 8
Views: 1788

Yes. CREATE.FILE creates a VOC entry, creates a file dictionary and adds an @ID item to the file dictionary. The mkdbfile does none of these things. (It is invoked twice by CREATE.FILE, once to create the data portion, the other to create the file dictionary portion). CREATE.FILE also sanity-checks ...