Search found 53125 matches

by ray.wurlod
Tue Apr 17, 2007 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer Job is getting aborted
Replies: 6
Views: 2729

Check both spelling and casing of the parameter names you use.

Use the expression editor or parameter helper to select them, rather than typing parameter names. Typing is the principal source of typing mistakes.
by ray.wurlod
Tue Apr 17, 2007 2:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning a routine
Replies: 4
Views: 1216

Hi Ray, I can use Wait for File Activity.But my problem is that the file name is not fixed.E.g. the Control File names can be 'GL_CONTROL_FILE_EGF.txt','GL_CONTROL_FILE_XYZ.txt','GL_CONTROL_FILE_PQR.txt' etc. And there is no fixed sequence in which the files would come.sometimes 'GL_CONTROL_FILE_EG...
by ray.wurlod
Tue Apr 17, 2007 2:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file or indexed tables ?
Replies: 3
Views: 1241

It's possibly even better than being local; DataStage hashed files can be cached in memory, so that the fast key-based access (via the hashing algorithm) is at least three orders of magnitude faster than disk-based access.

In DataStage the term is "hashed" file, not "hash" file.
by ray.wurlod
Tue Apr 17, 2007 2:18 pm
Forum:
Topic: Erwin naming Standard file and MetaStage
Replies: 1
Views: 1475

I have never used a naming standard file. MetaStage can successfully import from an ER1 or XML file produced by ERwin; so maybe this is a path you might travel?
by ray.wurlod
Tue Apr 17, 2007 5:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File in EE
Replies: 5
Views: 1441

You can only specify sort on the input link(s) to a stage. On-link sorting and Sort stage perform exactly the same sort function, using a tsort operator. However an explicit Sort stage gives you better control over the amount of memory allocated for sorting, and to specify that the data are already ...
by ray.wurlod
Tue Apr 17, 2007 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration from DS 7.5.1A Server Edition to DS 8
Replies: 18
Views: 4858

Depends when you ask. Versions for AIX and Linux have been released, I believe we're still waiting for the other platforms. The delay is primarily one of logistics - getting enough media created for each platform, and keeping them separate to reduce the chances of the wrong media being sent to anyone.
by ray.wurlod
Tue Apr 17, 2007 5:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX with Sequential File
Replies: 9
Views: 2496

For only a few cents per day you can purchase a premium membership that allows you to see the premium posts in full, and helps to fund the bandwidth required to sustain DSXchange. Maybe your employer would buy it for you. There is a link on the home page to a page on which corporate discounts can b...
by ray.wurlod
Tue Apr 17, 2007 5:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS EE 7.5 : Migration from DS Server 3.0
Replies: 7
Views: 1863

All versions up to and including 5.2 use UniVerse.

Version 6.0 of DataStage was the first not to use UniVerse as its engine.
by ray.wurlod
Tue Apr 17, 2007 5:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in string to date conversion.
Replies: 15
Views: 6626

Good. Now please tell us which stage type you are using for DB2.

If it is the DB2 Enterprise stage, please advise the values of the Write Mode and Write Method properties. If you are using SQL, please also post the SQL query and identify which columns in it are Date data type.
by ray.wurlod
Tue Apr 17, 2007 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file not populating
Replies: 7
Views: 1722

Not the job that does the lookup; the job that populates the hashed file. Is there a Transformer stage between the OCI stage and the hashed file stage in the part that populates the hashed file? If not, put one in. The most probable cause for not populating the hashed file intermittently is that no ...
by ray.wurlod
Tue Apr 17, 2007 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error while trying to import tables-dsn names
Replies: 14
Views: 4946

Please post the entries for "castle" from .odbc.ini and from uvodbc.config file.

Did you restart DataStage after editingthe .odbc.ini file?
by ray.wurlod
Tue Apr 17, 2007 4:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tuning a routine
Replies: 4
Views: 1216

Why not just use a Wait For File activity to do the waiting, then a simple expression to extract the substring wherever it is that you're going to use it. Are you on 7.5 or an earlier version? If earlier, then maybe you need a Routine to do the substring. As to why the difference in wait time, that'...
by ray.wurlod
Tue Apr 17, 2007 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hash file not populating
Replies: 7
Views: 1722

Welcome aboard. :D (The term is "hashed" file, not "hash" file.) When the hashed file is not populated, what row count is reported through the job? Is there a Transformer stage in the job? If not, put one in, even though it does nothing. Then you will be able to isolate the problem to "0 rows select...
by ray.wurlod
Tue Apr 17, 2007 1:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partial read of sequential file
Replies: 2
Views: 1039

You must read every byte in a sequential file to get to the next byte. Therefore you must read every field. But, if you look carefully, you will find that each column as a "Drop On Import" property - you could set this property for all except the two fields you want to read.
by ray.wurlod
Tue Apr 17, 2007 1:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in string to date conversion.
Replies: 15
Views: 6626

Did you try to use the StringToDate() function in the SQL, or upstream in the DataStage job in a Transformer stage?