Search found 53125 matches

by ray.wurlod
Fri Sep 16, 2005 3:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning value to two variables - same time
Replies: 4
Views: 960

Correct.

It's the downside of having a GUI. If you were doing it all in code you could manage it, but it'd be more difficult to maintain.
by ray.wurlod
Fri Sep 16, 2005 3:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About Modify Stage
Replies: 5
Views: 1787

Welcome aboard! :D
Please post the entire error/warning message.
by ray.wurlod
Fri Sep 16, 2005 3:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About modify stage
Replies: 11
Views: 3346

You get the Orchestrate manuals when you attend a DS314PX class (DataStage Essentials - Enterprise Edition).
by ray.wurlod
Fri Sep 16, 2005 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets are not physically removed
Replies: 8
Views: 2834

No, it means that the parent directory of the orchadmin command does not appear in your command search path (the PATH environment variable).
by ray.wurlod
Fri Sep 16, 2005 12:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assigning value to two variables - same time
Replies: 4
Views: 960

A is derived as If X = Y Then X Else ... B is derived as If X = Y Then Y Else ... You can't derive two stage variables with one expression - each has its own derivation expression. The mere fact that they're in a grid should make that clear. You've posted this in the server forum with a job type of ...
by ray.wurlod
Fri Sep 16, 2005 12:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading millions of Records to a hashi file
Replies: 2
Views: 1272

Static hashed files are also - by default - limited to 2GB.

To bypass the 2GB limit, you need to create hashed files - dynamic or static - with 64-bit internal pointers rather than 32-bit.
by ray.wurlod
Fri Sep 16, 2005 12:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Db2 Bulk load Stage
Replies: 1
Views: 1949

The argument for one stage type over another is identical to the argument over one loading method over another. In most databases bulk loading is faster, or much faster, than INSERT statements. On the other hand, most databases don't have an update/replace mode for their bulk loaders. You choose the...
by ray.wurlod
Fri Sep 16, 2005 12:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use perl to query info from DS repository
Replies: 5
Views: 1060

The easiest way is to use the dssh or uv command in the project directory. This can take a double-quoted command (query) as its command line argument. You may need to have set environment variables first by sourcing the dsenv script. . $DSHOME/dsenv $DSHOME/bin/dssh "SELECT NAME FMT '32L', CATE...
by ray.wurlod
Fri Sep 16, 2005 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: About modify stage
Replies: 11
Views: 3346

It's downloadable from ADN - you can find a link to the Orchestrate manuals by searching here at DSX.
by ray.wurlod
Thu Sep 15, 2005 8:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SQL Error
Replies: 7
Views: 1121

You can't do "AS CHAR(12)". It's not legal as an alias. You use a CAST specification (if necessary) to change data type temporarily. The result of concatenation is necessarily string, so it's probably not necessary in that case.
by ray.wurlod
Thu Sep 15, 2005 8:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Jobs Promotion Process to SIT,UAT and Production
Replies: 6
Views: 3849

That's very clear in the VC manual. It's called "initializing".
by ray.wurlod
Thu Sep 15, 2005 8:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use perl to query info from DS repository
Replies: 5
Views: 1060

The DataStage Repository is a database. Like any other database it must be queried using a query language (for example SQL) within its own environment.

You can wrap this in Perl or any other scripting language, but you still need to know how to construct the query.
by ray.wurlod
Thu Sep 15, 2005 8:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creation of user of DataStage.
Replies: 7
Views: 2186

"So do i have to specifically be a member of the local Operating system group Administrators to log in or is there any other way?"

No, not to log in. But you do need to be in the Administrators group (which user dsadm should be) to perform administrative tasks, such as controlling security. 8)
by ray.wurlod
Thu Sep 15, 2005 8:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage
Replies: 11
Views: 2640

In the Table Definition in the Repository edit the SQL types to what they should be. Then reload the table definition into the job so that there are no "Unknown" data types.
by ray.wurlod
Thu Sep 15, 2005 7:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Expressing delimiter's in a loop stage??
Replies: 5
Views: 1277

Line terminators are converted to field marks (@FM) when captured.