Search found 53125 matches

by ray.wurlod
Fri Apr 17, 2009 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage
Replies: 10
Views: 3704

:?
You said you were running 8.01. Probably it's 8.0.1.
This is not the same as 8.1.
by ray.wurlod
Fri Apr 17, 2009 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Complilation error
Replies: 9
Views: 2198

Trim(NULL) is probably not supported. Apply the IsNull() function without the Trim() function. If the string can be trimmed, it is not null.
by ray.wurlod
Fri Apr 17, 2009 3:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conncting a database from a routine
Replies: 23
Views: 8118

ErrCode = SQLConnect(hDBC, DataSource, UserID, Pwd) If ErrCode <> SQL.SUCCESS Then Loop ErrCode = SQLError(hEnv,hDBC,hStmt,SQLState,DBMScode,LastErr) While ErrCode <> SQL.NO.DATA.FOUND and ErrCode <> SQL.ERROR Msg = "SQL state " : SQLState : ", DBMS code = " : DBMScode : @VM : L...
by ray.wurlod
Fri Apr 17, 2009 2:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error Calling Web Services
Replies: 8
Views: 3151

You don't add the JVM to your classpath, you add the lib directory that contains the classes. Usually this is done in the dsenv script so that every DataStage process automatically gets the settings.

Code: Select all

CLASSPATH=$CLASSPATH:/apps/Ascential/DataStage/DSEngine/java/lib
export CLASSPATH
by ray.wurlod
Fri Apr 17, 2009 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of I/P & O/P connection per transformer
Replies: 7
Views: 1519

Every object in the job design is more work. Each link is an object.
by ray.wurlod
Fri Apr 17, 2009 2:45 pm
Forum: Cognos (IBM BI)
Topic: FRAMEWORK MANAGER
Replies: 4
Views: 13512

I don't think it's fair to say (at least in version 8.4) that Framework Manager creates any metadata. Metadata are stored in the unified metadata repository of Information Server, which any of the Cognos tools can access via metadata delivery and analysis services.
by ray.wurlod
Fri Apr 17, 2009 5:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conncting a database from a routine
Replies: 23
Views: 8118

That's not how you call SQLError(). The third argument must be a valid statement handle.
by ray.wurlod
Fri Apr 17, 2009 5:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Number of I/P & O/P connection per transformer
Replies: 7
Views: 1519

Number of connections yes, number of stage variables no.

How many do you want to have to maintain?
by ray.wurlod
Fri Apr 17, 2009 5:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OCONV failed - NLS mapped to default
Replies: 1
Views: 941

Use an NLS map that matches the way that the data are encoded.
by ray.wurlod
Fri Apr 17, 2009 5:39 am
Forum: Infosphere Master Data Management
Topic: Aborted Job started running in a sequence
Replies: 1
Views: 8436

Master Data Management is a separate group of products from DataStage, so you have not posted in the correct forum.

The answer is almost certainly that the Job activity in the sequence specifies "reset if required, then run".
by ray.wurlod
Fri Apr 17, 2009 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance problem even after tuning...URGENT
Replies: 19
Views: 5845

I don't have access to premium content. Please give details without premium content. Premium membership is one of the ways that the hosting and bandwidth costs of DSXchange are defrayed, and I do not intend to establish a precedent for anything that would prejudice that, and the continuing existenc...
by ray.wurlod
Fri Apr 17, 2009 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance problem even after tuning...URGENT
Replies: 19
Views: 5845

It doesn't matter what you do when loading the hashed files. This is the write cache. When you're using the hashed file stage to source rows for a reference link, you can enable the read cache, which is independent of the write cache.
by ray.wurlod
Fri Apr 17, 2009 2:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: conncting a database from a routine
Replies: 23
Views: 8118

You need to determine where the error occurred, and that involves testing each and every one of your ErrCode variables. Particularly the one for SQLConnect(). For example you may have to use SQLSetConnectOptions() to set up the operating system login ID and password. Any time a BCI function returns ...
by ray.wurlod
Fri Apr 17, 2009 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to load XML file data to CSV file
Replies: 1
Views: 914

Read it with an XML Input stage (perhaps fed from a Folder stage). Beware that one XML file may contain repetition elements, which means that the data are not normalized. If your target requires normalized data then you may require multiple CSV files (Sequential File stage) or tables (database stage...
by ray.wurlod
Thu Apr 16, 2009 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to pass transfer two files in after job sub routine
Replies: 1
Views: 688

Your requirement is unclear.

Do you mean "pass two file names to the after-job subroutine" or do you mean something else?

Clear specifications are vital in producing good ETL, and just as vital in getting good answers to questions.