Search found 53125 matches

by ray.wurlod
Tue Nov 02, 2004 3:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Value of a generated key rolled over to 1
Replies: 7
Views: 2223

As supplied the routine works with integers. Most join columns in star schemas use integer as their data type, so this is a reasonable approach. If you want larger values than MAXINT (2,147,483,647) then you will need to adapt the routine. To avoid losing precision, make sure that your new routine i...
by ray.wurlod
Tue Nov 02, 2004 3:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading in strings with quotes from a csv file
Replies: 12
Views: 9759

It's possible but messy; you need to process the entire string a character at a time keeping track of whether or not you're inside a quoted string, generating "clean" output. You can do this with sed or awk or C or DataStage BASIC or Perl or whatever else takes your fancy. For quotes within quotes y...
by ray.wurlod
Tue Nov 02, 2004 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving error description for SQL Server
Replies: 6
Views: 2018

LASTERR is "the error text returned by the driver or database server".
Blame Bill Gates.
by ray.wurlod
Tue Nov 02, 2004 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Version Control Architecture
Replies: 3
Views: 828

VC must bring components to the client; it's capable of promoting between UNIX-based and Windows-based DataStage servers.
by ray.wurlod
Tue Nov 02, 2004 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issues
Replies: 7
Views: 1587

"Add more memory" is a valid response to a "running out of memory" symptom. :wink:
Sometimes hardware solutions are the easiest to implement, especially if you've tweaked everything else.
by ray.wurlod
Tue Nov 02, 2004 3:04 pm
Forum: IBM QualityStage
Topic: getting error when I run a job in QUALITY STAGE DESIGNER
Replies: 9
Views: 4052

Have you successfully installed all the pieces? Did you perhaps install in a non-default location (that is, not in C:\Ascential)?
by ray.wurlod
Mon Nov 01, 2004 10:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UCI / BCI and DS v7
Replies: 3
Views: 1962

Interesting!

My present site is running 7.1 on AIX, and libuciwrapper.so, ucirpc_clt.o and the UCI SDK are all present. I guess the calls to them have been removed.
by ray.wurlod
Mon Nov 01, 2004 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to get the output of the unix command:'echo "obase=
Replies: 7
Views: 2917

$echo is a reference to a shell variable. Perhaps that shell variable is not defined, or has "" assigned to it? This would be a "do nothing" command with no output.

Try it without the $ character at the beginning.
by ray.wurlod
Mon Nov 01, 2004 8:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UCI / BCI and DS v7
Replies: 3
Views: 1962

Can't find any such reference in the 7.1 readme. Where do you think you saw it? BCI is outbound, UCI is inbound. So if DataStage (the client) uses BCI functions to connect to a UniVerse data source (the database server), it's the UCI on the UniVerse server that would service the request. It would no...
by ray.wurlod
Mon Nov 01, 2004 8:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading columns in the target database
Replies: 3
Views: 1212

You have a stage that is connected to the database into which you're trying to load the data. It might be an ODBC stage, an OLEDB stage, a DRS stage, or a database-specific stage. On the Inputs link for that stage, there will be a property called something like "update action" containing a drop-down...
by ray.wurlod
Mon Nov 01, 2004 2:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Get Error Code out of error msg
Replies: 3
Views: 1001

No. There is no join path. The log files contain the decoded text in the MSG.TEXT column. This text contains parameter markers. Values with which these parameter markers are replaced are stored in the multi-valued column MSG.ARGS . You can see the text with parameters replaced by selecting the virtu...
by ray.wurlod
Mon Nov 01, 2004 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading columns in the target database
Replies: 3
Views: 1212

Just set the method to "update" on the second run.
by ray.wurlod
Mon Nov 01, 2004 1:37 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Profile Stage performance
Replies: 5
Views: 4106

Here's a reply from the guy who actually ran the Profile Stage analyses at my current site. Hope it's useful. I'm not sure how useful this information is going to be because, as you pointed out, there are many factors that affect the processing time. Probably the most relevant example that I can rec...
by ray.wurlod
Mon Nov 01, 2004 1:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Retrieving error description for SQL Server
Replies: 6
Views: 2018

The link variable LASTERR returns the error text.

Beware that, with all Microsoft databases, it tends to be verbose so, if you're wanting to capture it into a table, make sure the column's a wide one!
by ray.wurlod
Sun Oct 31, 2004 11:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequence jobs and check points
Replies: 9
Views: 2356

New in 7.1. :cry:

If you go to 7.5 you also get LoopStart and LoopEnd activities.