Search found 53125 matches

by ray.wurlod
Mon Feb 14, 2011 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do we prevent importing "unicode" Extended opt
Replies: 8
Views: 5259

It happens because NLS is enabled. You can't disable it if NLS is enabled.
by ray.wurlod
Mon Feb 14, 2011 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex Flat File and multple, conditional record types.
Replies: 6
Views: 4058

Can't you send 6 and 5 along separate links into a Funnel?
by ray.wurlod
Mon Feb 14, 2011 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is it possible to get all the tables for all jobs ?
Replies: 2
Views: 1365

In that case you need to understand the (undocumented) structures in tables like DS_JOBOBJECTS or RT_CONFIGnnn. At anotheritco there's a utility for determining what hashed files are used; perhaps you could adapt that.
by ray.wurlod
Mon Feb 14, 2011 3:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: subtract two dates
Replies: 2
Views: 2166

What data type is the result of subtracting two timestamps?
by ray.wurlod
Mon Feb 14, 2011 3:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To generate sequence number to the ouput rows
Replies: 3
Views: 1502

Depends what the producer stage for the output rows is. If it's a Transformer, use that. Otherwise use a Column Generator or Surrogate Key Generator stage.
by ray.wurlod
Mon Feb 14, 2011 3:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer functionality
Replies: 2
Views: 1035

Sequential means "running on one node". Which node is determined as part of a resource allocation algorithm when the score is composed.
by ray.wurlod
Mon Feb 14, 2011 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in updating DB2 table using ODBC stage
Replies: 1
Views: 1077

Is DB2 really on a mainframe, or have you misconfigured the DSN?
by ray.wurlod
Mon Feb 14, 2011 3:29 pm
Forum: General
Topic: How to get last hour from System time at Sequence?
Replies: 6
Views: 2584

However Time() - 3600 is correct. If that result is negative you have to subtract 1 from the date. If @TIME < 3600 Then Oconv(@DATE - 1, "D-YMD[4,2,2]") : " " : Oconv(@TIME + 86400 - 3600, "MTS") ElseOconv(@DATE, "D-YMD{4,2,2]") : " " : Oconv(@TIME -...
by ray.wurlod
Mon Feb 14, 2011 3:26 pm
Forum: IBM QualityStage
Topic: Match specification
Replies: 11
Views: 4847

No idea without a lot more information about your choices of blocking fields and match rules!
by ray.wurlod
Mon Feb 14, 2011 3:25 pm
Forum: Enhancement Wish List
Topic: IS user retrieval
Replies: 1
Views: 7779

Agreed. My last site had more than 64,000 users in Active Directory.
Filter first. How hard could it be?
by ray.wurlod
Mon Feb 14, 2011 3:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare values in transformer stage
Replies: 27
Views: 10357

It has already been given, even in this thread.
by ray.wurlod
Mon Feb 14, 2011 3:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how can we get basic transformer in parallel jobs?
Replies: 2
Views: 1441

Welcome aboard.

It's already there.

But it's not in the Palette (they prefer that you don't use it). You need to find it in the Stage Types branch of the Repository.
by ray.wurlod
Mon Feb 14, 2011 3:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: na
Replies: 8
Views: 2295

Did you click on the "What's this?" button?
by ray.wurlod
Mon Feb 14, 2011 3:51 am
Forum: General
Topic: How to get last hour from System time at Sequence?
Replies: 6
Views: 2584

Not one function, but you can build it up from more than one, including Date() or @DATE (date in internal format), Time() or @TIME (time in internal format) and doing the time arithmetic for the one hour offset. You could do all that in a server routine, too.
by ray.wurlod
Mon Feb 14, 2011 12:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Does DataStage support supplementary character set?
Replies: 4
Views: 1838

Go to the Information Center (http://publib.boulder.ibm.com/infocente ... /index.jsp) and search there for "DataStage NLS". The first hit should be the topic about configuring NLS.