Search found 53125 matches

by ray.wurlod
Tue Oct 11, 2011 2:11 am
Forum: General
Topic: Next id???
Replies: 2
Views: 1009

Not really sure. Where does it occur? I'm guessing that it's the next number to be used when adding objects to the job design.
by ray.wurlod
Tue Oct 11, 2011 2:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file in Lookup
Replies: 2
Views: 1207

Does it matter? It's actually done on the link itself, and the link is visible from either stage.
by ray.wurlod
Tue Oct 11, 2011 2:08 am
Forum: General
Topic: Stage Identifiers Generation
Replies: 1
Views: 683

The numeric portion is the order in which they're added to the job design. The non-numeric portion indicates the stage type. For example SequentialFile_0 indicates that the Sequential File stage thus named was the first object added to the job design.
by ray.wurlod
Mon Oct 10, 2011 7:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer to decimal and then to integer
Replies: 5
Views: 5706

INTEGER(4) in DB2 means four bytes, or 32 bits, or int32. It's not the number of digits. DataStage always adds nonsignificant leading and trailing zeroes to decimal data to prove that precision and scale are being honoured. You don't get a choice on this. To remove them you can convert to string dat...
by ray.wurlod
Mon Oct 10, 2011 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to assgin '000' value to Decimal column
Replies: 13
Views: 5616

0 is enough.

0.0 is better if you want to be pedantic about the structure of a decimal data type.

But it makes no difference to DataStage.
by ray.wurlod
Mon Oct 10, 2011 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Integer to decimal and then to integer
Replies: 5
Views: 5706

Precision will be ignored for Integer, SmallInt and TinyInt data types. Integer (int32) can be up to 2**31-1 so can have at most ten digits plus a sign. SmallInt (int16) can be up to 2**15-1 so can have at most five digits plus a sign. TinyInt (int8) can be up to 2**7-1, or 127, so can have at most ...
by ray.wurlod
Mon Oct 10, 2011 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server spatial to Oracle spatial
Replies: 5
Views: 5279

That looks suspiciously like the limit on VARCHAR2. Have you tried LONG VARCHAR2 as the data type?
by ray.wurlod
Mon Oct 10, 2011 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to assgin '000' value to Decimal column
Replies: 13
Views: 5616

Read the manual (not sure if it is Parallel Job Developer's Guide or Parallel Job Advanced Developer's Guide) about Decimal data types. All zeroes is not permitted by default but can be enabled. Under what circumstances do you wish to use the default value? Is it only if the input is null (consider ...
by ray.wurlod
Mon Oct 10, 2011 2:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to know the performance improvement on ODBC stage
Replies: 4
Views: 1259

It will work, but under the covers the system has to position to the end of the physical structure in which data rows are stored. This will take some time, but 55 minutes does seem a lot.
by ray.wurlod
Mon Oct 10, 2011 2:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Efficient DS Job design to avoid errors
Replies: 9
Views: 3751

Nice to have that vote of confidence, but we're far from being the only helpful posters on this site. Getting this kind of error occasionally suggests that you're working your server close to its limits, and very occasionally exceeding them. It's simple supply and demand: you need to increase the su...
by ray.wurlod
Mon Oct 10, 2011 2:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Increasing timeout consequences ? No one to answer ?
Replies: 2
Views: 2070

Which timeout are you setting, and how are you setting it?
by ray.wurlod
Mon Oct 10, 2011 4:25 am
Forum: General
Topic: Unix, Windows and Datastage
Replies: 3
Views: 1162

That's a huge oversimplification but it will do for now.
by ray.wurlod
Mon Oct 10, 2011 4:23 am
Forum: General
Topic: DB trace shows a select from non-exist MetaStage_Loc_Info
Replies: 4
Views: 2769

Not only is this findable on DSXchange by searching, it's also in the manuals and the IBM Information Center.
by ray.wurlod
Mon Oct 10, 2011 4:22 am
Forum: General
Topic: view subroutine from linux
Replies: 6
Views: 1600

Before/after subroutines are written in DataStage BASIC programming language and stored in the DS_ROUTINES table. They are not readily viewed using operating system utilities.
by ray.wurlod
Mon Oct 10, 2011 4:21 am
Forum: General
Topic: Cannot connect to server
Replies: 9
Views: 5750

What do you mean by "activate"? Was it blocked in a firewall? There are lots of other ports that may need to be activated too, if this was the problem.