Search found 53125 matches

by ray.wurlod
Mon Dec 12, 2005 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with ODBC stage which is used for lookup
Replies: 6
Views: 1374

That's an entirely different question. The solution probably has to do with space characters. If any of the lookup keys are Char data types, they will have trailing space characters in the table - your reference key expression must provide exactly the key value needed, including trailing space or le...
by ray.wurlod
Mon Dec 12, 2005 4:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rejecting all rows which cannot be loaded in ORACLE
Replies: 21
Views: 7785

What stage type are you using?
by ray.wurlod
Mon Dec 12, 2005 4:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with ODBC stage which is used for lookup
Replies: 6
Views: 1374

If your design has 3 in the Scale column for the timestamp get rid of it. If your design does not have 3 in the Scale column for the timestamp, add it. Your design must match what the table expects.
by ray.wurlod
Mon Dec 12, 2005 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicates/Sorting question
Replies: 17
Views: 5884

The UNIX command in Ross's code will probably work in DOS also. At worst you may need to change the pathname delimters from "/" to "\".
by ray.wurlod
Mon Dec 12, 2005 4:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecDos Subroutine Not found
Replies: 9
Views: 2760

Beware, too, of case. It's ExecDOS, not ExecDos.
by ray.wurlod
Mon Dec 12, 2005 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding UTF8 NLS Mapping
Replies: 3
Views: 851

What is the value set for NLS_LANG environment variable?
by ray.wurlod
Mon Dec 12, 2005 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sort Stage Problem
Replies: 5
Views: 1933

You won't get any rows out until the sort has been completed. Five hours seems a lot for 500k source rows, but how many sort keys are there?
by ray.wurlod
Mon Dec 12, 2005 4:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HFC.exe -> need it but don't have the Datastage CD
Replies: 20
Views: 5916

If you use HFC you will realise that it's quite easy. You enter the total number of records and the average record size - and choose a hashing algorithm from a drop-down list. HFC does the rest.
by ray.wurlod
Mon Dec 12, 2005 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding config file
Replies: 5
Views: 1662

There are at least three configuration files, uvconfig, uvodbc.config and (for parallel jobs only) *.apt. So the first refinement of your question is which of these you are asking about.
by ray.wurlod
Mon Dec 12, 2005 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need count of records being populated
Replies: 10
Views: 3030

Re: Need count of records being populated

Hi ravi, i tried using the aggregator.But it is also not giving me the total count.Instead it is giving me a sequence number like 1,2,3...10 again. Thanks, sengs You can not get the final count until the last row has been processed. Think about what happens. Read the other suggestions (Transformer ...
by ray.wurlod
Mon Dec 12, 2005 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Import the DSX file and making available for client users
Replies: 13
Views: 7172

That is correct. The only thing that should be on the server is the Package Installer.

All other menu items are client-side only.
by ray.wurlod
Mon Dec 12, 2005 3:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP Enterprise Stage
Replies: 2
Views: 1366

To emphasise what Ken said, the FTP Enterprise stage (or the FTP stage in server jobs) is intended to move one file to/from the remote machine, with the file contents delivered/taken as a stream from DataStage (that is, not landing to disk).
by ray.wurlod
Mon Dec 12, 2005 3:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Internal process of Remove Duplicates Stage
Replies: 1
Views: 710

I believe you will find that that information is not in the public domain. You might try asking the vendor.

Given that the input needs to be sorted on the keys, I think you can figure out how it works - you can do the same thing with stage variables in a Transformer stage.
by ray.wurlod
Mon Dec 12, 2005 3:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job recovery
Replies: 16
Views: 4573

Arnd is correct. Job designs are stored as records in tables in a database (the Repository). The deletion having been auto-committed, no recovery is possible. There's a lesson to be learned about backups here! I export all my work at the end of each day. There is a record in the DS_AUDIT table that ...
by ray.wurlod
Sun Dec 11, 2005 7:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: implementing a slowly changing Dim table
Replies: 7
Views: 2840

Welcome aboard! :D You have a steep learning curve. The first step is to garner some understanding of what a slowly changing dimension is. There are many books out there - one of the best is The Data Warehouse Life Cycle and Toolkit by Ralph Kimball and others. Slowly changing dimension tables imple...