Search found 53125 matches

by ray.wurlod
Tue Jan 09, 2007 2:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: slow read from dataset - combinability mode issue?
Replies: 12
Views: 3970

Are you using the same configuration file and the same partitioning when reading the Data Set that were used when it was written? If not you are incurring the cost of repartitioning these data, as well as of partitioning the sequential file data (which is unavoidable for parallel execution).
by ray.wurlod
Tue Jan 09, 2007 2:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise Stage
Replies: 2
Views: 774

Almost no difference at all when performing a SELECT operation. The Oracle Enterprise is constrained to executing in sequential mode because of the way that Oracle delivers the result set. However, the Oracle Enterprise stage can quite happily perform parallel Upsert operations or parallel Load oper...
by ray.wurlod
Tue Jan 09, 2007 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: BAPI stage file format
Replies: 4
Views: 1350

Your understanding is imperfect. The BAPI stage actually generates ABAP code that is passed to the SAP environment for execution.
by ray.wurlod
Tue Jan 09, 2007 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: calling Job parameters
Replies: 8
Views: 2197

Just about any stage in a parallel job has an "Insert Job Parameter" tool or a "Job Parameter" selection from an expression editor menu.
by ray.wurlod
Tue Jan 09, 2007 2:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Remove all Non-Unique records
Replies: 14
Views: 6547

SQL via ODBC Enterprise stage using driver for text files?
by ray.wurlod
Tue Jan 09, 2007 2:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX training materail
Replies: 11
Views: 4833

I also sell DataStage curriculum. See my web site (link from signature block). Then contact me off line for pricing, delivery (if needed), etc.
by ray.wurlod
Tue Jan 09, 2007 1:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Parameters
Replies: 15
Views: 3220

What is the default value set in the Administrator client for this environment variable?

It can not be $PROJDEF, $ENV or $UNSET; it must be a "proper" value. $PROJDEF is only to use as the default value of a job parameter, not of an environment variable.
by ray.wurlod
Tue Jan 09, 2007 1:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Parser Error
Replies: 6
Views: 1173

Never believe anyone who says "should be". Check.
by ray.wurlod
Tue Jan 09, 2007 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TimeStamp in oracle
Replies: 2
Views: 915

Do you need the system time "now", or the system time when the job started? If the former, you could use SYSDATE as the default value for the column and not insert it from the DataStage job. Or Oconv(Date(), "D-YMD[4,2,2]") : " " : Oconv(Time(), "...
by ray.wurlod
Tue Jan 09, 2007 1:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RFC Load
Replies: 3
Views: 948

RFC is one of the two available mechanisms for getting ABAP code generated in DataStage to be sent to the SAP environment. Read the documentation that accompanies your SAP R/3 Load PACK.
by ray.wurlod
Tue Jan 09, 2007 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Occurs Depending On" Clause in Complex flat file
Replies: 1
Views: 851

RTFM

Read the manual for the Complex Flat File stage (cff.pdf) and learn about (lack of) support for OCCURS DEPENDING ON.
by ray.wurlod
Tue Jan 09, 2007 1:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Read Only Jobs
Replies: 7
Views: 2233

Everything except the example job supplied by the vendor, which uses a different value to mark it as read-only. This may be a desirable result for jobs - after all, they're all designed in-house, and can be switched back to read-only if desired using a similar UPDATE statement. UPDATE DS_JOBOBJECTS ...
by ray.wurlod
Tue Jan 09, 2007 1:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle procedures and functions usage in DS
Replies: 3
Views: 1542

Oracle functions are used within SQL queries. You can put them into the Derivation column in the Columns grid when selecting, or in user-defined SQL.
by ray.wurlod
Tue Jan 09, 2007 1:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: config file
Replies: 19
Views: 4140

... and repeated assertions that the problem is not with the configuration file.
by ray.wurlod
Tue Jan 09, 2007 1:32 pm
Forum: General
Topic: Testing of Datastage jobs
Replies: 3
Views: 1617

Like any QA person, an advanced sense of cynicism is essential. Skill in constructing test cases (you may need to create test data according to specifications) is also vital. Ultimately, testing not only needs to ensure that jobs finish OK, it needs to test that they produce correct results; that al...