Search found 53125 matches

by ray.wurlod
Thu Sep 20, 2007 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: While vewing the data Error!
Replies: 1
Views: 777

Search the forum. This has been answered a gazillion times before.

Basically DataStage needs SELECT privilege on certain system tables to determine whether the table is partitioned, and if so how. TOAD doesn't care - it operates sequentially.
by ray.wurlod
Thu Sep 20, 2007 4:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: type conversion task
Replies: 2
Views: 864

Char to Int would never be implicit! How would you handle "FRED" implicitly? An explicit conversion is required.
by ray.wurlod
Thu Sep 20, 2007 4:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning: "decimal[10,2]" to result type "int3
Replies: 1
Views: 1117

DataStage is merely alerting you to the fact that the input value may be larger than is legal for the output column. Design so that this is not the case, or provide explicit data type conversion, to eliminate these alert messages.
by ray.wurlod
Thu Sep 20, 2007 4:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error in transformer stage:decimal value out of integer rang
Replies: 2
Views: 1712

The largest possible (signed) integer is 2147483647. Any decimal value coming from Oracle that is bigger than this will cause the error to be generated. You may need to use a BigInt data type.
by ray.wurlod
Thu Sep 20, 2007 4:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any way to put parameter?
Replies: 8
Views: 2512

The developer must manually Add Environment Variable to the job parameters grid for each required parameter. Create a job containing your "standard" set of parameters, and use it as a prototype, and/or create a Template from it. That way at least the manual effort is required only once. If someone d...
by ray.wurlod
Thu Sep 20, 2007 4:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Not able to delete job
Replies: 4
Views: 1017

A dsx file is an export file, not a job. They can be deleted at the operating system level. You might like to inspect the contents first, to be sure that you're not deleting anything significant. If you're naming jobs with a ".dsx" suffix you deserve all the evil you get. Try using the command DS.CH...
by ray.wurlod
Thu Sep 20, 2007 4:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Best architecture for 3 staging areas and 1 extraction param
Replies: 2
Views: 619

Us a Job Sequence, perhaps with a Wait For File activity to trigger the remainder of the run.
by ray.wurlod
Thu Sep 20, 2007 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sequential File
Replies: 22
Views: 3256

Use a Filter to pre-process the file to remove the \x00 characters, perhaps using a tr command. The Sequential File stage reads stdout of the filter command.
by ray.wurlod
Thu Sep 20, 2007 4:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparison of ODBC stage and stages with native support
Replies: 1
Views: 738

ODBC when you don't have a native stage type, for example extracting from Red Brick Warehouse or dBase. Native stage type when you do.
by ray.wurlod
Thu Sep 20, 2007 4:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file stage-Active or passive stage?
Replies: 7
Views: 2612

Active stages have the potential to change the data flowing through them. While simplistic, that's not a bad way to differentiate. You could always inspect the stage type properties in the Stage Types branch of the Repository - the General tab indicates whether the stage type is active or passive or...
by ray.wurlod
Thu Sep 20, 2007 4:17 pm
Forum: General
Topic: Populate values into job parameters at run time from sql cod
Replies: 4
Views: 1113

Yes, if you're prepared to use a server job to read the row from Oracle, you can load it into the server job's user status area and access that as a Job activity variable in the job sequence. More elegant? It's a matter of taste.
by ray.wurlod
Thu Sep 20, 2007 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disabling memory sharing in Lookups
Replies: 6
Views: 2058

Verify which stage is generating the error, and which input is Input Port #0.
by ray.wurlod
Thu Sep 20, 2007 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to stop universe service manually
Replies: 5
Views: 2826

There are three DataStage services that you may (will) need to stop.
    DataStage Resource service ("universe" service)

    DataStage Telnet service

    DSRPC service
by ray.wurlod
Thu Sep 20, 2007 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading EBCDIC file and Flattening it.
Replies: 5
Views: 1781

Binary or EBCDIC? If the latter, you have an Import As EBCDIC property that you can set.
by ray.wurlod
Thu Sep 20, 2007 12:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: pivot stage
Replies: 2
Views: 1360

The examples shown in the manual (Pivot.pdf) are quite clear.