Search found 53125 matches

by ray.wurlod
Tue Feb 13, 2007 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem reading the file
Replies: 11
Views: 2192

Yes, you're calling a server function from a parallel Transformer stage. This is not permitted. Yes, you're calculating something every row that doesn't need to be calculated, because it's already in a system variable. Yes, if you must calculate something yourself, you could simply initialize a stag...
by ray.wurlod
Tue Feb 13, 2007 3:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata error
Replies: 7
Views: 1259

Makes sense. As far as I am aware, the C.539 in the error message relates to column #539.

Does the file perhaps have a field delimiter character in the data at or near line number 1,918,715 ?
by ray.wurlod
Tue Feb 13, 2007 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV Stage Lookup
Replies: 3
Views: 1628

You are trying to be too clever. Create separate indexes on Eff_Start_Dt and Eff_End_Dt. You can test your queries (as to whether they will use indexes) using the EXPLAIN keyword, for example in the Adminsitrator client Command window. SELECT COUNT(*) FROM table WHERE CURRENT_DATE BETWEEN Ef...
by ray.wurlod
Tue Feb 13, 2007 3:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The jobs are not called from the batch
Replies: 8
Views: 2495

For a few cents per day you CAN view premium content. It's how this site partially funds its bandwidth charges. You can declare a dimensioned array using a DIMENSION statement. You then, of course, need to keep track of which element is being used for each job, so perhaps an array with two dimensio...
by ray.wurlod
Tue Feb 13, 2007 3:00 pm
Forum: General
Topic: When do the Project and Job property defaults take effect?
Replies: 3
Views: 1366

It shouldn't be that hard. It's made that hard by the database vendors' insistence on different formats for Timestamp. What's wrong with following the ISO 8601 standard, I wonder? At least why can't they all recognize this one standard, in addition to their own idiosyncrasies? However, as DSguruji s...
by ray.wurlod
Tue Feb 13, 2007 2:55 pm
Forum: General
Topic: SQLite support
Replies: 1
Views: 1345

Provided that you can source an ODBC driver for SQLite that runs on UNIX it's definitely possible.
by ray.wurlod
Tue Feb 13, 2007 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem reading the file
Replies: 11
Views: 2192

You could get this with much less effort by interrogating the @OUTROWNUM system variable for link DSLink10.
by ray.wurlod
Tue Feb 13, 2007 2:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata error
Replies: 7
Views: 1259

Is it possible that you have tried to select the 16th column from a table that only has 15 columns defined?
by ray.wurlod
Tue Feb 13, 2007 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generate numeric duplicate number column
Replies: 6
Views: 1281

The Sort stage is far easier. It generates the "key is changed" value for you. All you have to do is to provide a column into which it can put this value. Any size of integer will do; the value is 0 or 1.
by ray.wurlod
Tue Feb 13, 2007 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS Jobs Migration from one platfrom to Another
Replies: 3
Views: 1042

The Itanium versions of DataStage are 64-bit capable. You don't need to make any changes.
by ray.wurlod
Tue Feb 13, 2007 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: differences in job execution between 7.0 and 7.5
Replies: 2
Views: 808

7.5 is more diligent about reporting these conditions.

You could perhaps introduce the sort ahead of the BuildOp, or use an explicit Sort stage after it. The explicit Sort stage might even specify "Don't sort (previously sorted)" if applicable.
by ray.wurlod
Tue Feb 13, 2007 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can I use Change capture for this ?
Replies: 8
Views: 1879

While being aware of the Drop... properties that Uma suggests, which all default to False, why don't you experiment? There is a match for Key column where value is one of 5,6,7,8. The Compare stage is not positional - it requires the Key column to match and then performs a comparison on all change c...
by ray.wurlod
Tue Feb 13, 2007 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 SQL referencing a list
Replies: 16
Views: 4846

Use a job parameter to contain the entire IN list. Your query then looks like: SELECT POLICY ,DEC (SUM (TBASICPRM), 12,2) FROM CMIDBO.PREMTRAN WHERE COMPANY = 1 AND PRODUCT IN ('COM' , 'FRM') AND POLICY IN (#PoliciesList#) GROUP BY POLICY WITH UR ; Populate the IN lis...
by ray.wurlod
Tue Feb 13, 2007 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fetch value for APT_CONFIG_FILE value in Unix environment?
Replies: 12
Views: 3617

Using the Administrator client, any user can determine the location of a project. This is reported in the status bar when a project is selected. On the server, location of a project is recorded in the hashed file UV.ACCOUNT and in the system table UV_SCHEMA. You can access both of these from the Dat...
by ray.wurlod
Tue Feb 13, 2007 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: replace comma with next line character at even position
Replies: 11
Views: 2264

Are there commas in the data (in quoted character strings) or only as field delimiters?