Search found 53125 matches

by ray.wurlod
Fri Jan 30, 2009 1:11 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Creating sequence generator transformation
Replies: 5
Views: 11395

U is not asking the question. Vishal1982 is. The second person personal pronoun in English is spelled "you", not "u", and it its possessive case is spelled "your", not "ur". Please strive for a professional standard of written English on DSXchange. Not only do...
by ray.wurlod
Fri Jan 30, 2009 1:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Requirement to filter first run to generate following days
Replies: 5
Views: 1584

Stop. Step back. Analyze thoroughly what you want to occur, with examples, on day one and on subsequent days. Document the rule under which the cycle resets to day one. From this analysis produce a detailed specification. Get someone else to review your work (peer review). This process ought to make...
by ray.wurlod
Fri Jan 30, 2009 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to map column names in to rows
Replies: 7
Views: 2193

Then the OP may as well use a server job and avoid the startup overhead of a parallel job.
:roll:
by ray.wurlod
Fri Jan 30, 2009 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Windows edition or Unix edition is better?
Replies: 3
Views: 963

None.

The way you do some things, particularly administration, may be different, but almost all functionality is available on both operating systems. (OLEDB is not available on UNIX is one of the few small exceptions.)
by ray.wurlod
Fri Jan 30, 2009 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading XML file
Replies: 1
Views: 760

Did you Search for your answer? There are different methods, depending on factors such as the likely maximum size of your XML file and the complexity of its structure.
by ray.wurlod
Fri Jan 30, 2009 12:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: what is the difference between lookup,merge,and join stage?
Replies: 3
Views: 2058

Moderator: please move to parallel forum

Did you bother to Search (this question has been asked and answered before) or to read the relevant chapters (one for each stage type) in the Parallel Job Developer's Guide?
by ray.wurlod
Fri Jan 30, 2009 12:55 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Error Profiling Japanese Character
Replies: 10
Views: 5108

Report the metadata import bug to your support provider, then change the setting within IA to UTF-8 manually.
by ray.wurlod
Thu Jan 29, 2009 11:04 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Error Profiling Japanese Character
Replies: 10
Views: 5108

Re: Error Profiling Japanese Character

sweta rai wrote:for field SUPNM. When moving data from source field type STRING(min=0,max=135,charset=windows-1252)
This tells me that either the source table has not been loaded properly or that your metadata are inconsistent.
by ray.wurlod
Thu Jan 29, 2009 11:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get full outer join using join stage
Replies: 10
Views: 6223

A very simple counter-example is where there is a slow connection to the source database, or where the source database is comparatively very busy compared to the DataStage server.
by ray.wurlod
Thu Jan 29, 2009 11:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to map column names in to rows
Replies: 7
Views: 2193

... because the first row is only processed on one node.
by ray.wurlod
Thu Jan 29, 2009 8:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: JobControl (SQLState): S1000
Replies: 2
Views: 998

SQL State is the generic ODBC error mechanism. A search on Google for "S1000 ODBC" will return lots of useful information.
by ray.wurlod
Thu Jan 29, 2009 8:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to map column names in to rows
Replies: 7
Views: 2193

It's a manual process. You can't automate it. The new columns on the Pivot stage input link contains just the actual column names, as literal strings. For example "July", "August" and "September". Perhaps you can call these columns Jul_MonthName, Aug_MonthName and Sep_M...
by ray.wurlod
Thu Jan 29, 2009 6:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is DSUBINARY in a DSX export?
Replies: 3
Views: 1668

These lines will be near the end of the DSUBINARY object. The differences are because the date/time compiled (and various other things) are included in the object code itself.
by ray.wurlod
Thu Jan 29, 2009 5:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer constraints with multiple values?
Replies: 11
Views: 4842

You may need to be careful of data types in parallel jobs. Otherwise Index() is the best tool for the job specified in the original request.
by ray.wurlod
Thu Jan 29, 2009 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Executing Oracle Stored Procedure after load.
Replies: 8
Views: 2584

The stored procedure must exist in the database. You can not create stored procedure code in the CLOSE command. You invoke the stored procedure from the CLOSE command (or from a Stored Procedure stage or wherever).