Search found 53125 matches

by ray.wurlod
Fri Jun 25, 2004 6:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence number for multi valued data
Replies: 11
Views: 3407

If you're normalizing on the multi-valued field, you don't need an exploded sort. I wouldn't be a problem with UniVerse, but I'm not sure with UniData. Try BY.DSND rather than BY.EXP.DSND.
by ray.wurlod
Fri Jun 25, 2004 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Creating ODBC in Solaris env
Replies: 4
Views: 1311

Red Brick Warehouse is different. In this case, the driver manager searches for $RB_CONFIG/odbc.ini.
by ray.wurlod
Thu Jun 24, 2004 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Geospatial data types?
Replies: 3
Views: 1343

If you think about it, there's no valid "transformation" you would do with these data types.
DataStage can move them, but only if they're encoded into a text stream first. But why would you use DataStage just to move things, when FTP is so much cheaper and, some would argue, simpler?
by ray.wurlod
Thu Jun 24, 2004 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle 9i odbc driver configuration HP-UX ****RESOLVED****
Replies: 13
Views: 4381

Does Oracle still use the word "easy" in the SQL*NET configuration tool? I always felt this was false advertising.
by ray.wurlod
Thu Jun 24, 2004 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can i do this???
Replies: 10
Views: 3082

Make a hashed file with one row and two columns. The key value is a constant, say "X" (or something meaningful, like "SelectionDate"). The hashed file is loaded from the text file with the YYYYMM value as the non-key column. You can use this in a reference lookup within a Transformer stage. Or you c...
by ray.wurlod
Thu Jun 24, 2004 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Foreign Key Relationship
Replies: 1
Views: 752

Not really. If you import from a DCLGen and the foreign key relationships are stated in that, then DataStage will detect them. You can manually edit DataStage's "table definitions" that result from the import, and thus identify foreign key relationships, but I don't believe there is any way for Data...
by ray.wurlod
Thu Jun 24, 2004 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcput - timeout waiting for mutex
Replies: 18
Views: 14288

After changing SYNCALOC, did you run uvregen and re-start DataStage? If not, your SYNCALOC change will not have taken effect.
Have you adjusted the SPINTRIES and/or SPINSLEEP parameters?
by ray.wurlod
Thu Jun 24, 2004 4:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UniVerse display length vs. character length
Replies: 6
Views: 2996

Display length can be different from character length in character sets like Chinese, where there are double width characters. Thus, for example, it needs ten display positions to display five double-width characters, even though the "character length" of the string is 5. And, indeed, there's a thir...
by ray.wurlod
Thu Jun 24, 2004 3:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sys Date Comparison
Replies: 7
Views: 1246

What happens if you try

Code: Select all

If RecordDate  - Iconv(LkUp.LAST_INCDR_DATE,"D-YMD[4,2,2]") <= 120 
then LAST_INCDR_DATE (show me the date in my file)
else @null(those > 4 months )
by ray.wurlod
Thu Jun 24, 2004 2:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sys Date Comparison
Replies: 7
Views: 1246

You probably have a mismatched format. The only time when strings containing dates can be reliably compared is when they comply with ISO 8601 (for example YYYY-MM-DD). What is the source (text file, database table)? What type is the parameter? Date type parameters are converted into DataStage intern...
by ray.wurlod
Wed Jun 23, 2004 9:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mainframe and parallel extender
Replies: 1
Views: 573

No. Mainframe jobs generate COBOL code and JCL to get it compiled. These are uploaded to the mainframe where they are compiled and run. Whether any parallelism occurs is not under your control. Parallel jobs generate code that can be executed as osh in the Parallel Extender environment on the UNIX m...
by ray.wurlod
Wed Jun 23, 2004 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence number for multi valued data
Replies: 11
Views: 3407

No, it seems to be trying to read record "21849" : @VM : "1" - the delimiter is what causes the 1 to appear on a new line in the logged event. Somehow you're not properly normalizing the data. BY.EXP.DSND is not part of the WITH phrase - it is a separate clause. To use an SQL analogy WITH maps to WH...
by ray.wurlod
Wed Jun 23, 2004 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Chaining reference input links
Replies: 8
Views: 2397

Dunno. The "approved" method would be to do the two reference lookups in two consecutive Transformer stages, passing the results of the first along the link between the first and the second.
by ray.wurlod
Wed Jun 23, 2004 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: mainframes
Replies: 1
Views: 828

The Lookup stage is described, with detailed examples, in Chapter 19 of the DataStage Mainframe Job Developer's Guide (mainframe.pdf), which is in your DataStage manual set (in the Docs folder with your DataStage client software). They are also covered in the DataStage Essentials (DS390) class run b...
by ray.wurlod
Wed Jun 23, 2004 3:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Which Jobs Load Hashed Files?
Replies: 15
Views: 4413

This is Universe not Oracle. Very funny. You probably wrote your own explain plan for UV, right? I just wanted to show how to bring in the job name. UniVerse (and therefore DataStage) also has EXPLAIN. It was introduced with the SQL Engine in version 7.3, and heavily refined in version 9.4. SELECT ...