Search found 53125 matches

by ray.wurlod
Thu Jul 07, 2005 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 problem, Invalid string or buffer length. SQLSTATE=HY090
Replies: 6
Views: 3897

If I don't have the select privilege, the DRS stage won't work.

I asked whether you had SELECT privilege to the system tables, not to the data tables.
It is the system tables that must be interrogated to return a list of table names, where it appears your problem is occurring.
by ray.wurlod
Thu Jul 07, 2005 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job with no "Primary Input" stage
Replies: 5
Views: 2721

I agree with Kim, it can be done and is useful for the kind of thing envisaged.
by ray.wurlod
Thu Jul 07, 2005 3:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC problem with Datastage
Replies: 2
Views: 907

System and File DSNs are preferred. You don't always run jobs under the same ID as the one who created the DSN, so avoid User DSNs.
by ray.wurlod
Thu Jul 07, 2005 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading Cash Changing
Replies: 4
Views: 1034

The maximum hashed file cache size is 1GB (though the GUI's spin button control limits you to 999MB). See dsdskche.pdf. It can not be changed "on the fly" as you seek to do. It's a configuration parameter of the engine itself, as Kim advised. Your only "solution" is to set cache to maximum. Smaller ...
by ray.wurlod
Thu Jul 07, 2005 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is there any Universe ODBC driver for download?
Replies: 12
Views: 6431

AFAIK there never was an ODBC driver supplied to talk to UniVerse, because DataStage could use BCI/UCI and not need a driver.

IBM do not market a UNIX-based ODBC driver for UniVerse but there are third-party ones out there.
by ray.wurlod
Thu Jul 07, 2005 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: fatal error from UtilityAbortToLog
Replies: 3
Views: 2591

Inspect the JOBCONTROL.H file (in dsinclude directory on server) to learn what the code -8 means with respect to DSGetLinkInfo. (I don't have access to DataStage this week, so can't do it for you.)
by ray.wurlod
Thu Jul 07, 2005 3:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job sequence problem
Replies: 4
Views: 1057

I recommend Craig's option 3. It's more cumbersome to code, but makes it totally obvious what's intended, especially if the links are meaningfully captioned. Note that OK, Warning and Failed links all have different colours. OK Job1 ---------> Sequencer -----> NextActivity ---------> (Any) |...
by ray.wurlod
Thu Jul 07, 2005 4:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file with multiple keys
Replies: 2
Views: 1007

Welcome aboard! :D Hashed file can not be used for BETWEEN or any other kind of lookup apart from key = value. End of story. Search the forum for BETWEEN to see what I mean. The reason is the way hashed files work. The record is found by applying a function to the key value returning the address of ...
by ray.wurlod
Thu Jul 07, 2005 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wanna keep a set of jobs in loop
Replies: 6
Views: 1637

To add to Arnd's solution: Modify your jobs so that they extract just one key, whose value is supplied as a job parameter. For example WHERE key = '#keyvalue#' Construct a new job that extracts all the key values, calling UtilityRunJob to run the job sequence containing the original jobs, passing th...
by ray.wurlod
Thu Jul 07, 2005 12:58 am
Forum:
Topic: Manage Business Metadata using MetaStage
Replies: 14
Views: 8809

Isn't there a "lite" version of Meta Architect for free? Alas I'm not in a position to check at the moment.
by ray.wurlod
Wed Jul 06, 2005 11:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment
Replies: 5
Views: 1872

User-defined Environment variables set in Administator are stored in a file called DSParams in the project directory on the server.
by ray.wurlod
Wed Jul 06, 2005 9:00 pm
Forum:
Topic: Manage Business Metadata using MetaStage
Replies: 14
Views: 8809

Attending the training class will help you a great deal. MetaStage is a sufficiently complex product that a competently guided introduction to it is almost essential.
by ray.wurlod
Wed Jul 06, 2005 3:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: lookup Functionality
Replies: 1
Views: 658

Over simplified, but close enough for most purposes.
by ray.wurlod
Wed Jul 06, 2005 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge 240 flat-files into one and then process using DataSta
Replies: 10
Views: 2874

Try not to have the target file in the same folder as the source files.

Code: Select all

type c:\merge\*.txt > c:\temp\outfile.txt 

Or simply speccify type c:\merge\*.txt as the filter in a Sequential File stage.
by ray.wurlod
Wed Jul 06, 2005 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Search jobs that uses a particular file
Replies: 8
Views: 2011

Provided you've loaded the file's definition from the Repository in all cases (all jobs), you can select the Table Definition in Manager and perform a Usage Analysis there.