Search found 53125 matches

by ray.wurlod
Sun Oct 08, 2006 5:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: help on transformer logic
Replies: 4
Views: 1063

Code: Select all

InLink.ZipCode Matches "5N" : @VM : "5N'-'4N" 

used as a constraint expression or in an If..Then..Else expression
by ray.wurlod
Sun Oct 08, 2006 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: running datastage job from a datastage routine
Replies: 5
Views: 3242

You can either change the ISOMODE setting in uvconfig or change the Begin Transaction statement to set a specific transaction isolation level. Refer to the DataStage BASIC manual for the BEGIN TRANSACTION or SET TRANSACTION ISOLATION LEVEL statement to learn what the options are.
by ray.wurlod
Sat Oct 07, 2006 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX configuration
Replies: 2
Views: 1268

Have at least one configuration containing N processing nodes for each N, where N is the number of partitions in a partitioned DB2 table. By using the DB2 partitioning algorithm in these cases you can achieve true parallel loading without the need to repartition data. Other than that, the main crite...
by ray.wurlod
Sat Oct 07, 2006 2:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column is taking more than defined length in dataset
Replies: 6
Views: 1390

There are 15 digits in 000010000024.350 (count them). That means decimal[15,3] in my book. "Precision" is the number of digits in the number, not the number of digits to the left of the decimal place.
by ray.wurlod
Sat Oct 07, 2006 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ecxecuting Shell Script in Datastage Jop properties
Replies: 8
Views: 3698

Similarly, the executing DataStage job assumes that your script is in the project directory if it's not given as a pathname and it's not findable via the PATH environment variable.
by ray.wurlod
Sat Oct 07, 2006 12:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Limit to I-Descriptors you import?
Replies: 4
Views: 1574

No, but is does make sense to create a dictionary using only those "D" and "I" type definitions you will actually need. Or create an @SELECT phrase, which will limit the fields visible to ODBC (technically @SELECT is to "SELECT *" as @ is to "LIST", defining what the "all columns" asterisk actually ...
by ray.wurlod
Sat Oct 07, 2006 12:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: About data type conversion
Replies: 6
Views: 1398

You could use a Complex Flat File stage, if it's a fixed-width format (which I assume it must be if it contains binary data). This stage can decode binary data within its own processing. Otherwise do as the others have suggested; read the column as a string (type Char) and use the SDK data conversio...
by ray.wurlod
Sat Oct 07, 2006 12:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: One or more of your selected locales are not available
Replies: 13
Views: 7316

No, "all the time" is correct behaviour. You add them as job parameters if you might want to override them for that job. Think about APT_CONFIG as an example.
by ray.wurlod
Sat Oct 07, 2006 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error connecting to Oracle database"Fatal Error: Caught
Replies: 18
Views: 4989

Create another, really simple parallel job with one Integer column. SELECT COUNT(*) FROM DUAL; will do as the query; output can be to a Peek stage. Can you get this to work?
by ray.wurlod
Sat Oct 07, 2006 12:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comparision between unicodedata and normaldata
Replies: 6
Views: 2007

You can use ustring_from_string() or string_from_ustring() in an upstream Modify stage to get the data types to match.
by ray.wurlod
Sat Oct 07, 2006 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: populate output field depending on differnt value from input
Replies: 2
Views: 1055

Something like the derivations that kumar_s has given are as simple as you will ever get it; they map your requirements exactly. The actual derivations are syntactically incorrect, since there is no corresponding Else for the final Then (and there must be). You DO have to do the condition testing (I...
by ray.wurlod
Sat Oct 07, 2006 12:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage is having any peoplesoft EPM plugin
Replies: 8
Views: 4721

No, what I mean is that, if you buy the PeopleSoft PACK, you get the table definitions already imported. You also get some server jobs already written to extract data from PeopleSoft ERM. Since server jobs are part of Enterprise Edition, there is no technical reason not to go this route, rather than...
by ray.wurlod
Sat Oct 07, 2006 12:08 am
Forum: General
Topic: Timeout importing UV account table list?
Replies: 7
Views: 5676

See this post (your other post) where I addressed the possibilities.
by ray.wurlod
Sat Oct 07, 2006 12:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Does Universe Need SQL (layer) Installed to be accessed?
Replies: 6
Views: 2780

It's probable, particularly if it's a development account, that the VOC is full of crap, that the file dictionaries are also full of crap, that the account has not been set up for ODBC access (using HS.ADMIN menu in the HS.ADMIN account) and is not an SQL schema. All of these will combine in a consp...
by ray.wurlod
Fri Oct 06, 2006 3:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DBF Files
Replies: 10
Views: 2698

Yeah, and you can't see this table with any of them! Hence my question. You might also check the O/S permissions on the DBF file itself.