Search found 53125 matches

by ray.wurlod
Mon Jun 07, 2010 11:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Range lookup
Replies: 7
Views: 2445

I don't have access to a DataStage that I can use to test at the moment, but believe that you can add more AND conditions in the range lookup expression editor grid. Will have to put this on hold till I can test - maybe next week.
by ray.wurlod
Mon Jun 07, 2010 11:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column to Rows
Replies: 6
Views: 1895

Create the following stage variables. svSRLF <-- Char(13) : Char(10) svFirst5 <-- Field(InLink.TheString, "|", 1, 5) svCol6 <-- Field(InLink.TheString, "|", 6, 1) Write the following single-column row into a Sequential File stage with 000 as the quote character and DOS style line...
by ray.wurlod
Mon Jun 07, 2010 6:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to specify lookup found condition in EE ?
Replies: 10
Views: 3124

That behaviour is also driven by whether you have a default value defined for the particular field.
by ray.wurlod
Mon Jun 07, 2010 6:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date function
Replies: 1
Views: 973

There are a few, such as DateFromDaysSince(), PrevWeekdayFromDateSince() and so on. Do some research to find out precisely the one that best fits your particular requirement. They're in an appendix of the Parallel Job Developer's Guide.
by ray.wurlod
Mon Jun 07, 2010 6:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help in Range lookup
Replies: 7
Views: 2445

Your question embodies the solution. On the reference input link in the Lookup stage choose Range as the lookup type then double click on the value cell to open the range specification editor. Can you not simply continue to edit the expression in the range lookup expression editor? Add another AND a...
by ray.wurlod
Mon Jun 07, 2010 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading XMLs into Db2 UDB -
Replies: 3
Views: 1222

Is the manual for the DB2 Connector available in PDF format?
by ray.wurlod
Mon Jun 07, 2010 4:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage Level Config File & Conditional Schema
Replies: 6
Views: 3188

1. Nothing of which I'm aware. Does context-sensitive help provide any clue?
by ray.wurlod
Mon Jun 07, 2010 2:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference
Replies: 2
Views: 930

Depends on the data type of link.col1
by ray.wurlod
Mon Jun 07, 2010 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage Level Config File & Conditional Schema
Replies: 6
Views: 3188

1. No. APT_CONFIG_FILE is job-wide.
2. No. You could use multiple schema files and parameterize the schema file name property.
by ray.wurlod
Mon Jun 07, 2010 2:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IN Clause in Filter Stage
Replies: 1
Views: 959

No, but you could use a Lookup.
by ray.wurlod
Mon Jun 07, 2010 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Routine- Help needed
Replies: 9
Views: 3965

DSXRAG wrote:I am unable to see your full reply as it is a premium content. :cry:
That is because you don't have a premium membership, a situation that is easily remedied.
by ray.wurlod
Mon Jun 07, 2010 2:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Encryption.
Replies: 27
Views: 18769

I want the first original password to be converted into encrypted and then use this encrypted as a password for the jobs for connecting to database by assigning to a parameter. does this work If I use convert()? Yes, but you can not provide already encrypted parameter values to a job - it must be d...
by ray.wurlod
Mon Jun 07, 2010 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Print '+' Character in Concatenated string
Replies: 19
Views: 3455

What are the data types of the two columns?

Topic relocated per request - Andy
by ray.wurlod
Mon Jun 07, 2010 2:28 pm
Forum: General
Topic: Can Connection Set Objects be changed at runtime?
Replies: 1
Views: 941

Assuming that you mean a Connector, then the easy approach is to associate a Parameter Set with the Connector, and provide parameter values at the different times.
by ray.wurlod
Mon Jun 07, 2010 3:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Encryption.
Replies: 27
Views: 18769

Then a simple Convert() function will do it for you if you are happy with character-by-character substitution. If you want each character replaced by two or three (or more) characters you will need to create a routine, but it's not a difficult one to write. For example, if your domain of password ch...