Search found 53125 matches

by ray.wurlod
Thu Aug 07, 2014 4:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on Trailing Decimal in Sequential File
Replies: 4
Views: 1526

Yes it is expected. When converting decimal to string DataStage adds a decimal placeholder and sufficient leading and trailing nonsignificant zeroes to make it clear what the precision and scale settings are.
by ray.wurlod
Thu Aug 07, 2014 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: junk character removal
Replies: 17
Views: 6921

What do you get if you don't apply the Convert() function, since you assert that there are no "junk" characters present in the data?

Perhaps a better term would be non-alphanumeric.
by ray.wurlod
Thu Aug 07, 2014 1:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to convert quote into double quote
Replies: 6
Views: 3544

Or you could use a loop in a Transformer stage, WHILE Index(InLink.TheField, '"', 1) > 0
Within the loop replace the double quote using substring techniques.
Perhaps make use of the LastRecordInGroup() function to constrain the output.
by ray.wurlod
Thu Aug 07, 2014 1:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of transformer stages affects performance ?
Replies: 20
Views: 8572

Check the date (year) that that Redbook was publlished.
by ray.wurlod
Thu Aug 07, 2014 1:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What NLS should I use for Binary UUID?
Replies: 7
Views: 4231

Code: Select all

SELECT CAST (UUID AS VARCHAR(36)), ... FROM tablename
and describe the data type as VarChar(36). You may also need a function such as RAWTOHEX() in the SQL.
by ray.wurlod
Thu Aug 07, 2014 1:52 pm
Forum: General
Topic: (CLI) command to create package for build/deploy with istool
Replies: 2
Views: 3295

The istool command also has options for creating a package.
by ray.wurlod
Wed Aug 06, 2014 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading decimal values in schema files
Replies: 9
Views: 4713

Take a look at what's specified in the fr_FR locale. You may need to create a custom locale definition.

Otherwise read the field as VarChar and use Convert() function to change the delimiter characters.
by ray.wurlod
Wed Aug 06, 2014 6:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slowly Changing Dimension Stage and initial Effective Date
Replies: 6
Views: 3036

You could always perform an update immediately after the initial load.
by ray.wurlod
Wed Aug 06, 2014 6:29 pm
Forum: General
Topic: odbc connection set up on linux
Replies: 4
Views: 2100

That's not how ODBC works. You WILL need a separate connection to each database, unless you create links from one database (to which you connect) to the other four within SQL Server.
by ray.wurlod
Wed Aug 06, 2014 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Two Characters as delimiter
Replies: 10
Views: 4136

Try saving the table definition from a job in which the metadata work successfully then right clicking within the columns grid of the saved table definition to produce a schema file.
by ray.wurlod
Wed Aug 06, 2014 3:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_PM_CONDUCTOR_TIMEOUT and APT_PM_NODE_TIMEOUT
Replies: 8
Views: 6058

As a general rule anything with an all upper-case name is an environment variable. Project environment variables are maintained using the Administrator client. You can add environment variables to those supplied "out of the box".
by ray.wurlod
Wed Aug 06, 2014 3:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading decimal values in schema files
Replies: 9
Views: 4713

You didn't ask another question. I assumed that
TonyInFrance wrote:I guess I need to define an NLS locale just to signify a thousands' separator.
was a statement of intent.

Bonne chance!
by ray.wurlod
Wed Aug 06, 2014 3:46 am
Forum: General
Topic: Report the Busines Rules - inside Stage Variables
Replies: 3
Views: 1231

Click the "job report" tool to produce a report of the job design, and copy your stage variable information from the report thus produced.
by ray.wurlod
Wed Aug 06, 2014 3:45 am
Forum: General
Topic: 11.3 only DB2 repository
Replies: 4
Views: 1528

No publicly-available sources, but I do participate in the early-release program and have some knowledge of future plans from that. Of course, anything specific is covered by non-disclosure agreement.
by ray.wurlod
Wed Aug 06, 2014 3:43 am
Forum: General
Topic: Decimal format
Replies: 5
Views: 1621

Minimum value for signed decimal[1,0] is -9.0.
Minimum value for unsigned decimal[1,0] is 0.0.
Minimum value for signed decimal[5,2] is -999.99.
Minimum value for unsigned decimal[5,2] is 0.0 (which is the same as 000.00).