Search found 156 matches

by 1stpoint
Thu Jul 08, 2004 7:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Importing a Progress Database table definition
Replies: 8
Views: 3035

yes and no

you will need to install Progress client (networking) and also the odbc driver.
by 1stpoint
Fri Jul 02, 2004 8:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Working with Postgres
Replies: 1
Views: 1857

Postgres

The ODBC driver for Postgres should work. You will need to test it either by doing a metadata import or through the command line tools provided.
by 1stpoint
Fri Jun 25, 2004 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC32 & Null values
Replies: 3
Views: 2658

surrogate

I would not use a CRC32 algorithm as your "natural" key. Instead I would use a Surrogate/sequence generator as the key to ensure uniqueness.
by 1stpoint
Fri Jun 25, 2004 8:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to remote databases
Replies: 3
Views: 2521

yep

you'll need to setup a connection to that database (ODBC, etc).
by 1stpoint
Tue Jun 22, 2004 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File
Replies: 4
Views: 1586

use the book

I would refer you to the DataStage developer's manual. Hash Files are not a very difficult concept.
by 1stpoint
Mon Jun 21, 2004 10:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing MfgPro Progress Database or TIMS Appgen database.
Replies: 3
Views: 2721

odbc

ODBC is the method by which to accesses a Progress database. As far as I know it supports SQL-92 so you should be ok.
by 1stpoint
Fri Jun 18, 2004 6:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting UTF8 to ASCII file and back to UTF8
Replies: 9
Views: 8073

solution

We have had this problem in the past and Python will accurately encode and decode the Japanese UTF-8 characters. This is done in a pre-load process either called by a batch or unix shell script. The link above actually has a working UTF8 conversion program and how to implement it.
by 1stpoint
Thu Jun 17, 2004 2:26 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: What is Profile Stage
Replies: 3
Views: 6551

separate

Like MetaStage, QualityStage, etc. It's a separate product. I don't know if it's included in DataStage Enterprise or not.
by 1stpoint
Wed Jun 16, 2004 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination
Replies: 2
Views: 1553

further investigation.

What was the job doing when it Abnormally terminated?

Did the process core dump?

Did you try running ps -aux while the job is running to see if it's leaking memory?
by 1stpoint
Tue Jun 15, 2004 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Type 1
Replies: 4
Views: 1111

(snip) "SSN made an error, and now I have to correct it in my dimesion table" SSN is your primary key. In a normal dimension this would be a surrogate (sequence) key. The short method to update this is to disable/drop your primary constraint, update the row manually and the recreate your p...
by 1stpoint
Mon Jun 14, 2004 9:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup
Replies: 5
Views: 2480

lookup

You need to "join" the hash file stage into the transformer and link the key columns. This is covered in the documentation.
by 1stpoint
Fri Jun 11, 2004 12:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting UTF8 to ASCII file and back to UTF8
Replies: 9
Views: 8073

This can be nicely done by writing a Python script to handle the decoding and encoding of the data. DataStage is a data migration tool and is not really designed for this type of encoding/decoding. By writing a script in Python you can ensure that it is platform neutral. See: http://www.opendocspubl...
by 1stpoint
Fri Jun 11, 2004 10:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AS400 - data truncation persists
Replies: 5
Views: 5005

A clue

What is the data type of CWBNL0107 and are you using a Transformer. If so, what is the Transformer's datatype of this object in the target.

[IBM][Client Access Express ODBC Driver (32-bit)]
Column 5: CWBNL0107 - Converted 50 bytes, 49 errors found
by 1stpoint
Fri Jun 11, 2004 7:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HELP 2
Replies: 1
Views: 1379

You should be able to get these from Ascential software's eServices site with your login id.
by 1stpoint
Wed Jun 09, 2004 8:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: date is an integer
Replies: 10
Views: 4068

If your oracle target is OCI, the date needs to be in it's native format which in the generated SQL code will use a to_date conversion function.