Search found 53125 matches

by ray.wurlod
Tue Jul 13, 2010 9:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generating sequence numbers using Stage variables
Replies: 19
Views: 7536

Too slow. The DSLinkCount macro has to begin an interrogation of the repository for every row processed. The link row count is already available in @OUTROWNUM (or @INROWNUM if an input link).
by ray.wurlod
Tue Jul 13, 2010 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete records based on the input file
Replies: 18
Views: 4994

You're not right. Not all databases support fully serializable transactions. In any case, record level locking (read committed) should suffice for your needs.
by ray.wurlod
Tue Jul 13, 2010 9:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash File
Replies: 20
Views: 4321

There are actually 19 types of hashed file. Two are dynamic, seventeen are static. The term refers to whether or not internal "table space" manasgement is automatic or not. Both static and dynamic hashed files are supported by all versions of DataStage.
by ray.wurlod
Tue Jul 13, 2010 9:02 pm
Forum: IBM QualityStage
Topic: Error RT_QS347_compile
Replies: 3
Views: 1678

Please mark the thread as Resolved using the green button at the top of the page, and make a post indicating what the actual solution was. This will assist future searchers.
by ray.wurlod
Tue Jul 13, 2010 8:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete records based on the input file
Replies: 18
Views: 4994

Split the records in a Transformer stage based on action type. The three outputs wil Insert, Update or Delete using the appropriate database stage.
by ray.wurlod
Tue Jul 13, 2010 8:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NULL Handling Issue
Replies: 16
Views: 5346

Decimal data type is always converted to string (including in View Data) with leading and trailing non-significant zeroes. If you don't want them, you have to get rid of them, typically using a Trim() function.
by ray.wurlod
Tue Jul 13, 2010 8:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ODBC connector issue
Replies: 7
Views: 1950

Don't use quoted identifiers.

There's probably a check box (or property, depending on precisely which stage type you're using) that allows you to enable/disable quoted identifiers (table names, column names, etc.) in the generated SQL.
by ray.wurlod
Tue Jul 13, 2010 8:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: MULTIPLE SQL SERVER DATABASES ODBC.INI SETTING
Replies: 7
Views: 5431

Re: MULTIPLE SQL SERVER DATABASES ODBC.INI SETTING

ejazsalim wrote:My requirements does not allow me to create new entry into the .ODBC.INI file for every database in the server.
Tough. There's no other way to do it.

The DSN can be a job parameter.
by ray.wurlod
Tue Jul 13, 2010 6:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get rid of COBOL levels in datastage Data Set column defs?
Replies: 15
Views: 13739

Right click on the Columns grid. The menu thus revealed allows you to customise the appearance of the Columns grid, including what will and will not be displayed.
by ray.wurlod
Tue Jul 13, 2010 6:47 pm
Forum: General
Topic: SAP Error
Replies: 9
Views: 3104

Sreedhar wrote:I am using the ls -l
Don't.

Use ls without the -l
by ray.wurlod
Tue Jul 13, 2010 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Convert HEX 92 Issue
Replies: 13
Views: 12187

Char() is only good up to 255. For values above this you need UniChar().
by ray.wurlod
Tue Jul 13, 2010 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Tuning
Replies: 10
Views: 4174

NullToValue() is a Transformer stage function. The equivalent in a Modify stage is handle_null(). The manual is wrong.
by ray.wurlod
Tue Jul 13, 2010 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get rid of COBOL levels in datastage Data Set column defs?
Replies: 15
Views: 13739

Do you want to get rid of it, or merely to hide it in the Columns grid?
by ray.wurlod
Tue Jul 13, 2010 2:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how do we implement in Datastage Server Jobs
Replies: 17
Views: 9446

Create a "range lookup" using user-defined SQL in one of the database stages. Use an ODBC stage which supports multiple row return.
by ray.wurlod
Tue Jul 13, 2010 2:24 pm
Forum: General
Topic: SAP Error
Replies: 9
Views: 3104

Read my post again - I believe your ls command truncated the file name. Use an ls command without the -l option to see what I mean.