Search found 53125 matches

by ray.wurlod
Tue Nov 01, 2005 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Parameter Compilation Error
Replies: 8
Views: 1691

Somewhere you've mis-spelled, mis-cased or failed to define a job parameter called "paramname". Indeed, it may be that someone has cut-and-pasted syntax from help. You have to find this. An easy way is to export the job and search in the export file for "paramname".
by ray.wurlod
Tue Nov 01, 2005 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs Import
Replies: 3
Views: 1103

I recently did import a 7.5 export into 7.0. There were lots of warnings about various things, but the import seems to have been discarded the new features that 7.0 wouldn't know about, but otherwise to work successfully. Jobs did need to be recompiled, even though the export file included job execu...
by ray.wurlod
Tue Nov 01, 2005 2:04 pm
Forum: Site/Forum
Topic: Write a Book!
Replies: 40
Views: 20405

Or this one?

You guys are so un-hip it's a wonder your bums don't fall off.
by ray.wurlod
Mon Oct 31, 2005 2:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparative study of informatica and Datastage
Replies: 9
Views: 6022

Yep.

For small tasks, it's worth considering. But not really for serious ETL imho.
by ray.wurlod
Mon Oct 31, 2005 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine Execution Error
Replies: 8
Views: 6544

I disagree. The final sentence in the error message explicitly states "failed to find". Even though the OP is on Windows, many things are done in a UNIX environment (MKS Toolkit). Check the setting of the LD_LIBRARY_PATH envonronment variable, which is the shared library search path. Or it may just ...
by ray.wurlod
Mon Oct 31, 2005 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCI Vs Dynamic RDBMS
Replies: 9
Views: 2255

Why did Ken say no? Because, irrespective of the stage type, what happens is that SQL statements are sent to Oracle and the results of those are retrieved. It is (or should be) the same SQL in either case.
by ray.wurlod
Mon Oct 31, 2005 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Peculiar Problem
Replies: 10
Views: 2874

Search is your friend - this has been answered before. UV_USERS is NOT in the project. Anything you do in the project will not affect this particular problem. It appears that UV_USERS (one of the SQL Catalog tables for the engine) has become corrupted or has been removed or the user lacks privilege ...
by ray.wurlod
Mon Oct 31, 2005 1:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparative study of informatica and Datastage
Replies: 9
Views: 6022

If price is a criterion, you might also consider DTS from Microsoft. It's free (with SQL Server OLAP), and worth every penny. Connectivity is basically anything you can accomplish in the Microsoft world (ODBC, OLEDB, ...) and you have to manage all decision making by coding in VB script but, as I no...
by ray.wurlod
Mon Oct 31, 2005 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC Date Error After Re-Installing with NLS
Replies: 3
Views: 1225

Given that you had jobs that fail unless you use NONE as your TIME category, this seems to be your only sensible choice. On the other hand, if you'd had NLS installed from the beginning, then you could have had your TIME category set to whatever is appropriate. Assuming that you've installed NLS wit...
by ray.wurlod
Mon Oct 31, 2005 1:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file key separation
Replies: 7
Views: 1561

If you rely on the generated RETURN(Ans) function, which lives in a little greyed-out area at the bottom of the Routine, you can't change it. Roy is correct in that you can make it redundant by preceding it with your own. However, the problem as originally posted was that ANS was not being assigned ...
by ray.wurlod
Sun Oct 30, 2005 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file key separation
Replies: 7
Views: 1561

Variable names are case sensitive.

You have assigned a value to ANS, but the routine wants to return Ans.

You must use Ans throughout (because you can not change the RETURN(Ans) function).
by ray.wurlod
Sun Oct 30, 2005 12:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file sizes created in server vs PX
Replies: 6
Views: 1600

There's an "Extended" column in the grid on the Columns tab. Server jobs generate the smallest possible numeric fields, stripping leading zeroes to the left of the decimal place and trailing zeroes to the right of the decimal place. It seems you may have nailed it. The next question to answer is whe...
by ray.wurlod
Sat Oct 29, 2005 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Multi Format Flatfile
Replies: 9
Views: 3744

Thanks for posting the resolution. I vaguely recall that that restriction is documented somewhere. I also vaguely recall a restriction against handling OCCURS DEPENDING ON and on more than one OCCURS in any FD. Apparently this last one has been relaxed.
by ray.wurlod
Sat Oct 29, 2005 4:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get rid of trailing blanks without trim?
Replies: 3
Views: 1329

VARCHAR does not implicitly remove spaces - if you (or someone) puts them there, then they're there. VARCHAR only means that you don't have to fill the maximum width of the field.

Make use of derivation propagation, as Ken suggested.
by ray.wurlod
Sat Oct 29, 2005 4:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file sizes created in server vs PX
Replies: 6
Views: 1600

Do you get the same results with small data volumes?

Can you see any difference between the structure of the first line or two of each file? (head -2 filename)

Are you specifying Extended (Unicode) character strings in PX?