Search found 53125 matches

by ray.wurlod
Sun Oct 31, 2004 7:35 pm
Forum: Site/Forum
Topic: Question to Ascential Management
Replies: 12
Views: 8449

Will we ever achieve a knowledge level as in depth as Ray’s?

No reason why not, keep studying, keep up to date, and keep experimenting.
The only advantage I have is a twenty year start. :lol:
by ray.wurlod
Sun Oct 31, 2004 2:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get Error Code out of error msg
Replies: 3
Views: 1001

Many of the internal error message numbers live in a table called SYS.MESSAGE. This has a six character key, so you may need to add leading zero(es). For example: SELECT * FROM SYS.MESSAGE WHERE @ID = '081002'; Some of those that aren't in SYS.MESSAGE can be found, with some degree of difficulty, in...
by ray.wurlod
Sun Oct 31, 2004 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error running transformer in PX but in Server working fine
Replies: 5
Views: 1689

The first error message tells you very clearly what the problem is. You have specified a dataset for the input link (to the Transformer stage) but have specified a rejects link without a corresponding dataset. Therefore the job has no mechanism for dealing with the rows rejected in each partition. Y...
by ray.wurlod
Sun Oct 31, 2004 1:10 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Profile Stage performance
Replies: 5
Views: 4106

At my current site a few runs were performed that ran more than 2-3 hours, and were definitely nowhere near 100GB. Of course, elapsed time is as much as anything a function of how complex the analysis you're performing is. More complex analyses take longer; this is a simple fact of life. It being Su...
by ray.wurlod
Sat Oct 30, 2004 2:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: xls.files
Replies: 8
Views: 2729

Welcome aboard! :D I note that you are on Windows, this explanation relates to that platform. To extract data from Excel, the data must be in columnar format with column headings. Set up an ODBC data source using Microsoft ODBC driver for Excel as the driver, and select the workbook that you wish to...
by ray.wurlod
Sat Oct 30, 2004 2:04 am
Forum: Site/Forum
Topic: Question to Ascential Management
Replies: 12
Views: 8449

Thank you again for the kind words. I was lucky to be in the right place at the right time when DataStage was being developed and first released, and to have a background in Prime INFORMATION and UniVerse (and, curiously, HyperStar, which afforded in-depth knowledge of how ODBC works). It is both be...
by ray.wurlod
Fri Oct 29, 2004 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can any one tell me how can i get list of system variables
Replies: 5
Views: 1490

DataStage system variables are documented in the DataStage BASIC manual. Some of them are documented in on-line help (the topic System Variables will get you started). Values generated by these can not, in general, be inserted directly into SQL. You use the system variables in a Transformer stage to...
by ray.wurlod
Thu Oct 28, 2004 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data stage job stats (counts) stopped updating
Replies: 7
Views: 2710

I suspect that the display of elapsed time uses Oconv(seconds, "MTS"), which is written so as to return a value in the range 00:00:00 through 23:59:59.

You can test it yourself; Oconv(Iconv("28:00:00","MTS"), "MTS:") returns "04:00:00")
by ray.wurlod
Thu Oct 28, 2004 10:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset handling
Replies: 4
Views: 2234

Is the directory containing these commands mentioned in your PATH environment variable?
by ray.wurlod
Thu Oct 28, 2004 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORACLE9i issue
Replies: 19
Views: 6169

Of course, a database unload might be the fastest possibility. I don't know Oracle well enough to say whether conditional unloading is possible. It certainly is in Red Brick - the unload is performed at a physical level and is mega-fast! Red Brick is a trademark of International Business Machines Co...
by ray.wurlod
Thu Oct 28, 2004 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: can any one tell me how can i get list of system variables
Replies: 5
Views: 1490

For example, what is SYSDATE for one database's SQL might be CURRENT_DATE in another. If you're writing user-defined SQL it must be correct for the database/driver with which you're communicating.
by ray.wurlod
Thu Oct 28, 2004 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Variables
Replies: 3
Views: 1097

Lookahead in a delimited text file is possible (using SQL via ODBC driver for text files) but horrendously slow. Ken's suggestion (using a hashed file) is the best solution. The nice thing about this approach is that DataStage internal date format is an integer, which makes it so easy to get day+1, ...
by ray.wurlod
Thu Oct 28, 2004 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORAOCI8/9 Parameter marks to columns correspondence problem
Replies: 1
Views: 752

The only parameterised columns in a lookup query are the key columns (think about it). More accurately, the only parameterised columns in a lookup query generated by DataStage are those columns that your design has asserted to be key columns (you are permitted to lie, and can use that fact to get mu...
by ray.wurlod
Thu Oct 28, 2004 3:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bugs for Version 7.x
Replies: 7
Views: 2750

I thought "Whoosh!" was the sound deadlines make as they rush by! :lol:
by ray.wurlod
Thu Oct 28, 2004 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while executing parallel job
Replies: 9
Views: 4756

Always correct the first error first. In your case, this is the error regarding the PWD environment variable. There is another thread updated as recently as today on this topic.