Search found 53125 matches

by ray.wurlod
Mon Mar 02, 2009 11:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSN not Found Error
Replies: 5
Views: 1169

Add two lines to uvodbc.config in the project directory.

Code: Select all

<DSN1>
DBMSTYPE = ODBC
The space either side of "=" is mandatory.

I trust that you created a System or File DSN, not a User DSN. DataStage can not make use of User DSNs.
by ray.wurlod
Mon Mar 02, 2009 10:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSN not Found Error
Replies: 5
Views: 1169

Welcome aboard.

Is DSN1 recorded in the uvodbc.config file in your project (on the server)?
by ray.wurlod
Mon Mar 02, 2009 10:29 pm
Forum: General
Topic: Failed to connect to host 80012
Replies: 6
Views: 4476

Welcome aboard.

There's no log file for startup errors until you execute the following operating system commands.

Code: Select all

cd /home/dsadm/Ascential/DataStage/DSEngine 
touch errmsg
chmod 777 errmsg
To get an actual startup log, simply redirect the outputs from the uv -admin -start command.
by ray.wurlod
Mon Mar 02, 2009 8:54 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: got "Error Encountered" while trying column analys
Replies: 4
Views: 2299

Welcome aboard.

Please post the entire error message. I'm sure it's longer than what you've given us. Also, please use copy/paste to do so, so as to avoid transcription errors.
by ray.wurlod
Mon Mar 02, 2009 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Login errors on Linux Datastage 8.1
Replies: 1
Views: 1309

Can you connect with DataStage Administrator client?

Have you set up DataStage role-based security (in Administrator client) for this project?

How about using your Information Server administrator user to log in?
by ray.wurlod
Mon Mar 02, 2009 7:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow Oracle enterprise stage
Replies: 1
Views: 1171

Update is always - and necessarily - a slow operation. Even insert can be slow if there are many indexes and integrity constraints to be checked.

Separate your inserts and updates into separate streams, bulk load the inserts and do the updates subsequently.
by ray.wurlod
Mon Mar 02, 2009 6:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment variables incorrect at runtime?
Replies: 2
Views: 2247

When you run a job from a DataStage client, your agent process on the server (dsapi_server or dsapi_slave) is the one that actually issues the request. These inherit their environments from dsrpcd, which creates an instance of dsapi_server for each successful connection request from a DataStage clie...
by ray.wurlod
Mon Mar 02, 2009 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert Decimal to binary
Replies: 6
Views: 3660

More specifically:
1*8 + 0*4 + 1*2 + 0*1
by ray.wurlod
Mon Mar 02, 2009 4:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: complex flat file
Replies: 1
Views: 1114

Have you tried it?

You could certainly form all files into one in a before-job subroutine, and you can certainly read multiple files with a Sequential File stage, but I do not think that the Complex Flat File has this capability.
by ray.wurlod
Mon Mar 02, 2009 4:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Locked
Replies: 10
Views: 4080

The command that failed is SQL and requires a terminating semi-colon.
by ray.wurlod
Mon Mar 02, 2009 1:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Convert Decimal to binary
Replies: 6
Views: 3660

None of which I am aware in parallel Transformer stage. You could readily write your own. You could use Oconv() with "MB" in a BASIC Transformer stage.
by ray.wurlod
Mon Mar 02, 2009 1:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Qs about the XML presentation of one parallel job
Replies: 4
Views: 1210

Moderator: please move to Parallel forum
by ray.wurlod
Mon Mar 02, 2009 1:14 pm
Forum: General
Topic: Changing case of parameters on the fly
Replies: 8
Views: 3311

Sounds like what you really need is two job parameters - one for the file name and one for "elsewhere in the job". Your script/job sequence can take care of the casing.
by ray.wurlod
Mon Mar 02, 2009 1:12 pm
Forum: General
Topic: Reading a DS_JOBOBJECTS subrecord
Replies: 5
Views: 2034

If you're reading values from a multi-valued field you still need to specify the field number. For example ColumnNames<1,n> where field number is 1 and value number is n. But, if you Raise(), then it's field numbers you're extracting, for example ColumnNames<n>
by ray.wurlod
Mon Mar 02, 2009 4:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup using a Order by clause
Replies: 2
Views: 801

What is the grain of this time dimension?

In every query engine I have ever encountered, the selection is completed before the sort is attempted. This is so that the smallest possible number of records can be sorted.