Search found 53125 matches

by ray.wurlod
Wed Sep 12, 2007 8:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is IBM Datastage8 for HP-UX released?
Replies: 2
Views: 1078

Welcome aboard.

As at the date of posting, no.
by ray.wurlod
Wed Sep 12, 2007 8:15 pm
Forum: General
Topic: Name for a software company.
Replies: 14
Views: 5049

Soft Ware
by ray.wurlod
Wed Sep 12, 2007 8:12 pm
Forum: IBM QualityStage
Topic: Is there a quality stage for mainframe jobs in version 8?
Replies: 3
Views: 1486

Which is weird, since INTEGRITY began life as a mainframe application.
by ray.wurlod
Wed Sep 12, 2007 8:12 pm
Forum: IBM QualityStage
Topic: How do I split this address?
Replies: 2
Views: 1802

Unhandled Pattern override in ADDR rule set?
by ray.wurlod
Wed Sep 12, 2007 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSN on AIX platform against DB2 database
Replies: 1
Views: 1071

You need an entry for the DSN in .odbc.ini and an entry in the uvodbc.config file in your project. Search the forum for more details and examples.
by ray.wurlod
Wed Sep 12, 2007 6:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to manage that
Replies: 1
Views: 981

Administrator client - map DataStage roles onto operating system groups.
by ray.wurlod
Wed Sep 12, 2007 6:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to findout
Replies: 3
Views: 1450

Define "invalid" in this case.
by ray.wurlod
Wed Sep 12, 2007 6:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data conversion
Replies: 6
Views: 1261

This IS a proper value. Due to the size of the number the data browser has been programmed to display it in "scientific notation".
1.01177e+12 means 1.01177 * 10**12, or (approximately) 1011770000000
by ray.wurlod
Wed Sep 12, 2007 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Table Definition from Excel file
Replies: 1
Views: 1381

When importing table definitions check the "Include system tables" check box. Worksheets are presented to the ODBC driver as system tables.
by ray.wurlod
Wed Sep 12, 2007 6:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Monitor status
Replies: 7
Views: 1263

The parallel job monitor is a Java application, and takes a process. So you can see whether or not it is running with a suitably filtered ps -ef command.
by ray.wurlod
Wed Sep 12, 2007 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: indexes
Replies: 4
Views: 1496

Get the DBA to create the indices.
by ray.wurlod
Wed Sep 12, 2007 6:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Write to a hashed file and then read from it using SQL
Replies: 7
Views: 1782

You can edit the DDL to specify the location of the UV table. For example

Code: Select all

CREATE TABLE TheTableName
DATA #$KOM_DIRECTORY#/KOMODO/LOOKUP/MyTableName
DICT #$KOM_DIRECTORY#/KOMODO/LOOKUP/D_MyTableName
(
   column_definitions ...
);
by ray.wurlod
Wed Sep 12, 2007 6:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How could I get current parameter value from unix command
Replies: 9
Views: 2099

In that case please mark the thread as Resolved.
by ray.wurlod
Wed Sep 12, 2007 12:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: import stored procedure
Replies: 10
Views: 4739

You have not properly configured the DSN.
Does it occur in .odbc.ini and in the project's uvodbc.config file?
by ray.wurlod
Wed Sep 12, 2007 12:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem to write a file
Replies: 2
Views: 1066

Why, from that, would you expect any file called Logfile.txt to be created, there or anywhere? I can not see anywhere, in your code, that a file of this name is opened/created and/or written to. You've commented out the statement that assigns the file path. You do not verify that the call to DSGetPa...