Search found 53125 matches

by ray.wurlod
Fri Feb 22, 2013 3:46 am
Forum: General
Topic: Rename folder is still showing with previous name in direcor
Replies: 9
Views: 1893

Do you have auto-refresh disabled in Director?
by ray.wurlod
Thu Feb 21, 2013 3:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data format issue
Replies: 3
Views: 1131

Data type decimal will always have a decimal placeholder, even if scale is 0. To avoid, change the data type to integer or string. In the latter case use Convert() function to eliminate the "." character.
by ray.wurlod
Thu Feb 21, 2013 3:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: is there a function to apper text in bold
Replies: 2
Views: 762

There is only a single typeface choice in the client tools. If you know the target's technique for handling "bold on" and "bold off" you could include those in the generating expression, for example svBoldON <-- Char(27) : "[5" svBoldOFF <-- Char(27) : "[0" Ex...
by ray.wurlod
Thu Feb 21, 2013 2:57 pm
Forum: General
Topic: Data Stage
Replies: 5
Views: 1539

+-- Job B ----+ | | | V Job A --> NestedCondition --> Sequencer --> JobC You may be able to avoid the NestedCondition activity by using explicit triggers on Job A, depending on what your actual condition is.
by ray.wurlod
Thu Feb 21, 2013 2:52 pm
Forum: General
Topic: DS Upgrade 7.5.1A to 8.7
Replies: 5
Views: 3978

There's no shortage of 9.1 documentation; you can get it from the IBM Information Center and, from there, you can get a link where you can go to download manuals.
by ray.wurlod
Wed Feb 20, 2013 11:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Fixed Flat file with hexadecimal values
Replies: 5
Views: 1293

Assuming you're in an SMP architecture the BASIC Transformer stage will execute in parallel.

James's suggestion of using a %x mask is also worth considering. By that means you can allot multiple readers per node.
by ray.wurlod
Wed Feb 20, 2013 7:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting rid of new line while inserting in .txt file
Replies: 2
Views: 1032

How do you know when "end of group" has occurred? For example, are there always three input lines that have to become one, or might there be two or four or some other number?

With that information more cogent advice may be possible.
by ray.wurlod
Wed Feb 20, 2013 7:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue handling date datatype with APT_STRING_PADCHAR
Replies: 1
Views: 777

APT_STRING_PADCHAR does not affect Date data type. You need to find better specifications for extracting the date from your source, perhaps using StringToDate() and DateToString() functions. Review documentation and/or Search DSXchange for how to specify variable formats such as one- or two-digit mo...
by ray.wurlod
Wed Feb 20, 2013 7:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create Fixed Flat file with hexadecimal values
Replies: 5
Views: 1293

Easiest would be a BASIC Transformer stage using Oconv() function specifying "MX0C" as the conversion.
by ray.wurlod
Wed Feb 20, 2013 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handling \n char in schema
Replies: 0
Views: 836

Step 1 - decide how it is to be "fixed" (for example discard the \n character, replace the \n character with a space character, actually use two lines (two records) repeating the key, etc.)
by ray.wurlod
Wed Feb 20, 2013 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-contiguous Surrogate keys
Replies: 3
Views: 1016

Updating the State file is running a job that loads a new start point from which Surrogate Key values will be generated. But it will still generate them in blocks, the size of which is determined by the Block Size property.
by ray.wurlod
Wed Feb 20, 2013 7:27 pm
Forum: General
Topic: migration from 8.0.1 to 9.1
Replies: 4
Views: 1511

Care to share?
by ray.wurlod
Wed Feb 20, 2013 7:25 pm
Forum: General
Topic: WAS won't start
Replies: 1
Views: 1124

I deduce that either the db2fenc1 user account was unlocked in the interim, or that you still have an expired password but have not yet attempted any fenced operations against the database.
by ray.wurlod
Wed Feb 20, 2013 2:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-contiguous Surrogate keys
Replies: 3
Views: 1016

SKG stage generates in blocks. Any values not consumed from a block are wasted.

There is no requirement for surrogate key values to be contiguous. All they have to be is unique.
by ray.wurlod
Wed Feb 20, 2013 2:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Huge data - Job aborting
Replies: 4
Views: 1650

Totally separate problem. Your new error is a metadata mismatch connecting to the ODBC data source. You have to fix it (make the metadata in your job match the metadata in the database). Or, perhaps, not specify precision as 0 or "".